mbed(SerialHalfDuplex入り)

Fork of mbed by mbed official

Committer:
yusuke_kyo
Date:
Wed Apr 08 08:04:18 2015 +0000
Revision:
98:01a414ca7d6d
Parent:
93:e188a91d3eaa
remove SerialHalfDuplex.h

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 93:e188a91d3eaa 1 /**
Kojto 93:e188a91d3eaa 2 ******************************************************************************
Kojto 93:e188a91d3eaa 3 * @file stm32f3xx_hal_tim.h
Kojto 93:e188a91d3eaa 4 * @author MCD Application Team
Kojto 93:e188a91d3eaa 5 * @version V1.1.0
Kojto 93:e188a91d3eaa 6 * @date 12-Sept-2014
Kojto 93:e188a91d3eaa 7 * @brief Header file of TIM HAL module.
Kojto 93:e188a91d3eaa 8 ******************************************************************************
Kojto 93:e188a91d3eaa 9 * @attention
Kojto 93:e188a91d3eaa 10 *
Kojto 93:e188a91d3eaa 11 * <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
Kojto 93:e188a91d3eaa 12 *
Kojto 93:e188a91d3eaa 13 * Redistribution and use in source and binary forms, with or without modification,
Kojto 93:e188a91d3eaa 14 * are permitted provided that the following conditions are met:
Kojto 93:e188a91d3eaa 15 * 1. Redistributions of source code must retain the above copyright notice,
Kojto 93:e188a91d3eaa 16 * this list of conditions and the following disclaimer.
Kojto 93:e188a91d3eaa 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
Kojto 93:e188a91d3eaa 18 * this list of conditions and the following disclaimer in the documentation
Kojto 93:e188a91d3eaa 19 * and/or other materials provided with the distribution.
Kojto 93:e188a91d3eaa 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
Kojto 93:e188a91d3eaa 21 * may be used to endorse or promote products derived from this software
Kojto 93:e188a91d3eaa 22 * without specific prior written permission.
Kojto 93:e188a91d3eaa 23 *
Kojto 93:e188a91d3eaa 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Kojto 93:e188a91d3eaa 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Kojto 93:e188a91d3eaa 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Kojto 93:e188a91d3eaa 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
Kojto 93:e188a91d3eaa 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Kojto 93:e188a91d3eaa 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Kojto 93:e188a91d3eaa 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Kojto 93:e188a91d3eaa 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Kojto 93:e188a91d3eaa 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Kojto 93:e188a91d3eaa 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Kojto 93:e188a91d3eaa 34 *
Kojto 93:e188a91d3eaa 35 ******************************************************************************
Kojto 93:e188a91d3eaa 36 */
Kojto 93:e188a91d3eaa 37
Kojto 93:e188a91d3eaa 38 /* Define to prevent recursive inclusion -------------------------------------*/
Kojto 93:e188a91d3eaa 39 #ifndef __STM32F3xx_HAL_TIM_H
Kojto 93:e188a91d3eaa 40 #define __STM32F3xx_HAL_TIM_H
Kojto 93:e188a91d3eaa 41
Kojto 93:e188a91d3eaa 42 #ifdef __cplusplus
Kojto 93:e188a91d3eaa 43 extern "C" {
Kojto 93:e188a91d3eaa 44 #endif
Kojto 93:e188a91d3eaa 45
Kojto 93:e188a91d3eaa 46 /* Includes ------------------------------------------------------------------*/
Kojto 93:e188a91d3eaa 47 #include "stm32f3xx_hal_def.h"
Kojto 93:e188a91d3eaa 48
Kojto 93:e188a91d3eaa 49 /** @addtogroup STM32F3xx_HAL_Driver
Kojto 93:e188a91d3eaa 50 * @{
Kojto 93:e188a91d3eaa 51 */
Kojto 93:e188a91d3eaa 52
Kojto 93:e188a91d3eaa 53 /** @addtogroup TIM
Kojto 93:e188a91d3eaa 54 * @{
Kojto 93:e188a91d3eaa 55 */
Kojto 93:e188a91d3eaa 56
Kojto 93:e188a91d3eaa 57 /* Exported types ------------------------------------------------------------*/
Kojto 93:e188a91d3eaa 58 /** @defgroup TIM_Exported_Types TIM Exported Types
Kojto 93:e188a91d3eaa 59 * @{
Kojto 93:e188a91d3eaa 60 */
Kojto 93:e188a91d3eaa 61
Kojto 93:e188a91d3eaa 62 /**
Kojto 93:e188a91d3eaa 63 * @brief TIM Time base Configuration Structure definition
Kojto 93:e188a91d3eaa 64 */
Kojto 93:e188a91d3eaa 65 typedef struct
Kojto 93:e188a91d3eaa 66 {
Kojto 93:e188a91d3eaa 67 uint32_t Prescaler; /*!< Specifies the prescaler value used to divide the TIM clock.
Kojto 93:e188a91d3eaa 68 This parameter can be a number between Min_Data = 0x0000 and Max_Data = 0xFFFF */
Kojto 93:e188a91d3eaa 69
Kojto 93:e188a91d3eaa 70 uint32_t CounterMode; /*!< Specifies the counter mode.
Kojto 93:e188a91d3eaa 71 This parameter can be a value of @ref TIM_Counter_Mode */
Kojto 93:e188a91d3eaa 72
Kojto 93:e188a91d3eaa 73 uint32_t Period; /*!< Specifies the period value to be loaded into the active
Kojto 93:e188a91d3eaa 74 Auto-Reload Register at the next update event.
Kojto 93:e188a91d3eaa 75 This parameter can be a number between Min_Data = 0x0000 and Max_Data = 0xFFFF. */
Kojto 93:e188a91d3eaa 76
Kojto 93:e188a91d3eaa 77 uint32_t ClockDivision; /*!< Specifies the clock division.
Kojto 93:e188a91d3eaa 78 This parameter can be a value of @ref TIM_ClockDivision */
Kojto 93:e188a91d3eaa 79
Kojto 93:e188a91d3eaa 80 uint32_t RepetitionCounter; /*!< Specifies the repetition counter value. Each time the RCR downcounter
Kojto 93:e188a91d3eaa 81 reaches zero, an update event is generated and counting restarts
Kojto 93:e188a91d3eaa 82 from the RCR value (N).
Kojto 93:e188a91d3eaa 83 This means in PWM mode that (N+1) corresponds to:
Kojto 93:e188a91d3eaa 84 - the number of PWM periods in edge-aligned mode
Kojto 93:e188a91d3eaa 85 - the number of half PWM period in center-aligned mode
Kojto 93:e188a91d3eaa 86 This parameter must be a number between Min_Data = 0x00 and Max_Data = 0xFF.
Kojto 93:e188a91d3eaa 87 @note This parameter is valid only for TIM1 and TIM8. */
Kojto 93:e188a91d3eaa 88 } TIM_Base_InitTypeDef;
Kojto 93:e188a91d3eaa 89
Kojto 93:e188a91d3eaa 90 /**
Kojto 93:e188a91d3eaa 91 * @brief TIM Output Compare Configuration Structure definition
Kojto 93:e188a91d3eaa 92 */
Kojto 93:e188a91d3eaa 93 typedef struct
Kojto 93:e188a91d3eaa 94 {
Kojto 93:e188a91d3eaa 95 uint32_t OCMode; /*!< Specifies the TIM mode.
Kojto 93:e188a91d3eaa 96 This parameter can be a value of @ref TIMEx_Output_Compare_and_PWM_modes */
Kojto 93:e188a91d3eaa 97
Kojto 93:e188a91d3eaa 98 uint32_t Pulse; /*!< Specifies the pulse value to be loaded into the Capture Compare Register.
Kojto 93:e188a91d3eaa 99 This parameter can be a number between Min_Data = 0x0000 and Max_Data = 0xFFFF */
Kojto 93:e188a91d3eaa 100
Kojto 93:e188a91d3eaa 101 uint32_t OCPolarity; /*!< Specifies the output polarity.
Kojto 93:e188a91d3eaa 102 This parameter can be a value of @ref TIM_Output_Compare_Polarity */
Kojto 93:e188a91d3eaa 103
Kojto 93:e188a91d3eaa 104 uint32_t OCNPolarity; /*!< Specifies the complementary output polarity.
Kojto 93:e188a91d3eaa 105 This parameter can be a value of @ref TIM_Output_Compare_N_Polarity
Kojto 93:e188a91d3eaa 106 @note This parameter is valid only for TIM1 and TIM8. */
Kojto 93:e188a91d3eaa 107
Kojto 93:e188a91d3eaa 108 uint32_t OCFastMode; /*!< Specifies the Fast mode state.
Kojto 93:e188a91d3eaa 109 This parameter can be a value of @ref TIM_Output_Fast_State
Kojto 93:e188a91d3eaa 110 @note This parameter is valid only in PWM1 and PWM2 mode. */
Kojto 93:e188a91d3eaa 111
Kojto 93:e188a91d3eaa 112
Kojto 93:e188a91d3eaa 113 uint32_t OCIdleState; /*!< Specifies the TIM Output Compare pin state during Idle state.
Kojto 93:e188a91d3eaa 114 This parameter can be a value of @ref TIM_Output_Compare_Idle_State
Kojto 93:e188a91d3eaa 115 @note This parameter is valid only for TIM1 and TIM8. */
Kojto 93:e188a91d3eaa 116
Kojto 93:e188a91d3eaa 117 uint32_t OCNIdleState; /*!< Specifies the TIM Output Compare pin state during Idle state.
Kojto 93:e188a91d3eaa 118 This parameter can be a value of @ref TIM_Output_Compare_N_Idle_State
Kojto 93:e188a91d3eaa 119 @note This parameter is valid only for TIM1 and TIM8. */
Kojto 93:e188a91d3eaa 120 } TIM_OC_InitTypeDef;
Kojto 93:e188a91d3eaa 121
Kojto 93:e188a91d3eaa 122 /**
Kojto 93:e188a91d3eaa 123 * @brief TIM One Pulse Mode Configuration Structure definition
Kojto 93:e188a91d3eaa 124 */
Kojto 93:e188a91d3eaa 125 typedef struct
Kojto 93:e188a91d3eaa 126 {
Kojto 93:e188a91d3eaa 127 uint32_t OCMode; /*!< Specifies the TIM mode.
Kojto 93:e188a91d3eaa 128 This parameter can be a value of @ref TIMEx_Output_Compare_and_PWM_modes */
Kojto 93:e188a91d3eaa 129
Kojto 93:e188a91d3eaa 130 uint32_t Pulse; /*!< Specifies the pulse value to be loaded into the Capture Compare Register.
Kojto 93:e188a91d3eaa 131 This parameter can be a number between Min_Data = 0x0000 and Max_Data = 0xFFFF */
Kojto 93:e188a91d3eaa 132
Kojto 93:e188a91d3eaa 133 uint32_t OCPolarity; /*!< Specifies the output polarity.
Kojto 93:e188a91d3eaa 134 This parameter can be a value of @ref TIM_Output_Compare_Polarity */
Kojto 93:e188a91d3eaa 135
Kojto 93:e188a91d3eaa 136 uint32_t OCNPolarity; /*!< Specifies the complementary output polarity.
Kojto 93:e188a91d3eaa 137 This parameter can be a value of @ref TIM_Output_Compare_N_Polarity
Kojto 93:e188a91d3eaa 138 @note This parameter is valid only for TIM1 and TIM8. */
Kojto 93:e188a91d3eaa 139
Kojto 93:e188a91d3eaa 140 uint32_t OCIdleState; /*!< Specifies the TIM Output Compare pin state during Idle state.
Kojto 93:e188a91d3eaa 141 This parameter can be a value of @ref TIM_Output_Compare_Idle_State
Kojto 93:e188a91d3eaa 142 @note This parameter is valid only for TIM1 and TIM8. */
Kojto 93:e188a91d3eaa 143
Kojto 93:e188a91d3eaa 144 uint32_t OCNIdleState; /*!< Specifies the TIM Output Compare pin state during Idle state.
Kojto 93:e188a91d3eaa 145 This parameter can be a value of @ref TIM_Output_Compare_N_Idle_State
Kojto 93:e188a91d3eaa 146 @note This parameter is valid only for TIM1 and TIM8. */
Kojto 93:e188a91d3eaa 147
Kojto 93:e188a91d3eaa 148 uint32_t ICPolarity; /*!< Specifies the active edge of the input signal.
Kojto 93:e188a91d3eaa 149 This parameter can be a value of @ref TIM_Input_Capture_Polarity */
Kojto 93:e188a91d3eaa 150
Kojto 93:e188a91d3eaa 151 uint32_t ICSelection; /*!< Specifies the input.
Kojto 93:e188a91d3eaa 152 This parameter can be a value of @ref TIM_Input_Capture_Selection */
Kojto 93:e188a91d3eaa 153
Kojto 93:e188a91d3eaa 154 uint32_t ICFilter; /*!< Specifies the input capture filter.
Kojto 93:e188a91d3eaa 155 This parameter can be a number between Min_Data = 0x0 and Max_Data = 0xF */
Kojto 93:e188a91d3eaa 156 } TIM_OnePulse_InitTypeDef;
Kojto 93:e188a91d3eaa 157
Kojto 93:e188a91d3eaa 158
Kojto 93:e188a91d3eaa 159 /**
Kojto 93:e188a91d3eaa 160 * @brief TIM Input Capture Configuration Structure definition
Kojto 93:e188a91d3eaa 161 */
Kojto 93:e188a91d3eaa 162 typedef struct
Kojto 93:e188a91d3eaa 163 {
Kojto 93:e188a91d3eaa 164 uint32_t ICPolarity; /*!< Specifies the active edge of the input signal.
Kojto 93:e188a91d3eaa 165 This parameter can be a value of @ref TIM_Input_Capture_Polarity */
Kojto 93:e188a91d3eaa 166
Kojto 93:e188a91d3eaa 167 uint32_t ICSelection; /*!< Specifies the input.
Kojto 93:e188a91d3eaa 168 This parameter can be a value of @ref TIM_Input_Capture_Selection */
Kojto 93:e188a91d3eaa 169
Kojto 93:e188a91d3eaa 170 uint32_t ICPrescaler; /*!< Specifies the Input Capture Prescaler.
Kojto 93:e188a91d3eaa 171 This parameter can be a value of @ref TIM_Input_Capture_Prescaler */
Kojto 93:e188a91d3eaa 172
Kojto 93:e188a91d3eaa 173 uint32_t ICFilter; /*!< Specifies the input capture filter.
Kojto 93:e188a91d3eaa 174 This parameter can be a number between Min_Data = 0x0 and Max_Data = 0xF */
Kojto 93:e188a91d3eaa 175 } TIM_IC_InitTypeDef;
Kojto 93:e188a91d3eaa 176
Kojto 93:e188a91d3eaa 177 /**
Kojto 93:e188a91d3eaa 178 * @brief TIM Encoder Configuration Structure definition
Kojto 93:e188a91d3eaa 179 */
Kojto 93:e188a91d3eaa 180 typedef struct
Kojto 93:e188a91d3eaa 181 {
Kojto 93:e188a91d3eaa 182 uint32_t EncoderMode; /*!< Specifies the active edge of the input signal.
Kojto 93:e188a91d3eaa 183 This parameter can be a value of @ref TIM_Encoder_Mode */
Kojto 93:e188a91d3eaa 184
Kojto 93:e188a91d3eaa 185 uint32_t IC1Polarity; /*!< Specifies the active edge of the input signal.
Kojto 93:e188a91d3eaa 186 This parameter can be a value of @ref TIM_Input_Capture_Polarity */
Kojto 93:e188a91d3eaa 187
Kojto 93:e188a91d3eaa 188 uint32_t IC1Selection; /*!< Specifies the input.
Kojto 93:e188a91d3eaa 189 This parameter can be a value of @ref TIM_Input_Capture_Selection */
Kojto 93:e188a91d3eaa 190
Kojto 93:e188a91d3eaa 191 uint32_t IC1Prescaler; /*!< Specifies the Input Capture Prescaler.
Kojto 93:e188a91d3eaa 192 This parameter can be a value of @ref TIM_Input_Capture_Prescaler */
Kojto 93:e188a91d3eaa 193
Kojto 93:e188a91d3eaa 194 uint32_t IC1Filter; /*!< Specifies the input capture filter.
Kojto 93:e188a91d3eaa 195 This parameter can be a number between Min_Data = 0x0 and Max_Data = 0xF */
Kojto 93:e188a91d3eaa 196
Kojto 93:e188a91d3eaa 197 uint32_t IC2Polarity; /*!< Specifies the active edge of the input signal.
Kojto 93:e188a91d3eaa 198 This parameter can be a value of @ref TIM_Input_Capture_Polarity */
Kojto 93:e188a91d3eaa 199
Kojto 93:e188a91d3eaa 200 uint32_t IC2Selection; /*!< Specifies the input.
Kojto 93:e188a91d3eaa 201 This parameter can be a value of @ref TIM_Input_Capture_Selection */
Kojto 93:e188a91d3eaa 202
Kojto 93:e188a91d3eaa 203 uint32_t IC2Prescaler; /*!< Specifies the Input Capture Prescaler.
Kojto 93:e188a91d3eaa 204 This parameter can be a value of @ref TIM_Input_Capture_Prescaler */
Kojto 93:e188a91d3eaa 205
Kojto 93:e188a91d3eaa 206 uint32_t IC2Filter; /*!< Specifies the input capture filter.
Kojto 93:e188a91d3eaa 207 This parameter can be a number between Min_Data = 0x0 and Max_Data = 0xF */
Kojto 93:e188a91d3eaa 208 } TIM_Encoder_InitTypeDef;
Kojto 93:e188a91d3eaa 209
Kojto 93:e188a91d3eaa 210
Kojto 93:e188a91d3eaa 211 /**
Kojto 93:e188a91d3eaa 212 * @brief Clock Configuration Handle Structure definition
Kojto 93:e188a91d3eaa 213 */
Kojto 93:e188a91d3eaa 214 typedef struct
Kojto 93:e188a91d3eaa 215 {
Kojto 93:e188a91d3eaa 216 uint32_t ClockSource; /*!< TIM clock sources
Kojto 93:e188a91d3eaa 217 This parameter can be a value of @ref TIM_Clock_Source */
Kojto 93:e188a91d3eaa 218 uint32_t ClockPolarity; /*!< TIM clock polarity
Kojto 93:e188a91d3eaa 219 This parameter can be a value of @ref TIM_Clock_Polarity */
Kojto 93:e188a91d3eaa 220 uint32_t ClockPrescaler; /*!< TIM clock prescaler
Kojto 93:e188a91d3eaa 221 This parameter can be a value of @ref TIM_Clock_Prescaler */
Kojto 93:e188a91d3eaa 222 uint32_t ClockFilter; /*!< TIM clock filter
Kojto 93:e188a91d3eaa 223 This parameter can be a value of @ref TIM_Clock_Filter */
Kojto 93:e188a91d3eaa 224 }TIM_ClockConfigTypeDef;
Kojto 93:e188a91d3eaa 225
Kojto 93:e188a91d3eaa 226 /**
Kojto 93:e188a91d3eaa 227 * @brief Clear Input Configuration Handle Structure definition
Kojto 93:e188a91d3eaa 228 */
Kojto 93:e188a91d3eaa 229 typedef struct
Kojto 93:e188a91d3eaa 230 {
Kojto 93:e188a91d3eaa 231 uint32_t ClearInputState; /*!< TIM clear Input state
Kojto 93:e188a91d3eaa 232 This parameter can be ENABLE or DISABLE */
Kojto 93:e188a91d3eaa 233 uint32_t ClearInputSource; /*!< TIM clear Input sources
Kojto 93:e188a91d3eaa 234 This parameter can be a value of @ref TIMEx_ClearInput_Source */
Kojto 93:e188a91d3eaa 235 uint32_t ClearInputPolarity; /*!< TIM Clear Input polarity
Kojto 93:e188a91d3eaa 236 This parameter can be a value of @ref TIM_ClearInput_Polarity */
Kojto 93:e188a91d3eaa 237 uint32_t ClearInputPrescaler; /*!< TIM Clear Input prescaler
Kojto 93:e188a91d3eaa 238 This parameter can be a value of @ref TIM_ClearInput_Prescaler */
Kojto 93:e188a91d3eaa 239 uint32_t ClearInputFilter; /*!< TIM Clear Input filter
Kojto 93:e188a91d3eaa 240 This parameter can be a value of @ref TIM_ClearInput_Filter */
Kojto 93:e188a91d3eaa 241 }TIM_ClearInputConfigTypeDef;
Kojto 93:e188a91d3eaa 242
Kojto 93:e188a91d3eaa 243 /**
Kojto 93:e188a91d3eaa 244 * @brief TIM Slave configuration Structure definition
Kojto 93:e188a91d3eaa 245 */
Kojto 93:e188a91d3eaa 246 typedef struct {
Kojto 93:e188a91d3eaa 247 uint32_t SlaveMode; /*!< Slave mode selection
Kojto 93:e188a91d3eaa 248 This parameter can be a value of @ref TIMEx_Slave_Mode */
Kojto 93:e188a91d3eaa 249 uint32_t InputTrigger; /*!< Input Trigger source
Kojto 93:e188a91d3eaa 250 This parameter can be a value of @ref TIM_Trigger_Selection */
Kojto 93:e188a91d3eaa 251 uint32_t TriggerPolarity; /*!< Input Trigger polarity
Kojto 93:e188a91d3eaa 252 This parameter can be a value of @ref TIM_Trigger_Polarity */
Kojto 93:e188a91d3eaa 253 uint32_t TriggerPrescaler; /*!< Input trigger prescaler
Kojto 93:e188a91d3eaa 254 This parameter can be a value of @ref TIM_Trigger_Prescaler */
Kojto 93:e188a91d3eaa 255 uint32_t TriggerFilter; /*!< Input trigger filter
Kojto 93:e188a91d3eaa 256 This parameter can be a value of @ref TIM_Trigger_Filter */
Kojto 93:e188a91d3eaa 257
Kojto 93:e188a91d3eaa 258 }TIM_SlaveConfigTypeDef;
Kojto 93:e188a91d3eaa 259
Kojto 93:e188a91d3eaa 260 /**
Kojto 93:e188a91d3eaa 261 * @brief HAL State structures definition
Kojto 93:e188a91d3eaa 262 */
Kojto 93:e188a91d3eaa 263 typedef enum
Kojto 93:e188a91d3eaa 264 {
Kojto 93:e188a91d3eaa 265 HAL_TIM_STATE_RESET = 0x00, /*!< Peripheral not yet initialized or disabled */
Kojto 93:e188a91d3eaa 266 HAL_TIM_STATE_READY = 0x01, /*!< Peripheral Initialized and ready for use */
Kojto 93:e188a91d3eaa 267 HAL_TIM_STATE_BUSY = 0x02, /*!< An internal process is ongoing */
Kojto 93:e188a91d3eaa 268 HAL_TIM_STATE_TIMEOUT = 0x03, /*!< Timeout state */
Kojto 93:e188a91d3eaa 269 HAL_TIM_STATE_ERROR = 0x04 /*!< Reception process is ongoing */
Kojto 93:e188a91d3eaa 270 }HAL_TIM_StateTypeDef;
Kojto 93:e188a91d3eaa 271
Kojto 93:e188a91d3eaa 272 /**
Kojto 93:e188a91d3eaa 273 * @brief HAL Active channel structures definition
Kojto 93:e188a91d3eaa 274 */
Kojto 93:e188a91d3eaa 275 typedef enum
Kojto 93:e188a91d3eaa 276 {
Kojto 93:e188a91d3eaa 277 HAL_TIM_ACTIVE_CHANNEL_1 = 0x01, /*!< The active channel is 1 */
Kojto 93:e188a91d3eaa 278 HAL_TIM_ACTIVE_CHANNEL_2 = 0x02, /*!< The active channel is 2 */
Kojto 93:e188a91d3eaa 279 HAL_TIM_ACTIVE_CHANNEL_3 = 0x04, /*!< The active channel is 3 */
Kojto 93:e188a91d3eaa 280 HAL_TIM_ACTIVE_CHANNEL_4 = 0x08, /*!< The active channel is 4 */
Kojto 93:e188a91d3eaa 281 HAL_TIM_ACTIVE_CHANNEL_CLEARED = 0x00 /*!< All active channels cleared */
Kojto 93:e188a91d3eaa 282 }HAL_TIM_ActiveChannel;
Kojto 93:e188a91d3eaa 283
Kojto 93:e188a91d3eaa 284 /**
Kojto 93:e188a91d3eaa 285 * @brief TIM Time Base Handle Structure definition
Kojto 93:e188a91d3eaa 286 */
Kojto 93:e188a91d3eaa 287 typedef struct
Kojto 93:e188a91d3eaa 288 {
Kojto 93:e188a91d3eaa 289 TIM_TypeDef *Instance; /*!< Register base address */
Kojto 93:e188a91d3eaa 290 TIM_Base_InitTypeDef Init; /*!< TIM Time Base required parameters */
Kojto 93:e188a91d3eaa 291 HAL_TIM_ActiveChannel Channel; /*!< Active channel */
Kojto 93:e188a91d3eaa 292 DMA_HandleTypeDef *hdma[7]; /*!< DMA Handlers array
Kojto 93:e188a91d3eaa 293 This array is accessed by a @ref DMA_Handle_index */
Kojto 93:e188a91d3eaa 294 HAL_LockTypeDef Lock; /*!< Locking object */
Kojto 93:e188a91d3eaa 295 __IO HAL_TIM_StateTypeDef State; /*!< TIM operation state */
Kojto 93:e188a91d3eaa 296 }TIM_HandleTypeDef;
Kojto 93:e188a91d3eaa 297
Kojto 93:e188a91d3eaa 298 /**
Kojto 93:e188a91d3eaa 299 * @}
Kojto 93:e188a91d3eaa 300 */
Kojto 93:e188a91d3eaa 301
Kojto 93:e188a91d3eaa 302 /* Exported constants --------------------------------------------------------*/
Kojto 93:e188a91d3eaa 303 /** @defgroup TIM_Exported_Constants TIM Exported Constants
Kojto 93:e188a91d3eaa 304 * @{
Kojto 93:e188a91d3eaa 305 */
Kojto 93:e188a91d3eaa 306
Kojto 93:e188a91d3eaa 307 /** @defgroup TIM_Input_Channel_Polarity TIM Input Channel polarity
Kojto 93:e188a91d3eaa 308 * @{
Kojto 93:e188a91d3eaa 309 */
Kojto 93:e188a91d3eaa 310 #define TIM_INPUTCHANNELPOLARITY_RISING ((uint32_t)0x00000000) /*!< Polarity for TIx source */
Kojto 93:e188a91d3eaa 311 #define TIM_INPUTCHANNELPOLARITY_FALLING (TIM_CCER_CC1P) /*!< Polarity for TIx source */
Kojto 93:e188a91d3eaa 312 #define TIM_INPUTCHANNELPOLARITY_BOTHEDGE (TIM_CCER_CC1P | TIM_CCER_CC1NP) /*!< Polarity for TIx source */
Kojto 93:e188a91d3eaa 313 /**
Kojto 93:e188a91d3eaa 314 * @}
Kojto 93:e188a91d3eaa 315 */
Kojto 93:e188a91d3eaa 316
Kojto 93:e188a91d3eaa 317 /** @defgroup TIM_ETR_Polarity TIM ETR Polarity
Kojto 93:e188a91d3eaa 318 * @{
Kojto 93:e188a91d3eaa 319 */
Kojto 93:e188a91d3eaa 320 #define TIM_ETRPOLARITY_INVERTED (TIM_SMCR_ETP) /*!< Polarity for ETR source */
Kojto 93:e188a91d3eaa 321 #define TIM_ETRPOLARITY_NONINVERTED ((uint32_t)0x0000) /*!< Polarity for ETR source */
Kojto 93:e188a91d3eaa 322 /**
Kojto 93:e188a91d3eaa 323 * @}
Kojto 93:e188a91d3eaa 324 */
Kojto 93:e188a91d3eaa 325
Kojto 93:e188a91d3eaa 326 /** @defgroup TIM_ETR_Prescaler TIM ETR Prescaler
Kojto 93:e188a91d3eaa 327 * @{
Kojto 93:e188a91d3eaa 328 */
Kojto 93:e188a91d3eaa 329 #define TIM_ETRPRESCALER_DIV1 ((uint32_t)0x0000) /*!< No prescaler is used */
Kojto 93:e188a91d3eaa 330 #define TIM_ETRPRESCALER_DIV2 (TIM_SMCR_ETPS_0) /*!< ETR input source is divided by 2 */
Kojto 93:e188a91d3eaa 331 #define TIM_ETRPRESCALER_DIV4 (TIM_SMCR_ETPS_1) /*!< ETR input source is divided by 4 */
Kojto 93:e188a91d3eaa 332 #define TIM_ETRPRESCALER_DIV8 (TIM_SMCR_ETPS) /*!< ETR input source is divided by 8 */
Kojto 93:e188a91d3eaa 333 /**
Kojto 93:e188a91d3eaa 334 * @}
Kojto 93:e188a91d3eaa 335 */
Kojto 93:e188a91d3eaa 336
Kojto 93:e188a91d3eaa 337 /** @defgroup TIM_Counter_Mode TIM Counter Mode
Kojto 93:e188a91d3eaa 338 * @{
Kojto 93:e188a91d3eaa 339 */
Kojto 93:e188a91d3eaa 340
Kojto 93:e188a91d3eaa 341 #define TIM_COUNTERMODE_UP ((uint32_t)0x0000)
Kojto 93:e188a91d3eaa 342 #define TIM_COUNTERMODE_DOWN TIM_CR1_DIR
Kojto 93:e188a91d3eaa 343 #define TIM_COUNTERMODE_CENTERALIGNED1 TIM_CR1_CMS_0
Kojto 93:e188a91d3eaa 344 #define TIM_COUNTERMODE_CENTERALIGNED2 TIM_CR1_CMS_1
Kojto 93:e188a91d3eaa 345 #define TIM_COUNTERMODE_CENTERALIGNED3 TIM_CR1_CMS
Kojto 93:e188a91d3eaa 346
Kojto 93:e188a91d3eaa 347 #define IS_TIM_COUNTER_MODE(MODE) (((MODE) == TIM_COUNTERMODE_UP) || \
Kojto 93:e188a91d3eaa 348 ((MODE) == TIM_COUNTERMODE_DOWN) || \
Kojto 93:e188a91d3eaa 349 ((MODE) == TIM_COUNTERMODE_CENTERALIGNED1) || \
Kojto 93:e188a91d3eaa 350 ((MODE) == TIM_COUNTERMODE_CENTERALIGNED2) || \
Kojto 93:e188a91d3eaa 351 ((MODE) == TIM_COUNTERMODE_CENTERALIGNED3))
Kojto 93:e188a91d3eaa 352 /**
Kojto 93:e188a91d3eaa 353 * @}
Kojto 93:e188a91d3eaa 354 */
Kojto 93:e188a91d3eaa 355
Kojto 93:e188a91d3eaa 356 /** @defgroup TIM_ClockDivision TIM Clock Division
Kojto 93:e188a91d3eaa 357 * @{
Kojto 93:e188a91d3eaa 358 */
Kojto 93:e188a91d3eaa 359
Kojto 93:e188a91d3eaa 360 #define TIM_CLOCKDIVISION_DIV1 ((uint32_t)0x0000)
Kojto 93:e188a91d3eaa 361 #define TIM_CLOCKDIVISION_DIV2 (TIM_CR1_CKD_0)
Kojto 93:e188a91d3eaa 362 #define TIM_CLOCKDIVISION_DIV4 (TIM_CR1_CKD_1)
Kojto 93:e188a91d3eaa 363
Kojto 93:e188a91d3eaa 364 #define IS_TIM_CLOCKDIVISION_DIV(DIV) (((DIV) == TIM_CLOCKDIVISION_DIV1) || \
Kojto 93:e188a91d3eaa 365 ((DIV) == TIM_CLOCKDIVISION_DIV2) || \
Kojto 93:e188a91d3eaa 366 ((DIV) == TIM_CLOCKDIVISION_DIV4))
Kojto 93:e188a91d3eaa 367 /**
Kojto 93:e188a91d3eaa 368 * @}
Kojto 93:e188a91d3eaa 369 */
Kojto 93:e188a91d3eaa 370
Kojto 93:e188a91d3eaa 371 /** @defgroup TIM_Output_Compare_State TIM Output Compare State
Kojto 93:e188a91d3eaa 372 * @{
Kojto 93:e188a91d3eaa 373 */
Kojto 93:e188a91d3eaa 374
Kojto 93:e188a91d3eaa 375 #define TIM_OUTPUTSTATE_DISABLE ((uint32_t)0x0000)
Kojto 93:e188a91d3eaa 376 #define TIM_OUTPUTSTATE_ENABLE (TIM_CCER_CC1E)
Kojto 93:e188a91d3eaa 377
Kojto 93:e188a91d3eaa 378 #define IS_TIM_OUTPUT_STATE(STATE) (((STATE) == TIM_OUTPUTSTATE_DISABLE) || \
Kojto 93:e188a91d3eaa 379 ((STATE) == TIM_OUTPUTSTATE_ENABLE))
Kojto 93:e188a91d3eaa 380 /**
Kojto 93:e188a91d3eaa 381 * @}
Kojto 93:e188a91d3eaa 382 */
Kojto 93:e188a91d3eaa 383 /** @defgroup TIM_Output_Fast_State TIM Output Fast State
Kojto 93:e188a91d3eaa 384 * @{
Kojto 93:e188a91d3eaa 385 */
Kojto 93:e188a91d3eaa 386 #define TIM_OCFAST_DISABLE ((uint32_t)0x0000)
Kojto 93:e188a91d3eaa 387 #define TIM_OCFAST_ENABLE (TIM_CCMR1_OC1FE)
Kojto 93:e188a91d3eaa 388
Kojto 93:e188a91d3eaa 389 #define IS_TIM_FAST_STATE(STATE) (((STATE) == TIM_OCFAST_DISABLE) || \
Kojto 93:e188a91d3eaa 390 ((STATE) == TIM_OCFAST_ENABLE))
Kojto 93:e188a91d3eaa 391 /**
Kojto 93:e188a91d3eaa 392 * @}
Kojto 93:e188a91d3eaa 393 */
Kojto 93:e188a91d3eaa 394 /** @defgroup TIM_Output_Compare_N_State TIM Complementary Output Compare State
Kojto 93:e188a91d3eaa 395 * @{
Kojto 93:e188a91d3eaa 396 */
Kojto 93:e188a91d3eaa 397
Kojto 93:e188a91d3eaa 398 #define TIM_OUTPUTNSTATE_DISABLE ((uint32_t)0x0000)
Kojto 93:e188a91d3eaa 399 #define TIM_OUTPUTNSTATE_ENABLE (TIM_CCER_CC1NE)
Kojto 93:e188a91d3eaa 400
Kojto 93:e188a91d3eaa 401 #define IS_TIM_OUTPUTN_STATE(STATE) (((STATE) == TIM_OUTPUTNSTATE_DISABLE) || \
Kojto 93:e188a91d3eaa 402 ((STATE) == TIM_OUTPUTNSTATE_ENABLE))
Kojto 93:e188a91d3eaa 403 /**
Kojto 93:e188a91d3eaa 404 * @}
Kojto 93:e188a91d3eaa 405 */
Kojto 93:e188a91d3eaa 406
Kojto 93:e188a91d3eaa 407 /** @defgroup TIM_Output_Compare_Polarity TIM Output Compare Polarity
Kojto 93:e188a91d3eaa 408 * @{
Kojto 93:e188a91d3eaa 409 */
Kojto 93:e188a91d3eaa 410
Kojto 93:e188a91d3eaa 411 #define TIM_OCPOLARITY_HIGH ((uint32_t)0x0000)
Kojto 93:e188a91d3eaa 412 #define TIM_OCPOLARITY_LOW (TIM_CCER_CC1P)
Kojto 93:e188a91d3eaa 413
Kojto 93:e188a91d3eaa 414 #define IS_TIM_OC_POLARITY(POLARITY) (((POLARITY) == TIM_OCPOLARITY_HIGH) || \
Kojto 93:e188a91d3eaa 415 ((POLARITY) == TIM_OCPOLARITY_LOW))
Kojto 93:e188a91d3eaa 416 /**
Kojto 93:e188a91d3eaa 417 * @}
Kojto 93:e188a91d3eaa 418 */
Kojto 93:e188a91d3eaa 419
Kojto 93:e188a91d3eaa 420 /** @defgroup TIM_Output_Compare_N_Polarity TIM Complementary Output Compare Polarity
Kojto 93:e188a91d3eaa 421 * @{
Kojto 93:e188a91d3eaa 422 */
Kojto 93:e188a91d3eaa 423
Kojto 93:e188a91d3eaa 424 #define TIM_OCNPOLARITY_HIGH ((uint32_t)0x0000)
Kojto 93:e188a91d3eaa 425 #define TIM_OCNPOLARITY_LOW (TIM_CCER_CC1NP)
Kojto 93:e188a91d3eaa 426
Kojto 93:e188a91d3eaa 427 #define IS_TIM_OCN_POLARITY(POLARITY) (((POLARITY) == TIM_OCNPOLARITY_HIGH) || \
Kojto 93:e188a91d3eaa 428 ((POLARITY) == TIM_OCNPOLARITY_LOW))
Kojto 93:e188a91d3eaa 429 /**
Kojto 93:e188a91d3eaa 430 * @}
Kojto 93:e188a91d3eaa 431 */
Kojto 93:e188a91d3eaa 432
Kojto 93:e188a91d3eaa 433 /** @defgroup TIM_Output_Compare_Idle_State TIM Output Compare Idle State
Kojto 93:e188a91d3eaa 434 * @{
Kojto 93:e188a91d3eaa 435 */
Kojto 93:e188a91d3eaa 436
Kojto 93:e188a91d3eaa 437 #define TIM_OCIDLESTATE_SET (TIM_CR2_OIS1)
Kojto 93:e188a91d3eaa 438 #define TIM_OCIDLESTATE_RESET ((uint32_t)0x0000)
Kojto 93:e188a91d3eaa 439 #define IS_TIM_OCIDLE_STATE(STATE) (((STATE) == TIM_OCIDLESTATE_SET) || \
Kojto 93:e188a91d3eaa 440 ((STATE) == TIM_OCIDLESTATE_RESET))
Kojto 93:e188a91d3eaa 441 /**
Kojto 93:e188a91d3eaa 442 * @}
Kojto 93:e188a91d3eaa 443 */
Kojto 93:e188a91d3eaa 444
Kojto 93:e188a91d3eaa 445 /** @defgroup TIM_Output_Compare_N_Idle_State TIM Complementary Output Compare Idle State
Kojto 93:e188a91d3eaa 446 * @{
Kojto 93:e188a91d3eaa 447 */
Kojto 93:e188a91d3eaa 448
Kojto 93:e188a91d3eaa 449 #define TIM_OCNIDLESTATE_SET (TIM_CR2_OIS1N)
Kojto 93:e188a91d3eaa 450 #define TIM_OCNIDLESTATE_RESET ((uint32_t)0x0000)
Kojto 93:e188a91d3eaa 451 #define IS_TIM_OCNIDLE_STATE(STATE) (((STATE) == TIM_OCNIDLESTATE_SET) || \
Kojto 93:e188a91d3eaa 452 ((STATE) == TIM_OCNIDLESTATE_RESET))
Kojto 93:e188a91d3eaa 453 /**
Kojto 93:e188a91d3eaa 454 * @}
Kojto 93:e188a91d3eaa 455 */
Kojto 93:e188a91d3eaa 456
Kojto 93:e188a91d3eaa 457
Kojto 93:e188a91d3eaa 458
Kojto 93:e188a91d3eaa 459 /** @defgroup TIM_Input_Capture_Polarity TIM Input Capture Polarity
Kojto 93:e188a91d3eaa 460 * @{
Kojto 93:e188a91d3eaa 461 */
Kojto 93:e188a91d3eaa 462
Kojto 93:e188a91d3eaa 463 #define TIM_ICPOLARITY_RISING TIM_INPUTCHANNELPOLARITY_RISING
Kojto 93:e188a91d3eaa 464 #define TIM_ICPOLARITY_FALLING TIM_INPUTCHANNELPOLARITY_FALLING
Kojto 93:e188a91d3eaa 465 #define TIM_ICPOLARITY_BOTHEDGE TIM_INPUTCHANNELPOLARITY_BOTHEDGE
Kojto 93:e188a91d3eaa 466
Kojto 93:e188a91d3eaa 467 #define IS_TIM_IC_POLARITY(POLARITY) (((POLARITY) == TIM_ICPOLARITY_RISING) || \
Kojto 93:e188a91d3eaa 468 ((POLARITY) == TIM_ICPOLARITY_FALLING) || \
Kojto 93:e188a91d3eaa 469 ((POLARITY) == TIM_ICPOLARITY_BOTHEDGE))
Kojto 93:e188a91d3eaa 470 /**
Kojto 93:e188a91d3eaa 471 * @}
Kojto 93:e188a91d3eaa 472 */
Kojto 93:e188a91d3eaa 473
Kojto 93:e188a91d3eaa 474 /** @defgroup TIM_Input_Capture_Selection TIM Input Capture Selection
Kojto 93:e188a91d3eaa 475 * @{
Kojto 93:e188a91d3eaa 476 */
Kojto 93:e188a91d3eaa 477
Kojto 93:e188a91d3eaa 478 #define TIM_ICSELECTION_DIRECTTI (TIM_CCMR1_CC1S_0) /*!< TIM Input 1, 2, 3 or 4 is selected to be
Kojto 93:e188a91d3eaa 479 connected to IC1, IC2, IC3 or IC4, respectively */
Kojto 93:e188a91d3eaa 480 #define TIM_ICSELECTION_INDIRECTTI (TIM_CCMR1_CC1S_1) /*!< TIM Input 1, 2, 3 or 4 is selected to be
Kojto 93:e188a91d3eaa 481 connected to IC2, IC1, IC4 or IC3, respectively */
Kojto 93:e188a91d3eaa 482 #define TIM_ICSELECTION_TRC (TIM_CCMR1_CC1S) /*!< TIM Input 1, 2, 3 or 4 is selected to be connected to TRC */
Kojto 93:e188a91d3eaa 483
Kojto 93:e188a91d3eaa 484 #define IS_TIM_IC_SELECTION(SELECTION) (((SELECTION) == TIM_ICSELECTION_DIRECTTI) || \
Kojto 93:e188a91d3eaa 485 ((SELECTION) == TIM_ICSELECTION_INDIRECTTI) || \
Kojto 93:e188a91d3eaa 486 ((SELECTION) == TIM_ICSELECTION_TRC))
Kojto 93:e188a91d3eaa 487 /**
Kojto 93:e188a91d3eaa 488 * @}
Kojto 93:e188a91d3eaa 489 */
Kojto 93:e188a91d3eaa 490
Kojto 93:e188a91d3eaa 491 /** @defgroup TIM_Input_Capture_Prescaler TIM Input Capture Prescaler
Kojto 93:e188a91d3eaa 492 * @{
Kojto 93:e188a91d3eaa 493 */
Kojto 93:e188a91d3eaa 494
Kojto 93:e188a91d3eaa 495 #define TIM_ICPSC_DIV1 ((uint32_t)0x0000) /*!< Capture performed each time an edge is detected on the capture input */
Kojto 93:e188a91d3eaa 496 #define TIM_ICPSC_DIV2 (TIM_CCMR1_IC1PSC_0) /*!< Capture performed once every 2 events */
Kojto 93:e188a91d3eaa 497 #define TIM_ICPSC_DIV4 (TIM_CCMR1_IC1PSC_1) /*!< Capture performed once every 4 events */
Kojto 93:e188a91d3eaa 498 #define TIM_ICPSC_DIV8 (TIM_CCMR1_IC1PSC) /*!< Capture performed once every 8 events */
Kojto 93:e188a91d3eaa 499
Kojto 93:e188a91d3eaa 500 #define IS_TIM_IC_PRESCALER(PRESCALER) (((PRESCALER) == TIM_ICPSC_DIV1) || \
Kojto 93:e188a91d3eaa 501 ((PRESCALER) == TIM_ICPSC_DIV2) || \
Kojto 93:e188a91d3eaa 502 ((PRESCALER) == TIM_ICPSC_DIV4) || \
Kojto 93:e188a91d3eaa 503 ((PRESCALER) == TIM_ICPSC_DIV8))
Kojto 93:e188a91d3eaa 504 /**
Kojto 93:e188a91d3eaa 505 * @}
Kojto 93:e188a91d3eaa 506 */
Kojto 93:e188a91d3eaa 507
Kojto 93:e188a91d3eaa 508 /** @defgroup TIM_One_Pulse_Mode TIM One Pulse Mode
Kojto 93:e188a91d3eaa 509 * @{
Kojto 93:e188a91d3eaa 510 */
Kojto 93:e188a91d3eaa 511
Kojto 93:e188a91d3eaa 512 #define TIM_OPMODE_SINGLE (TIM_CR1_OPM)
Kojto 93:e188a91d3eaa 513 #define TIM_OPMODE_REPETITIVE ((uint32_t)0x0000)
Kojto 93:e188a91d3eaa 514 #define IS_TIM_OPM_MODE(MODE) (((MODE) == TIM_OPMODE_SINGLE) || \
Kojto 93:e188a91d3eaa 515 ((MODE) == TIM_OPMODE_REPETITIVE))
Kojto 93:e188a91d3eaa 516 /**
Kojto 93:e188a91d3eaa 517 * @}
Kojto 93:e188a91d3eaa 518 */
Kojto 93:e188a91d3eaa 519 /** @defgroup TIM_Encoder_Mode TIM Encoder Mode
Kojto 93:e188a91d3eaa 520 * @{
Kojto 93:e188a91d3eaa 521 */
Kojto 93:e188a91d3eaa 522 #define TIM_ENCODERMODE_TI1 (TIM_SMCR_SMS_0)
Kojto 93:e188a91d3eaa 523 #define TIM_ENCODERMODE_TI2 (TIM_SMCR_SMS_1)
Kojto 93:e188a91d3eaa 524 #define TIM_ENCODERMODE_TI12 (TIM_SMCR_SMS_1 | TIM_SMCR_SMS_0)
Kojto 93:e188a91d3eaa 525 #define IS_TIM_ENCODER_MODE(MODE) (((MODE) == TIM_ENCODERMODE_TI1) || \
Kojto 93:e188a91d3eaa 526 ((MODE) == TIM_ENCODERMODE_TI2) || \
Kojto 93:e188a91d3eaa 527 ((MODE) == TIM_ENCODERMODE_TI12))
Kojto 93:e188a91d3eaa 528 /**
Kojto 93:e188a91d3eaa 529 * @}
Kojto 93:e188a91d3eaa 530 */
Kojto 93:e188a91d3eaa 531 /** @defgroup TIM_Interrupt_definition TIM interrupt Definition
Kojto 93:e188a91d3eaa 532 * @{
Kojto 93:e188a91d3eaa 533 */
Kojto 93:e188a91d3eaa 534 #define TIM_IT_UPDATE (TIM_DIER_UIE)
Kojto 93:e188a91d3eaa 535 #define TIM_IT_CC1 (TIM_DIER_CC1IE)
Kojto 93:e188a91d3eaa 536 #define TIM_IT_CC2 (TIM_DIER_CC2IE)
Kojto 93:e188a91d3eaa 537 #define TIM_IT_CC3 (TIM_DIER_CC3IE)
Kojto 93:e188a91d3eaa 538 #define TIM_IT_CC4 (TIM_DIER_CC4IE)
Kojto 93:e188a91d3eaa 539 #define TIM_IT_COM (TIM_DIER_COMIE)
Kojto 93:e188a91d3eaa 540 #define TIM_IT_TRIGGER (TIM_DIER_TIE)
Kojto 93:e188a91d3eaa 541 #define TIM_IT_BREAK (TIM_DIER_BIE)
Kojto 93:e188a91d3eaa 542
Kojto 93:e188a91d3eaa 543 #define IS_TIM_IT(IT) ((((IT) & 0xFFFFFF00) == 0x00000000) && ((IT) != 0x00000000))
Kojto 93:e188a91d3eaa 544
Kojto 93:e188a91d3eaa 545 #define IS_TIM_GET_IT(IT) (((IT) == TIM_IT_UPDATE) || \
Kojto 93:e188a91d3eaa 546 ((IT) == TIM_IT_CC1) || \
Kojto 93:e188a91d3eaa 547 ((IT) == TIM_IT_CC2) || \
Kojto 93:e188a91d3eaa 548 ((IT) == TIM_IT_CC3) || \
Kojto 93:e188a91d3eaa 549 ((IT) == TIM_IT_CC4) || \
Kojto 93:e188a91d3eaa 550 ((IT) == TIM_IT_COM) || \
Kojto 93:e188a91d3eaa 551 ((IT) == TIM_IT_TRIGGER) || \
Kojto 93:e188a91d3eaa 552 ((IT) == TIM_IT_BREAK))
Kojto 93:e188a91d3eaa 553 /**
Kojto 93:e188a91d3eaa 554 * @}
Kojto 93:e188a91d3eaa 555 */
Kojto 93:e188a91d3eaa 556 #define TIM_COMMUTATION_TRGI (TIM_CR2_CCUS)
Kojto 93:e188a91d3eaa 557 #define TIM_COMMUTATION_SOFTWARE ((uint32_t)0x0000)
Kojto 93:e188a91d3eaa 558
Kojto 93:e188a91d3eaa 559 /** @defgroup TIM_DMA_sources TIM DMA Sources
Kojto 93:e188a91d3eaa 560 * @{
Kojto 93:e188a91d3eaa 561 */
Kojto 93:e188a91d3eaa 562
Kojto 93:e188a91d3eaa 563 #define TIM_DMA_UPDATE (TIM_DIER_UDE)
Kojto 93:e188a91d3eaa 564 #define TIM_DMA_CC1 (TIM_DIER_CC1DE)
Kojto 93:e188a91d3eaa 565 #define TIM_DMA_CC2 (TIM_DIER_CC2DE)
Kojto 93:e188a91d3eaa 566 #define TIM_DMA_CC3 (TIM_DIER_CC3DE)
Kojto 93:e188a91d3eaa 567 #define TIM_DMA_CC4 (TIM_DIER_CC4DE)
Kojto 93:e188a91d3eaa 568 #define TIM_DMA_COM (TIM_DIER_COMDE)
Kojto 93:e188a91d3eaa 569 #define TIM_DMA_TRIGGER (TIM_DIER_TDE)
Kojto 93:e188a91d3eaa 570 #define IS_TIM_DMA_SOURCE(SOURCE) ((((SOURCE) & 0xFFFF80FF) == 0x00000000) && ((SOURCE) != 0x00000000))
Kojto 93:e188a91d3eaa 571
Kojto 93:e188a91d3eaa 572 /**
Kojto 93:e188a91d3eaa 573 * @}
Kojto 93:e188a91d3eaa 574 */
Kojto 93:e188a91d3eaa 575
Kojto 93:e188a91d3eaa 576 /** @defgroup TIM_Flag_definition TIM Flag Definition
Kojto 93:e188a91d3eaa 577 * @{
Kojto 93:e188a91d3eaa 578 */
Kojto 93:e188a91d3eaa 579
Kojto 93:e188a91d3eaa 580 #define TIM_FLAG_UPDATE (TIM_SR_UIF)
Kojto 93:e188a91d3eaa 581 #define TIM_FLAG_CC1 (TIM_SR_CC1IF)
Kojto 93:e188a91d3eaa 582 #define TIM_FLAG_CC2 (TIM_SR_CC2IF)
Kojto 93:e188a91d3eaa 583 #define TIM_FLAG_CC3 (TIM_SR_CC3IF)
Kojto 93:e188a91d3eaa 584 #define TIM_FLAG_CC4 (TIM_SR_CC4IF)
Kojto 93:e188a91d3eaa 585 #define TIM_FLAG_COM (TIM_SR_COMIF)
Kojto 93:e188a91d3eaa 586 #define TIM_FLAG_TRIGGER (TIM_SR_TIF)
Kojto 93:e188a91d3eaa 587 #define TIM_FLAG_BREAK (TIM_SR_BIF)
Kojto 93:e188a91d3eaa 588 #define TIM_FLAG_CC1OF (TIM_SR_CC1OF)
Kojto 93:e188a91d3eaa 589 #define TIM_FLAG_CC2OF (TIM_SR_CC2OF)
Kojto 93:e188a91d3eaa 590 #define TIM_FLAG_CC3OF (TIM_SR_CC3OF)
Kojto 93:e188a91d3eaa 591 #define TIM_FLAG_CC4OF (TIM_SR_CC4OF)
Kojto 93:e188a91d3eaa 592
Kojto 93:e188a91d3eaa 593 #define IS_TIM_FLAG(FLAG) (((FLAG) == TIM_FLAG_UPDATE) || \
Kojto 93:e188a91d3eaa 594 ((FLAG) == TIM_FLAG_CC1) || \
Kojto 93:e188a91d3eaa 595 ((FLAG) == TIM_FLAG_CC2) || \
Kojto 93:e188a91d3eaa 596 ((FLAG) == TIM_FLAG_CC3) || \
Kojto 93:e188a91d3eaa 597 ((FLAG) == TIM_FLAG_CC4) || \
Kojto 93:e188a91d3eaa 598 ((FLAG) == TIM_FLAG_COM) || \
Kojto 93:e188a91d3eaa 599 ((FLAG) == TIM_FLAG_TRIGGER) || \
Kojto 93:e188a91d3eaa 600 ((FLAG) == TIM_FLAG_BREAK) || \
Kojto 93:e188a91d3eaa 601 ((FLAG) == TIM_FLAG_CC1OF) || \
Kojto 93:e188a91d3eaa 602 ((FLAG) == TIM_FLAG_CC2OF) || \
Kojto 93:e188a91d3eaa 603 ((FLAG) == TIM_FLAG_CC3OF) || \
Kojto 93:e188a91d3eaa 604 ((FLAG) == TIM_FLAG_CC4OF))
Kojto 93:e188a91d3eaa 605 /**
Kojto 93:e188a91d3eaa 606 * @}
Kojto 93:e188a91d3eaa 607 */
Kojto 93:e188a91d3eaa 608
Kojto 93:e188a91d3eaa 609 /** @defgroup TIM_Clock_Source TIM Clock Source
Kojto 93:e188a91d3eaa 610 * @{
Kojto 93:e188a91d3eaa 611 */
Kojto 93:e188a91d3eaa 612 #define TIM_CLOCKSOURCE_ETRMODE2 (TIM_SMCR_ETPS_1)
Kojto 93:e188a91d3eaa 613 #define TIM_CLOCKSOURCE_INTERNAL (TIM_SMCR_ETPS_0)
Kojto 93:e188a91d3eaa 614 #define TIM_CLOCKSOURCE_ITR0 ((uint32_t)0x0000)
Kojto 93:e188a91d3eaa 615 #define TIM_CLOCKSOURCE_ITR1 (TIM_SMCR_TS_0)
Kojto 93:e188a91d3eaa 616 #define TIM_CLOCKSOURCE_ITR2 (TIM_SMCR_TS_1)
Kojto 93:e188a91d3eaa 617 #define TIM_CLOCKSOURCE_ITR3 (TIM_SMCR_TS_0 | TIM_SMCR_TS_1)
Kojto 93:e188a91d3eaa 618 #define TIM_CLOCKSOURCE_TI1ED (TIM_SMCR_TS_2)
Kojto 93:e188a91d3eaa 619 #define TIM_CLOCKSOURCE_TI1 (TIM_SMCR_TS_0 | TIM_SMCR_TS_2)
Kojto 93:e188a91d3eaa 620 #define TIM_CLOCKSOURCE_TI2 (TIM_SMCR_TS_1 | TIM_SMCR_TS_2)
Kojto 93:e188a91d3eaa 621 #define TIM_CLOCKSOURCE_ETRMODE1 (TIM_SMCR_TS)
Kojto 93:e188a91d3eaa 622
Kojto 93:e188a91d3eaa 623 #define IS_TIM_CLOCKSOURCE(CLOCK) (((CLOCK) == TIM_CLOCKSOURCE_INTERNAL) || \
Kojto 93:e188a91d3eaa 624 ((CLOCK) == TIM_CLOCKSOURCE_ETRMODE2) || \
Kojto 93:e188a91d3eaa 625 ((CLOCK) == TIM_CLOCKSOURCE_ITR0) || \
Kojto 93:e188a91d3eaa 626 ((CLOCK) == TIM_CLOCKSOURCE_ITR1) || \
Kojto 93:e188a91d3eaa 627 ((CLOCK) == TIM_CLOCKSOURCE_ITR2) || \
Kojto 93:e188a91d3eaa 628 ((CLOCK) == TIM_CLOCKSOURCE_ITR3) || \
Kojto 93:e188a91d3eaa 629 ((CLOCK) == TIM_CLOCKSOURCE_TI1ED) || \
Kojto 93:e188a91d3eaa 630 ((CLOCK) == TIM_CLOCKSOURCE_TI1) || \
Kojto 93:e188a91d3eaa 631 ((CLOCK) == TIM_CLOCKSOURCE_TI2) || \
Kojto 93:e188a91d3eaa 632 ((CLOCK) == TIM_CLOCKSOURCE_ETRMODE1))
Kojto 93:e188a91d3eaa 633 /**
Kojto 93:e188a91d3eaa 634 * @}
Kojto 93:e188a91d3eaa 635 */
Kojto 93:e188a91d3eaa 636
Kojto 93:e188a91d3eaa 637 /** @defgroup TIM_Clock_Polarity TIM Clock Polarity
Kojto 93:e188a91d3eaa 638 * @{
Kojto 93:e188a91d3eaa 639 */
Kojto 93:e188a91d3eaa 640 #define TIM_CLOCKPOLARITY_INVERTED TIM_ETRPOLARITY_INVERTED /*!< Polarity for ETRx clock sources */
Kojto 93:e188a91d3eaa 641 #define TIM_CLOCKPOLARITY_NONINVERTED TIM_ETRPOLARITY_NONINVERTED /*!< Polarity for ETRx clock sources */
Kojto 93:e188a91d3eaa 642 #define TIM_CLOCKPOLARITY_RISING TIM_INPUTCHANNELPOLARITY_RISING /*!< Polarity for TIx clock sources */
Kojto 93:e188a91d3eaa 643 #define TIM_CLOCKPOLARITY_FALLING TIM_INPUTCHANNELPOLARITY_FALLING /*!< Polarity for TIx clock sources */
Kojto 93:e188a91d3eaa 644 #define TIM_CLOCKPOLARITY_BOTHEDGE TIM_INPUTCHANNELPOLARITY_BOTHEDGE /*!< Polarity for TIx clock sources */
Kojto 93:e188a91d3eaa 645
Kojto 93:e188a91d3eaa 646 #define IS_TIM_CLOCKPOLARITY(POLARITY) (((POLARITY) == TIM_CLOCKPOLARITY_INVERTED) || \
Kojto 93:e188a91d3eaa 647 ((POLARITY) == TIM_CLOCKPOLARITY_NONINVERTED) || \
Kojto 93:e188a91d3eaa 648 ((POLARITY) == TIM_CLOCKPOLARITY_RISING) || \
Kojto 93:e188a91d3eaa 649 ((POLARITY) == TIM_CLOCKPOLARITY_FALLING) || \
Kojto 93:e188a91d3eaa 650 ((POLARITY) == TIM_CLOCKPOLARITY_BOTHEDGE))
Kojto 93:e188a91d3eaa 651 /**
Kojto 93:e188a91d3eaa 652 * @}
Kojto 93:e188a91d3eaa 653 */
Kojto 93:e188a91d3eaa 654 /** @defgroup TIM_Clock_Prescaler TIM Clock Prescaler
Kojto 93:e188a91d3eaa 655 * @{
Kojto 93:e188a91d3eaa 656 */
Kojto 93:e188a91d3eaa 657 #define TIM_CLOCKPRESCALER_DIV1 TIM_ETRPRESCALER_DIV1 /*!< No prescaler is used */
Kojto 93:e188a91d3eaa 658 #define TIM_CLOCKPRESCALER_DIV2 TIM_ETRPRESCALER_DIV2 /*!< Prescaler for External ETR Clock: Capture performed once every 2 events. */
Kojto 93:e188a91d3eaa 659 #define TIM_CLOCKPRESCALER_DIV4 TIM_ETRPRESCALER_DIV4 /*!< Prescaler for External ETR Clock: Capture performed once every 4 events. */
Kojto 93:e188a91d3eaa 660 #define TIM_CLOCKPRESCALER_DIV8 TIM_ETRPRESCALER_DIV8 /*!< Prescaler for External ETR Clock: Capture performed once every 8 events. */
Kojto 93:e188a91d3eaa 661
Kojto 93:e188a91d3eaa 662 #define IS_TIM_CLOCKPRESCALER(PRESCALER) (((PRESCALER) == TIM_CLOCKPRESCALER_DIV1) || \
Kojto 93:e188a91d3eaa 663 ((PRESCALER) == TIM_CLOCKPRESCALER_DIV2) || \
Kojto 93:e188a91d3eaa 664 ((PRESCALER) == TIM_CLOCKPRESCALER_DIV4) || \
Kojto 93:e188a91d3eaa 665 ((PRESCALER) == TIM_CLOCKPRESCALER_DIV8))
Kojto 93:e188a91d3eaa 666 /**
Kojto 93:e188a91d3eaa 667 * @}
Kojto 93:e188a91d3eaa 668 */
Kojto 93:e188a91d3eaa 669 /** @defgroup TIM_Clock_Filter TIM Clock Filter
Kojto 93:e188a91d3eaa 670 * @{
Kojto 93:e188a91d3eaa 671 */
Kojto 93:e188a91d3eaa 672
Kojto 93:e188a91d3eaa 673 #define IS_TIM_CLOCKFILTER(ICFILTER) ((ICFILTER) <= 0xF)
Kojto 93:e188a91d3eaa 674 /**
Kojto 93:e188a91d3eaa 675 * @}
Kojto 93:e188a91d3eaa 676 */
Kojto 93:e188a91d3eaa 677
Kojto 93:e188a91d3eaa 678 /** @defgroup TIM_ClearInput_Polarity TIM Clear Input Polarity
Kojto 93:e188a91d3eaa 679 * @{
Kojto 93:e188a91d3eaa 680 */
Kojto 93:e188a91d3eaa 681 #define TIM_CLEARINPUTPOLARITY_INVERTED TIM_ETRPOLARITY_INVERTED /*!< Polarity for ETRx pin */
Kojto 93:e188a91d3eaa 682 #define TIM_CLEARINPUTPOLARITY_NONINVERTED TIM_ETRPOLARITY_NONINVERTED /*!< Polarity for ETRx pin */
Kojto 93:e188a91d3eaa 683
Kojto 93:e188a91d3eaa 684
Kojto 93:e188a91d3eaa 685 #define IS_TIM_CLEARINPUT_POLARITY(POLARITY) (((POLARITY) == TIM_CLEARINPUTPOLARITY_INVERTED) || \
Kojto 93:e188a91d3eaa 686 ((POLARITY) == TIM_CLEARINPUTPOLARITY_NONINVERTED))
Kojto 93:e188a91d3eaa 687 /**
Kojto 93:e188a91d3eaa 688 * @}
Kojto 93:e188a91d3eaa 689 */
Kojto 93:e188a91d3eaa 690
Kojto 93:e188a91d3eaa 691 /** @defgroup TIM_ClearInput_Prescaler TIM Clear Input Prescaler
Kojto 93:e188a91d3eaa 692 * @{
Kojto 93:e188a91d3eaa 693 */
Kojto 93:e188a91d3eaa 694 #define TIM_CLEARINPUTPRESCALER_DIV1 TIM_ETRPRESCALER_DIV1 /*!< No prescaler is used */
Kojto 93:e188a91d3eaa 695 #define TIM_CLEARINPUTPRESCALER_DIV2 TIM_ETRPRESCALER_DIV2 /*!< Prescaler for External ETR pin: Capture performed once every 2 events. */
Kojto 93:e188a91d3eaa 696 #define TIM_CLEARINPUTPRESCALER_DIV4 TIM_ETRPRESCALER_DIV4 /*!< Prescaler for External ETR pin: Capture performed once every 4 events. */
Kojto 93:e188a91d3eaa 697 #define TIM_CLEARINPUTPRESCALER_DIV8 TIM_ETRPRESCALER_DIV8 /*!< Prescaler for External ETR pin: Capture performed once every 8 events. */
Kojto 93:e188a91d3eaa 698 #define IS_TIM_CLEARINPUT_PRESCALER(PRESCALER) (((PRESCALER) == TIM_CLEARINPUTPRESCALER_DIV1) || \
Kojto 93:e188a91d3eaa 699 ((PRESCALER) == TIM_CLEARINPUTPRESCALER_DIV2) || \
Kojto 93:e188a91d3eaa 700 ((PRESCALER) == TIM_CLEARINPUTPRESCALER_DIV4) || \
Kojto 93:e188a91d3eaa 701 ((PRESCALER) == TIM_CLEARINPUTPRESCALER_DIV8))
Kojto 93:e188a91d3eaa 702 /**
Kojto 93:e188a91d3eaa 703 * @}
Kojto 93:e188a91d3eaa 704 */
Kojto 93:e188a91d3eaa 705
Kojto 93:e188a91d3eaa 706 /** @defgroup TIM_ClearInput_Filter TIM Clear Input Filter
Kojto 93:e188a91d3eaa 707 * @{
Kojto 93:e188a91d3eaa 708 */
Kojto 93:e188a91d3eaa 709
Kojto 93:e188a91d3eaa 710 #define IS_TIM_CLEARINPUT_FILTER(ICFILTER) ((ICFILTER) <= 0xF)
Kojto 93:e188a91d3eaa 711 /**
Kojto 93:e188a91d3eaa 712 * @}
Kojto 93:e188a91d3eaa 713 */
Kojto 93:e188a91d3eaa 714
Kojto 93:e188a91d3eaa 715 /** @defgroup TIM_OSSR_Off_State_Selection_for_Run_mode_state TIM Off-state Selection for Run Mode
Kojto 93:e188a91d3eaa 716 * @{
Kojto 93:e188a91d3eaa 717 */
Kojto 93:e188a91d3eaa 718 #define TIM_OSSR_ENABLE (TIM_BDTR_OSSR)
Kojto 93:e188a91d3eaa 719 #define TIM_OSSR_DISABLE ((uint32_t)0x0000)
Kojto 93:e188a91d3eaa 720
Kojto 93:e188a91d3eaa 721 #define IS_TIM_OSSR_STATE(STATE) (((STATE) == TIM_OSSR_ENABLE) || \
Kojto 93:e188a91d3eaa 722 ((STATE) == TIM_OSSR_DISABLE))
Kojto 93:e188a91d3eaa 723 /**
Kojto 93:e188a91d3eaa 724 * @}
Kojto 93:e188a91d3eaa 725 */
Kojto 93:e188a91d3eaa 726
Kojto 93:e188a91d3eaa 727 /** @defgroup TIM_OSSI_Off_State_Selection_for_Idle_mode_state TIM Off-state Selection for Idle Mode
Kojto 93:e188a91d3eaa 728 * @{
Kojto 93:e188a91d3eaa 729 */
Kojto 93:e188a91d3eaa 730 #define TIM_OSSI_ENABLE (TIM_BDTR_OSSI)
Kojto 93:e188a91d3eaa 731 #define TIM_OSSI_DISABLE ((uint32_t)0x0000)
Kojto 93:e188a91d3eaa 732
Kojto 93:e188a91d3eaa 733 #define IS_TIM_OSSI_STATE(STATE) (((STATE) == TIM_OSSI_ENABLE) || \
Kojto 93:e188a91d3eaa 734 ((STATE) == TIM_OSSI_DISABLE))
Kojto 93:e188a91d3eaa 735 /**
Kojto 93:e188a91d3eaa 736 * @}
Kojto 93:e188a91d3eaa 737 */
Kojto 93:e188a91d3eaa 738 /** @defgroup TIM_Lock_level TIM Lock Configuration
Kojto 93:e188a91d3eaa 739 * @{
Kojto 93:e188a91d3eaa 740 */
Kojto 93:e188a91d3eaa 741 #define TIM_LOCKLEVEL_OFF ((uint32_t)0x0000)
Kojto 93:e188a91d3eaa 742 #define TIM_LOCKLEVEL_1 (TIM_BDTR_LOCK_0)
Kojto 93:e188a91d3eaa 743 #define TIM_LOCKLEVEL_2 (TIM_BDTR_LOCK_1)
Kojto 93:e188a91d3eaa 744 #define TIM_LOCKLEVEL_3 (TIM_BDTR_LOCK)
Kojto 93:e188a91d3eaa 745
Kojto 93:e188a91d3eaa 746 #define IS_TIM_LOCK_LEVEL(LEVEL) (((LEVEL) == TIM_LOCKLEVEL_OFF) || \
Kojto 93:e188a91d3eaa 747 ((LEVEL) == TIM_LOCKLEVEL_1) || \
Kojto 93:e188a91d3eaa 748 ((LEVEL) == TIM_LOCKLEVEL_2) || \
Kojto 93:e188a91d3eaa 749 ((LEVEL) == TIM_LOCKLEVEL_3))
Kojto 93:e188a91d3eaa 750 /**
Kojto 93:e188a91d3eaa 751 * @}
Kojto 93:e188a91d3eaa 752 */
Kojto 93:e188a91d3eaa 753 /** @defgroup TIM_Break_Input_enable_disable TIM Break Input Enable
Kojto 93:e188a91d3eaa 754 * @{
Kojto 93:e188a91d3eaa 755 */
Kojto 93:e188a91d3eaa 756 #define TIM_BREAK_ENABLE (TIM_BDTR_BKE)
Kojto 93:e188a91d3eaa 757 #define TIM_BREAK_DISABLE ((uint32_t)0x0000)
Kojto 93:e188a91d3eaa 758
Kojto 93:e188a91d3eaa 759 #define IS_TIM_BREAK_STATE(STATE) (((STATE) == TIM_BREAK_ENABLE) || \
Kojto 93:e188a91d3eaa 760 ((STATE) == TIM_BREAK_DISABLE))
Kojto 93:e188a91d3eaa 761 /**
Kojto 93:e188a91d3eaa 762 * @}
Kojto 93:e188a91d3eaa 763 */
Kojto 93:e188a91d3eaa 764 /** @defgroup TIM_Break_Polarity TIM Break Input Polarity
Kojto 93:e188a91d3eaa 765 * @{
Kojto 93:e188a91d3eaa 766 */
Kojto 93:e188a91d3eaa 767 #define TIM_BREAKPOLARITY_LOW ((uint32_t)0x0000)
Kojto 93:e188a91d3eaa 768 #define TIM_BREAKPOLARITY_HIGH (TIM_BDTR_BKP)
Kojto 93:e188a91d3eaa 769
Kojto 93:e188a91d3eaa 770 #define IS_TIM_BREAK_POLARITY(POLARITY) (((POLARITY) == TIM_BREAKPOLARITY_LOW) || \
Kojto 93:e188a91d3eaa 771 ((POLARITY) == TIM_BREAKPOLARITY_HIGH))
Kojto 93:e188a91d3eaa 772 /**
Kojto 93:e188a91d3eaa 773 * @}
Kojto 93:e188a91d3eaa 774 */
Kojto 93:e188a91d3eaa 775 /** @defgroup TIM_AOE_Bit_Set_Reset TIM Automatic Output Enable
Kojto 93:e188a91d3eaa 776 * @{
Kojto 93:e188a91d3eaa 777 */
Kojto 93:e188a91d3eaa 778 #define TIM_AUTOMATICOUTPUT_ENABLE (TIM_BDTR_AOE)
Kojto 93:e188a91d3eaa 779 #define TIM_AUTOMATICOUTPUT_DISABLE ((uint32_t)0x0000)
Kojto 93:e188a91d3eaa 780
Kojto 93:e188a91d3eaa 781 #define IS_TIM_AUTOMATIC_OUTPUT_STATE(STATE) (((STATE) == TIM_AUTOMATICOUTPUT_ENABLE) || \
Kojto 93:e188a91d3eaa 782 ((STATE) == TIM_AUTOMATICOUTPUT_DISABLE))
Kojto 93:e188a91d3eaa 783 /**
Kojto 93:e188a91d3eaa 784 * @}
Kojto 93:e188a91d3eaa 785 */
Kojto 93:e188a91d3eaa 786
Kojto 93:e188a91d3eaa 787 /** @defgroup TIM_Master_Mode_Selection TIM Master Mode Selection
Kojto 93:e188a91d3eaa 788 * @{
Kojto 93:e188a91d3eaa 789 */
Kojto 93:e188a91d3eaa 790 #define TIM_TRGO_RESET ((uint32_t)0x0000)
Kojto 93:e188a91d3eaa 791 #define TIM_TRGO_ENABLE (TIM_CR2_MMS_0)
Kojto 93:e188a91d3eaa 792 #define TIM_TRGO_UPDATE (TIM_CR2_MMS_1)
Kojto 93:e188a91d3eaa 793 #define TIM_TRGO_OC1 ((TIM_CR2_MMS_1 | TIM_CR2_MMS_0))
Kojto 93:e188a91d3eaa 794 #define TIM_TRGO_OC1REF (TIM_CR2_MMS_2)
Kojto 93:e188a91d3eaa 795 #define TIM_TRGO_OC2REF ((TIM_CR2_MMS_2 | TIM_CR2_MMS_0))
Kojto 93:e188a91d3eaa 796 #define TIM_TRGO_OC3REF ((TIM_CR2_MMS_2 | TIM_CR2_MMS_1))
Kojto 93:e188a91d3eaa 797 #define TIM_TRGO_OC4REF ((TIM_CR2_MMS_2 | TIM_CR2_MMS_1 | TIM_CR2_MMS_0))
Kojto 93:e188a91d3eaa 798
Kojto 93:e188a91d3eaa 799 #define IS_TIM_TRGO_SOURCE(SOURCE) (((SOURCE) == TIM_TRGO_RESET) || \
Kojto 93:e188a91d3eaa 800 ((SOURCE) == TIM_TRGO_ENABLE) || \
Kojto 93:e188a91d3eaa 801 ((SOURCE) == TIM_TRGO_UPDATE) || \
Kojto 93:e188a91d3eaa 802 ((SOURCE) == TIM_TRGO_OC1) || \
Kojto 93:e188a91d3eaa 803 ((SOURCE) == TIM_TRGO_OC1REF) || \
Kojto 93:e188a91d3eaa 804 ((SOURCE) == TIM_TRGO_OC2REF) || \
Kojto 93:e188a91d3eaa 805 ((SOURCE) == TIM_TRGO_OC3REF) || \
Kojto 93:e188a91d3eaa 806 ((SOURCE) == TIM_TRGO_OC4REF))
Kojto 93:e188a91d3eaa 807
Kojto 93:e188a91d3eaa 808
Kojto 93:e188a91d3eaa 809 /**
Kojto 93:e188a91d3eaa 810 * @}
Kojto 93:e188a91d3eaa 811 */
Kojto 93:e188a91d3eaa 812 /** @defgroup TIM_Master_Slave_Mode TIM Master/Slave Mode
Kojto 93:e188a91d3eaa 813 * @{
Kojto 93:e188a91d3eaa 814 */
Kojto 93:e188a91d3eaa 815
Kojto 93:e188a91d3eaa 816 #define TIM_MASTERSLAVEMODE_ENABLE ((uint32_t)0x0080)
Kojto 93:e188a91d3eaa 817 #define TIM_MASTERSLAVEMODE_DISABLE ((uint32_t)0x0000)
Kojto 93:e188a91d3eaa 818 #define IS_TIM_MSM_STATE(STATE) (((STATE) == TIM_MASTERSLAVEMODE_ENABLE) || \
Kojto 93:e188a91d3eaa 819 ((STATE) == TIM_MASTERSLAVEMODE_DISABLE))
Kojto 93:e188a91d3eaa 820 /**
Kojto 93:e188a91d3eaa 821 * @}
Kojto 93:e188a91d3eaa 822 */
Kojto 93:e188a91d3eaa 823 /** @defgroup TIM_Trigger_Selection TIM Trigger Selection
Kojto 93:e188a91d3eaa 824 * @{
Kojto 93:e188a91d3eaa 825 */
Kojto 93:e188a91d3eaa 826
Kojto 93:e188a91d3eaa 827 #define TIM_TS_ITR0 ((uint32_t)0x0000)
Kojto 93:e188a91d3eaa 828 #define TIM_TS_ITR1 ((uint32_t)0x0010)
Kojto 93:e188a91d3eaa 829 #define TIM_TS_ITR2 ((uint32_t)0x0020)
Kojto 93:e188a91d3eaa 830 #define TIM_TS_ITR3 ((uint32_t)0x0030)
Kojto 93:e188a91d3eaa 831 #define TIM_TS_TI1F_ED ((uint32_t)0x0040)
Kojto 93:e188a91d3eaa 832 #define TIM_TS_TI1FP1 ((uint32_t)0x0050)
Kojto 93:e188a91d3eaa 833 #define TIM_TS_TI2FP2 ((uint32_t)0x0060)
Kojto 93:e188a91d3eaa 834 #define TIM_TS_ETRF ((uint32_t)0x0070)
Kojto 93:e188a91d3eaa 835 #define TIM_TS_NONE ((uint32_t)0xFFFF)
Kojto 93:e188a91d3eaa 836 #define IS_TIM_TRIGGER_SELECTION(SELECTION) (((SELECTION) == TIM_TS_ITR0) || \
Kojto 93:e188a91d3eaa 837 ((SELECTION) == TIM_TS_ITR1) || \
Kojto 93:e188a91d3eaa 838 ((SELECTION) == TIM_TS_ITR2) || \
Kojto 93:e188a91d3eaa 839 ((SELECTION) == TIM_TS_ITR3) || \
Kojto 93:e188a91d3eaa 840 ((SELECTION) == TIM_TS_TI1F_ED) || \
Kojto 93:e188a91d3eaa 841 ((SELECTION) == TIM_TS_TI1FP1) || \
Kojto 93:e188a91d3eaa 842 ((SELECTION) == TIM_TS_TI2FP2) || \
Kojto 93:e188a91d3eaa 843 ((SELECTION) == TIM_TS_ETRF))
Kojto 93:e188a91d3eaa 844 #define IS_TIM_INTERNAL_TRIGGER_SELECTION(SELECTION) (((SELECTION) == TIM_TS_ITR0) || \
Kojto 93:e188a91d3eaa 845 ((SELECTION) == TIM_TS_ITR1) || \
Kojto 93:e188a91d3eaa 846 ((SELECTION) == TIM_TS_ITR2) || \
Kojto 93:e188a91d3eaa 847 ((SELECTION) == TIM_TS_ITR3))
Kojto 93:e188a91d3eaa 848 #define IS_TIM_INTERNAL_TRIGGEREVENT_SELECTION(SELECTION) (((SELECTION) == TIM_TS_ITR0) || \
Kojto 93:e188a91d3eaa 849 ((SELECTION) == TIM_TS_ITR1) || \
Kojto 93:e188a91d3eaa 850 ((SELECTION) == TIM_TS_ITR2) || \
Kojto 93:e188a91d3eaa 851 ((SELECTION) == TIM_TS_ITR3) || \
Kojto 93:e188a91d3eaa 852 ((SELECTION) == TIM_TS_NONE))
Kojto 93:e188a91d3eaa 853 /**
Kojto 93:e188a91d3eaa 854 * @}
Kojto 93:e188a91d3eaa 855 */
Kojto 93:e188a91d3eaa 856
Kojto 93:e188a91d3eaa 857 /** @defgroup TIM_Trigger_Polarity TIM Trigger Polarity
Kojto 93:e188a91d3eaa 858 * @{
Kojto 93:e188a91d3eaa 859 */
Kojto 93:e188a91d3eaa 860 #define TIM_TRIGGERPOLARITY_INVERTED TIM_ETRPOLARITY_INVERTED /*!< Polarity for ETRx trigger sources */
Kojto 93:e188a91d3eaa 861 #define TIM_TRIGGERPOLARITY_NONINVERTED TIM_ETRPOLARITY_NONINVERTED /*!< Polarity for ETRx trigger sources */
Kojto 93:e188a91d3eaa 862 #define TIM_TRIGGERPOLARITY_RISING TIM_INPUTCHANNELPOLARITY_RISING /*!< Polarity for TIxFPx or TI1_ED trigger sources */
Kojto 93:e188a91d3eaa 863 #define TIM_TRIGGERPOLARITY_FALLING TIM_INPUTCHANNELPOLARITY_FALLING /*!< Polarity for TIxFPx or TI1_ED trigger sources */
Kojto 93:e188a91d3eaa 864 #define TIM_TRIGGERPOLARITY_BOTHEDGE TIM_INPUTCHANNELPOLARITY_BOTHEDGE /*!< Polarity for TIxFPx or TI1_ED trigger sources */
Kojto 93:e188a91d3eaa 865
Kojto 93:e188a91d3eaa 866 #define IS_TIM_TRIGGERPOLARITY(POLARITY) (((POLARITY) == TIM_TRIGGERPOLARITY_INVERTED ) || \
Kojto 93:e188a91d3eaa 867 ((POLARITY) == TIM_TRIGGERPOLARITY_NONINVERTED) || \
Kojto 93:e188a91d3eaa 868 ((POLARITY) == TIM_TRIGGERPOLARITY_RISING ) || \
Kojto 93:e188a91d3eaa 869 ((POLARITY) == TIM_TRIGGERPOLARITY_FALLING ) || \
Kojto 93:e188a91d3eaa 870 ((POLARITY) == TIM_TRIGGERPOLARITY_BOTHEDGE ))
Kojto 93:e188a91d3eaa 871 /**
Kojto 93:e188a91d3eaa 872 * @}
Kojto 93:e188a91d3eaa 873 */
Kojto 93:e188a91d3eaa 874
Kojto 93:e188a91d3eaa 875 /** @defgroup TIM_Trigger_Prescaler TIM Trigger Prescaler
Kojto 93:e188a91d3eaa 876 * @{
Kojto 93:e188a91d3eaa 877 */
Kojto 93:e188a91d3eaa 878 #define TIM_TRIGGERPRESCALER_DIV1 TIM_ETRPRESCALER_DIV1 /*!< No prescaler is used */
Kojto 93:e188a91d3eaa 879 #define TIM_TRIGGERPRESCALER_DIV2 TIM_ETRPRESCALER_DIV2 /*!< Prescaler for External ETR Trigger: Capture performed once every 2 events. */
Kojto 93:e188a91d3eaa 880 #define TIM_TRIGGERPRESCALER_DIV4 TIM_ETRPRESCALER_DIV4 /*!< Prescaler for External ETR Trigger: Capture performed once every 4 events. */
Kojto 93:e188a91d3eaa 881 #define TIM_TRIGGERPRESCALER_DIV8 TIM_ETRPRESCALER_DIV8 /*!< Prescaler for External ETR Trigger: Capture performed once every 8 events. */
Kojto 93:e188a91d3eaa 882
Kojto 93:e188a91d3eaa 883 #define IS_TIM_TRIGGERPRESCALER(PRESCALER) (((PRESCALER) == TIM_TRIGGERPRESCALER_DIV1) || \
Kojto 93:e188a91d3eaa 884 ((PRESCALER) == TIM_TRIGGERPRESCALER_DIV2) || \
Kojto 93:e188a91d3eaa 885 ((PRESCALER) == TIM_TRIGGERPRESCALER_DIV4) || \
Kojto 93:e188a91d3eaa 886 ((PRESCALER) == TIM_TRIGGERPRESCALER_DIV8))
Kojto 93:e188a91d3eaa 887 /**
Kojto 93:e188a91d3eaa 888 * @}
Kojto 93:e188a91d3eaa 889 */
Kojto 93:e188a91d3eaa 890
Kojto 93:e188a91d3eaa 891 /** @defgroup TIM_Trigger_Filter TIM Trigger Filter
Kojto 93:e188a91d3eaa 892 * @{
Kojto 93:e188a91d3eaa 893 */
Kojto 93:e188a91d3eaa 894
Kojto 93:e188a91d3eaa 895 #define IS_TIM_TRIGGERFILTER(ICFILTER) ((ICFILTER) <= 0xF)
Kojto 93:e188a91d3eaa 896 /**
Kojto 93:e188a91d3eaa 897 * @}
Kojto 93:e188a91d3eaa 898 */
Kojto 93:e188a91d3eaa 899
Kojto 93:e188a91d3eaa 900 /** @defgroup TIM_TI1_Selection TIM TI1 Input Selection
Kojto 93:e188a91d3eaa 901 * @{
Kojto 93:e188a91d3eaa 902 */
Kojto 93:e188a91d3eaa 903
Kojto 93:e188a91d3eaa 904 #define TIM_TI1SELECTION_CH1 ((uint32_t)0x0000)
Kojto 93:e188a91d3eaa 905 #define TIM_TI1SELECTION_XORCOMBINATION (TIM_CR2_TI1S)
Kojto 93:e188a91d3eaa 906
Kojto 93:e188a91d3eaa 907 #define IS_TIM_TI1SELECTION(TI1SELECTION) (((TI1SELECTION) == TIM_TI1SELECTION_CH1) || \
Kojto 93:e188a91d3eaa 908 ((TI1SELECTION) == TIM_TI1SELECTION_XORCOMBINATION))
Kojto 93:e188a91d3eaa 909
Kojto 93:e188a91d3eaa 910 /**
Kojto 93:e188a91d3eaa 911 * @}
Kojto 93:e188a91d3eaa 912 */
Kojto 93:e188a91d3eaa 913
Kojto 93:e188a91d3eaa 914 /** @defgroup TIM_DMA_Burst_Length TIM DMA Burst Length
Kojto 93:e188a91d3eaa 915 * @{
Kojto 93:e188a91d3eaa 916 */
Kojto 93:e188a91d3eaa 917
Kojto 93:e188a91d3eaa 918 #define TIM_DMABurstLength_1Transfer (0x00000000)
Kojto 93:e188a91d3eaa 919 #define TIM_DMABurstLength_2Transfers (0x00000100)
Kojto 93:e188a91d3eaa 920 #define TIM_DMABurstLength_3Transfers (0x00000200)
Kojto 93:e188a91d3eaa 921 #define TIM_DMABurstLength_4Transfers (0x00000300)
Kojto 93:e188a91d3eaa 922 #define TIM_DMABurstLength_5Transfers (0x00000400)
Kojto 93:e188a91d3eaa 923 #define TIM_DMABurstLength_6Transfers (0x00000500)
Kojto 93:e188a91d3eaa 924 #define TIM_DMABurstLength_7Transfers (0x00000600)
Kojto 93:e188a91d3eaa 925 #define TIM_DMABurstLength_8Transfers (0x00000700)
Kojto 93:e188a91d3eaa 926 #define TIM_DMABurstLength_9Transfers (0x00000800)
Kojto 93:e188a91d3eaa 927 #define TIM_DMABurstLength_10Transfers (0x00000900)
Kojto 93:e188a91d3eaa 928 #define TIM_DMABurstLength_11Transfers (0x00000A00)
Kojto 93:e188a91d3eaa 929 #define TIM_DMABurstLength_12Transfers (0x00000B00)
Kojto 93:e188a91d3eaa 930 #define TIM_DMABurstLength_13Transfers (0x00000C00)
Kojto 93:e188a91d3eaa 931 #define TIM_DMABurstLength_14Transfers (0x00000D00)
Kojto 93:e188a91d3eaa 932 #define TIM_DMABurstLength_15Transfers (0x00000E00)
Kojto 93:e188a91d3eaa 933 #define TIM_DMABurstLength_16Transfers (0x00000F00)
Kojto 93:e188a91d3eaa 934 #define TIM_DMABurstLength_17Transfers (0x00001000)
Kojto 93:e188a91d3eaa 935 #define TIM_DMABurstLength_18Transfers (0x00001100)
Kojto 93:e188a91d3eaa 936 #define IS_TIM_DMA_LENGTH(LENGTH) (((LENGTH) == TIM_DMABurstLength_1Transfer) || \
Kojto 93:e188a91d3eaa 937 ((LENGTH) == TIM_DMABurstLength_2Transfers) || \
Kojto 93:e188a91d3eaa 938 ((LENGTH) == TIM_DMABurstLength_3Transfers) || \
Kojto 93:e188a91d3eaa 939 ((LENGTH) == TIM_DMABurstLength_4Transfers) || \
Kojto 93:e188a91d3eaa 940 ((LENGTH) == TIM_DMABurstLength_5Transfers) || \
Kojto 93:e188a91d3eaa 941 ((LENGTH) == TIM_DMABurstLength_6Transfers) || \
Kojto 93:e188a91d3eaa 942 ((LENGTH) == TIM_DMABurstLength_7Transfers) || \
Kojto 93:e188a91d3eaa 943 ((LENGTH) == TIM_DMABurstLength_8Transfers) || \
Kojto 93:e188a91d3eaa 944 ((LENGTH) == TIM_DMABurstLength_9Transfers) || \
Kojto 93:e188a91d3eaa 945 ((LENGTH) == TIM_DMABurstLength_10Transfers) || \
Kojto 93:e188a91d3eaa 946 ((LENGTH) == TIM_DMABurstLength_11Transfers) || \
Kojto 93:e188a91d3eaa 947 ((LENGTH) == TIM_DMABurstLength_12Transfers) || \
Kojto 93:e188a91d3eaa 948 ((LENGTH) == TIM_DMABurstLength_13Transfers) || \
Kojto 93:e188a91d3eaa 949 ((LENGTH) == TIM_DMABurstLength_14Transfers) || \
Kojto 93:e188a91d3eaa 950 ((LENGTH) == TIM_DMABurstLength_15Transfers) || \
Kojto 93:e188a91d3eaa 951 ((LENGTH) == TIM_DMABurstLength_16Transfers) || \
Kojto 93:e188a91d3eaa 952 ((LENGTH) == TIM_DMABurstLength_17Transfers) || \
Kojto 93:e188a91d3eaa 953 ((LENGTH) == TIM_DMABurstLength_18Transfers))
Kojto 93:e188a91d3eaa 954 /**
Kojto 93:e188a91d3eaa 955 * @}
Kojto 93:e188a91d3eaa 956 */
Kojto 93:e188a91d3eaa 957
Kojto 93:e188a91d3eaa 958 /** @defgroup TIM_Input_Capture_Filer_Value TIM Input Capture Value
Kojto 93:e188a91d3eaa 959 * @{
Kojto 93:e188a91d3eaa 960 */
Kojto 93:e188a91d3eaa 961
Kojto 93:e188a91d3eaa 962 #define IS_TIM_IC_FILTER(ICFILTER) ((ICFILTER) <= 0xF)
Kojto 93:e188a91d3eaa 963 /**
Kojto 93:e188a91d3eaa 964 * @}
Kojto 93:e188a91d3eaa 965 */
Kojto 93:e188a91d3eaa 966
Kojto 93:e188a91d3eaa 967 /** @defgroup DMA_Handle_index TIM DMA Handle Index
Kojto 93:e188a91d3eaa 968 * @{
Kojto 93:e188a91d3eaa 969 */
Kojto 93:e188a91d3eaa 970 #define TIM_DMA_ID_UPDATE ((uint16_t) 0x0) /*!< Index of the DMA handle used for Update DMA requests */
Kojto 93:e188a91d3eaa 971 #define TIM_DMA_ID_CC1 ((uint16_t) 0x1) /*!< Index of the DMA handle used for Capture/Compare 1 DMA requests */
Kojto 93:e188a91d3eaa 972 #define TIM_DMA_ID_CC2 ((uint16_t) 0x2) /*!< Index of the DMA handle used for Capture/Compare 2 DMA requests */
Kojto 93:e188a91d3eaa 973 #define TIM_DMA_ID_CC3 ((uint16_t) 0x3) /*!< Index of the DMA handle used for Capture/Compare 3 DMA requests */
Kojto 93:e188a91d3eaa 974 #define TIM_DMA_ID_CC4 ((uint16_t) 0x4) /*!< Index of the DMA handle used for Capture/Compare 4 DMA requests */
Kojto 93:e188a91d3eaa 975 #define TIM_DMA_ID_COMMUTATION ((uint16_t) 0x5) /*!< Index of the DMA handle used for Commutation DMA requests */
Kojto 93:e188a91d3eaa 976 #define TIM_DMA_ID_TRIGGER ((uint16_t) 0x6) /*!< Index of the DMA handle used for Trigger DMA requests */
Kojto 93:e188a91d3eaa 977 /**
Kojto 93:e188a91d3eaa 978 * @}
Kojto 93:e188a91d3eaa 979 */
Kojto 93:e188a91d3eaa 980
Kojto 93:e188a91d3eaa 981 /** @defgroup Channel_CC_State TIM Capture/Compare Channel State
Kojto 93:e188a91d3eaa 982 * @{
Kojto 93:e188a91d3eaa 983 */
Kojto 93:e188a91d3eaa 984 #define TIM_CCx_ENABLE ((uint32_t)0x0001)
Kojto 93:e188a91d3eaa 985 #define TIM_CCx_DISABLE ((uint32_t)0x0000)
Kojto 93:e188a91d3eaa 986 #define TIM_CCxN_ENABLE ((uint32_t)0x0004)
Kojto 93:e188a91d3eaa 987 #define TIM_CCxN_DISABLE ((uint32_t)0x0000)
Kojto 93:e188a91d3eaa 988 /**
Kojto 93:e188a91d3eaa 989 * @}
Kojto 93:e188a91d3eaa 990 */
Kojto 93:e188a91d3eaa 991
Kojto 93:e188a91d3eaa 992 /**
Kojto 93:e188a91d3eaa 993 * @}
Kojto 93:e188a91d3eaa 994 */
Kojto 93:e188a91d3eaa 995
Kojto 93:e188a91d3eaa 996 /* Exported macros -----------------------------------------------------------*/
Kojto 93:e188a91d3eaa 997 /** @defgroup TIM_Exported_Macros TIM Exported Macros
Kojto 93:e188a91d3eaa 998 * @{
Kojto 93:e188a91d3eaa 999 */
Kojto 93:e188a91d3eaa 1000
Kojto 93:e188a91d3eaa 1001 /** @brief Reset TIM handle state
Kojto 93:e188a91d3eaa 1002 * @param __HANDLE__: TIM handle.
Kojto 93:e188a91d3eaa 1003 * @retval None
Kojto 93:e188a91d3eaa 1004 */
Kojto 93:e188a91d3eaa 1005 #define __HAL_TIM_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_TIM_STATE_RESET)
Kojto 93:e188a91d3eaa 1006
Kojto 93:e188a91d3eaa 1007 /**
Kojto 93:e188a91d3eaa 1008 * @brief Enable the TIM peripheral.
Kojto 93:e188a91d3eaa 1009 * @param __HANDLE__: TIM handle
Kojto 93:e188a91d3eaa 1010 * @retval None
Kojto 93:e188a91d3eaa 1011 */
Kojto 93:e188a91d3eaa 1012 #define __HAL_TIM_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR1|=(TIM_CR1_CEN))
Kojto 93:e188a91d3eaa 1013
Kojto 93:e188a91d3eaa 1014 /**
Kojto 93:e188a91d3eaa 1015 * @brief Enable the TIM main Output.
Kojto 93:e188a91d3eaa 1016 * @param __HANDLE__: TIM handle
Kojto 93:e188a91d3eaa 1017 * @retval None
Kojto 93:e188a91d3eaa 1018 */
Kojto 93:e188a91d3eaa 1019 #define __HAL_TIM_MOE_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->BDTR|=(TIM_BDTR_MOE))
Kojto 93:e188a91d3eaa 1020
Kojto 93:e188a91d3eaa 1021 /* The counter of a timer instance is disabled only if all the CCx and CCxN
Kojto 93:e188a91d3eaa 1022 channels have been disabled */
Kojto 93:e188a91d3eaa 1023 #define CCER_CCxE_MASK ((uint32_t)(TIM_CCER_CC1E | TIM_CCER_CC2E | TIM_CCER_CC3E | TIM_CCER_CC4E))
Kojto 93:e188a91d3eaa 1024 #define CCER_CCxNE_MASK ((uint32_t)(TIM_CCER_CC1NE | TIM_CCER_CC2NE | TIM_CCER_CC3NE))
Kojto 93:e188a91d3eaa 1025
Kojto 93:e188a91d3eaa 1026 /**
Kojto 93:e188a91d3eaa 1027 * @brief Disable the TIM peripheral.
Kojto 93:e188a91d3eaa 1028 * @param __HANDLE__: TIM handle
Kojto 93:e188a91d3eaa 1029 * @retval None
Kojto 93:e188a91d3eaa 1030 */
Kojto 93:e188a91d3eaa 1031 #define __HAL_TIM_DISABLE(__HANDLE__) \
Kojto 93:e188a91d3eaa 1032 do { \
Kojto 93:e188a91d3eaa 1033 if (((__HANDLE__)->Instance->CCER & CCER_CCxE_MASK) == 0) \
Kojto 93:e188a91d3eaa 1034 { \
Kojto 93:e188a91d3eaa 1035 if(((__HANDLE__)->Instance->CCER & CCER_CCxNE_MASK) == 0) \
Kojto 93:e188a91d3eaa 1036 { \
Kojto 93:e188a91d3eaa 1037 (__HANDLE__)->Instance->CR1 &= ~(TIM_CR1_CEN); \
Kojto 93:e188a91d3eaa 1038 } \
Kojto 93:e188a91d3eaa 1039 } \
Kojto 93:e188a91d3eaa 1040 } while(0)
Kojto 93:e188a91d3eaa 1041 /* The Main Output Enable of a timer instance is disabled only if all the CCx and CCxN
Kojto 93:e188a91d3eaa 1042 channels have been disabled */
Kojto 93:e188a91d3eaa 1043 /**
Kojto 93:e188a91d3eaa 1044 * @brief Disable the TIM main Output.
Kojto 93:e188a91d3eaa 1045 * @param __HANDLE__: TIM handle
Kojto 93:e188a91d3eaa 1046 * @retval None
Kojto 93:e188a91d3eaa 1047 */
Kojto 93:e188a91d3eaa 1048 #define __HAL_TIM_MOE_DISABLE(__HANDLE__) \
Kojto 93:e188a91d3eaa 1049 do { \
Kojto 93:e188a91d3eaa 1050 if (((__HANDLE__)->Instance->CCER & CCER_CCxE_MASK) == 0) \
Kojto 93:e188a91d3eaa 1051 { \
Kojto 93:e188a91d3eaa 1052 if(((__HANDLE__)->Instance->CCER & CCER_CCxNE_MASK) == 0) \
Kojto 93:e188a91d3eaa 1053 { \
Kojto 93:e188a91d3eaa 1054 (__HANDLE__)->Instance->BDTR &= ~(TIM_BDTR_MOE); \
Kojto 93:e188a91d3eaa 1055 } \
Kojto 93:e188a91d3eaa 1056 } \
Kojto 93:e188a91d3eaa 1057 } while(0)
Kojto 93:e188a91d3eaa 1058
Kojto 93:e188a91d3eaa 1059 #define __HAL_TIM_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->DIER |= (__INTERRUPT__))
Kojto 93:e188a91d3eaa 1060 #define __HAL_TIM_ENABLE_DMA(__HANDLE__, __DMA__) ((__HANDLE__)->Instance->DIER |= (__DMA__))
Kojto 93:e188a91d3eaa 1061 #define __HAL_TIM_DISABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->DIER &= ~(__INTERRUPT__))
Kojto 93:e188a91d3eaa 1062 #define __HAL_TIM_DISABLE_DMA(__HANDLE__, __DMA__) ((__HANDLE__)->Instance->DIER &= ~(__DMA__))
Kojto 93:e188a91d3eaa 1063 #define __HAL_TIM_GET_FLAG(__HANDLE__, __FLAG__) (((__HANDLE__)->Instance->SR &(__FLAG__)) == (__FLAG__))
Kojto 93:e188a91d3eaa 1064 #define __HAL_TIM_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->SR = ~(__FLAG__))
Kojto 93:e188a91d3eaa 1065
Kojto 93:e188a91d3eaa 1066 #define __HAL_TIM_GET_ITSTATUS(__HANDLE__, __INTERRUPT__) ((((__HANDLE__)->Instance->DIER & (__INTERRUPT__)) == (__INTERRUPT__)) ? SET : RESET)
Kojto 93:e188a91d3eaa 1067 #define __HAL_TIM_CLEAR_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->SR = ~(__INTERRUPT__))
Kojto 93:e188a91d3eaa 1068
Kojto 93:e188a91d3eaa 1069 #define __HAL_TIM_DIRECTION_STATUS(__HANDLE__) (((__HANDLE__)->Instance->CR1 &(TIM_CR1_DIR)) == (TIM_CR1_DIR))
Kojto 93:e188a91d3eaa 1070 #define __HAL_TIM_PRESCALER (__HANDLE__, __PRESC__) ((__HANDLE__)->Instance->PSC = (__PRESC__))
Kojto 93:e188a91d3eaa 1071
Kojto 93:e188a91d3eaa 1072 #define __HAL_TIM_SetICPrescalerValue(__HANDLE__, __CHANNEL__, __ICPSC__) \
Kojto 93:e188a91d3eaa 1073 (((__CHANNEL__) == TIM_CHANNEL_1) ? ((__HANDLE__)->Instance->CCMR1 |= (__ICPSC__)) :\
Kojto 93:e188a91d3eaa 1074 ((__CHANNEL__) == TIM_CHANNEL_2) ? ((__HANDLE__)->Instance->CCMR1 |= ((__ICPSC__) << 8)) :\
Kojto 93:e188a91d3eaa 1075 ((__CHANNEL__) == TIM_CHANNEL_3) ? ((__HANDLE__)->Instance->CCMR2 |= (__ICPSC__)) :\
Kojto 93:e188a91d3eaa 1076 ((__HANDLE__)->Instance->CCMR2 |= ((__ICPSC__) << 8)))
Kojto 93:e188a91d3eaa 1077
Kojto 93:e188a91d3eaa 1078 #define __HAL_TIM_ResetICPrescalerValue(__HANDLE__, __CHANNEL__) \
Kojto 93:e188a91d3eaa 1079 (((__CHANNEL__) == TIM_CHANNEL_1) ? ((__HANDLE__)->Instance->CCMR1 &= (uint16_t)~TIM_CCMR1_IC1PSC) :\
Kojto 93:e188a91d3eaa 1080 ((__CHANNEL__) == TIM_CHANNEL_2) ? ((__HANDLE__)->Instance->CCMR1 &= (uint16_t)~TIM_CCMR1_IC2PSC) :\
Kojto 93:e188a91d3eaa 1081 ((__CHANNEL__) == TIM_CHANNEL_3) ? ((__HANDLE__)->Instance->CCMR2 &= (uint16_t)~TIM_CCMR2_IC3PSC) :\
Kojto 93:e188a91d3eaa 1082 ((__HANDLE__)->Instance->CCMR2 &= (uint16_t)~TIM_CCMR2_IC4PSC))
Kojto 93:e188a91d3eaa 1083
Kojto 93:e188a91d3eaa 1084 /**
Kojto 93:e188a91d3eaa 1085 * @brief Sets the TIM Counter Register value on runtime.
Kojto 93:e188a91d3eaa 1086 * @param __HANDLE__: TIM handle.
Kojto 93:e188a91d3eaa 1087 * @param __COUNTER__: specifies the Counter register new value.
Kojto 93:e188a91d3eaa 1088 * @retval None
Kojto 93:e188a91d3eaa 1089 */
Kojto 93:e188a91d3eaa 1090 #define __HAL_TIM_SetCounter(__HANDLE__, __COUNTER__) ((__HANDLE__)->Instance->CNT = (__COUNTER__))
Kojto 93:e188a91d3eaa 1091
Kojto 93:e188a91d3eaa 1092 /**
Kojto 93:e188a91d3eaa 1093 * @brief Gets the TIM Counter Register value on runtime.
Kojto 93:e188a91d3eaa 1094 * @param __HANDLE__: TIM handle.
Kojto 93:e188a91d3eaa 1095 * @retval None
Kojto 93:e188a91d3eaa 1096 */
Kojto 93:e188a91d3eaa 1097 #define __HAL_TIM_GetCounter(__HANDLE__) \
Kojto 93:e188a91d3eaa 1098 ((__HANDLE__)->Instance->CNT)
Kojto 93:e188a91d3eaa 1099
Kojto 93:e188a91d3eaa 1100 /**
Kojto 93:e188a91d3eaa 1101 * @brief Sets the TIM Autoreload Register value on runtime without calling
Kojto 93:e188a91d3eaa 1102 * another time any Init function.
Kojto 93:e188a91d3eaa 1103 * @param __HANDLE__: TIM handle.
Kojto 93:e188a91d3eaa 1104 * @param __AUTORELOAD__: specifies the Counter register new value.
Kojto 93:e188a91d3eaa 1105 * @retval None
Kojto 93:e188a91d3eaa 1106 */
Kojto 93:e188a91d3eaa 1107 #define __HAL_TIM_SetAutoreload(__HANDLE__, __AUTORELOAD__) \
Kojto 93:e188a91d3eaa 1108 do{ \
Kojto 93:e188a91d3eaa 1109 (__HANDLE__)->Instance->ARR = (__AUTORELOAD__); \
Kojto 93:e188a91d3eaa 1110 (__HANDLE__)->Init.Period = (__AUTORELOAD__); \
Kojto 93:e188a91d3eaa 1111 } while(0)
Kojto 93:e188a91d3eaa 1112
Kojto 93:e188a91d3eaa 1113 /**
Kojto 93:e188a91d3eaa 1114 * @brief Gets the TIM Autoreload Register value on runtime
Kojto 93:e188a91d3eaa 1115 * @param __HANDLE__: TIM handle.
Kojto 93:e188a91d3eaa 1116 * @retval None
Kojto 93:e188a91d3eaa 1117 */
Kojto 93:e188a91d3eaa 1118 #define __HAL_TIM_GetAutoreload(__HANDLE__) \
Kojto 93:e188a91d3eaa 1119 ((__HANDLE__)->Instance->ARR)
Kojto 93:e188a91d3eaa 1120
Kojto 93:e188a91d3eaa 1121 /**
Kojto 93:e188a91d3eaa 1122 * @brief Sets the TIM Clock Division value on runtime without calling
Kojto 93:e188a91d3eaa 1123 * another time any Init function.
Kojto 93:e188a91d3eaa 1124 * @param __HANDLE__: TIM handle.
Kojto 93:e188a91d3eaa 1125 * @param __CKD__: specifies the clock division value.
Kojto 93:e188a91d3eaa 1126 * This parameter can be one of the following value:
Kojto 93:e188a91d3eaa 1127 * @arg TIM_CLOCKDIVISION_DIV1
Kojto 93:e188a91d3eaa 1128 * @arg TIM_CLOCKDIVISION_DIV2
Kojto 93:e188a91d3eaa 1129 * @arg TIM_CLOCKDIVISION_DIV4
Kojto 93:e188a91d3eaa 1130 * @retval None
Kojto 93:e188a91d3eaa 1131 */
Kojto 93:e188a91d3eaa 1132 #define __HAL_TIM_SetClockDivision(__HANDLE__, __CKD__) \
Kojto 93:e188a91d3eaa 1133 do{ \
Kojto 93:e188a91d3eaa 1134 (__HANDLE__)->Instance->CR1 &= (uint16_t)(~TIM_CR1_CKD); \
Kojto 93:e188a91d3eaa 1135 (__HANDLE__)->Instance->CR1 |= (__CKD__); \
Kojto 93:e188a91d3eaa 1136 (__HANDLE__)->Init.ClockDivision = (__CKD__); \
Kojto 93:e188a91d3eaa 1137 } while(0)
Kojto 93:e188a91d3eaa 1138
Kojto 93:e188a91d3eaa 1139 /**
Kojto 93:e188a91d3eaa 1140 * @brief Gets the TIM Clock Division value on runtime
Kojto 93:e188a91d3eaa 1141 * @param __HANDLE__: TIM handle.
Kojto 93:e188a91d3eaa 1142 * @retval None
Kojto 93:e188a91d3eaa 1143 */
Kojto 93:e188a91d3eaa 1144 #define __HAL_TIM_GetClockDivision(__HANDLE__) \
Kojto 93:e188a91d3eaa 1145 ((__HANDLE__)->Instance->CR1 & TIM_CR1_CKD)
Kojto 93:e188a91d3eaa 1146
Kojto 93:e188a91d3eaa 1147 /**
Kojto 93:e188a91d3eaa 1148 * @brief Sets the TIM Input Capture prescaler on runtime without calling
Kojto 93:e188a91d3eaa 1149 * another time HAL_TIM_IC_ConfigChannel() function.
Kojto 93:e188a91d3eaa 1150 * @param __HANDLE__: TIM handle.
Kojto 93:e188a91d3eaa 1151 * @param __CHANNEL__ : TIM Channels to be configured.
Kojto 93:e188a91d3eaa 1152 * This parameter can be one of the following values:
Kojto 93:e188a91d3eaa 1153 * @arg TIM_CHANNEL_1: TIM Channel 1 selected
Kojto 93:e188a91d3eaa 1154 * @arg TIM_CHANNEL_2: TIM Channel 2 selected
Kojto 93:e188a91d3eaa 1155 * @arg TIM_CHANNEL_3: TIM Channel 3 selected
Kojto 93:e188a91d3eaa 1156 * @arg TIM_CHANNEL_4: TIM Channel 4 selected
Kojto 93:e188a91d3eaa 1157 * @param __ICPSC__: specifies the Input Capture4 prescaler new value.
Kojto 93:e188a91d3eaa 1158 * This parameter can be one of the following values:
Kojto 93:e188a91d3eaa 1159 * @arg TIM_ICPSC_DIV1: no prescaler
Kojto 93:e188a91d3eaa 1160 * @arg TIM_ICPSC_DIV2: capture is done once every 2 events
Kojto 93:e188a91d3eaa 1161 * @arg TIM_ICPSC_DIV4: capture is done once every 4 events
Kojto 93:e188a91d3eaa 1162 * @arg TIM_ICPSC_DIV8: capture is done once every 8 events
Kojto 93:e188a91d3eaa 1163 * @retval None
Kojto 93:e188a91d3eaa 1164 */
Kojto 93:e188a91d3eaa 1165 #define __HAL_TIM_SetICPrescaler(__HANDLE__, __CHANNEL__, __ICPSC__) \
Kojto 93:e188a91d3eaa 1166 do{ \
Kojto 93:e188a91d3eaa 1167 __HAL_TIM_ResetICPrescalerValue((__HANDLE__), (__CHANNEL__)); \
Kojto 93:e188a91d3eaa 1168 __HAL_TIM_SetICPrescalerValue((__HANDLE__), (__CHANNEL__), (__ICPSC__)); \
Kojto 93:e188a91d3eaa 1169 } while(0)
Kojto 93:e188a91d3eaa 1170
Kojto 93:e188a91d3eaa 1171 /**
Kojto 93:e188a91d3eaa 1172 * @brief Gets the TIM Input Capture prescaler on runtime
Kojto 93:e188a91d3eaa 1173 * @param __HANDLE__: TIM handle.
Kojto 93:e188a91d3eaa 1174 * @param __CHANNEL__ : TIM Channels to be configured.
Kojto 93:e188a91d3eaa 1175 * This parameter can be one of the following values:
Kojto 93:e188a91d3eaa 1176 * @arg TIM_CHANNEL_1: get input capture 1 prescaler value
Kojto 93:e188a91d3eaa 1177 * @arg TIM_CHANNEL_2: get input capture 2 prescaler value
Kojto 93:e188a91d3eaa 1178 * @arg TIM_CHANNEL_3: get input capture 3 prescaler value
Kojto 93:e188a91d3eaa 1179 * @arg TIM_CHANNEL_4: get input capture 4 prescaler value
Kojto 93:e188a91d3eaa 1180 * @retval None
Kojto 93:e188a91d3eaa 1181 */
Kojto 93:e188a91d3eaa 1182 #define __HAL_TIM_GetICPrescaler(__HANDLE__, __CHANNEL__) \
Kojto 93:e188a91d3eaa 1183 (((__CHANNEL__) == TIM_CHANNEL_1) ? ((__HANDLE__)->Instance->CCMR1 & TIM_CCMR1_IC1PSC) :\
Kojto 93:e188a91d3eaa 1184 ((__CHANNEL__) == TIM_CHANNEL_2) ? (((__HANDLE__)->Instance->CCMR1 & TIM_CCMR1_IC2PSC) >> 8) :\
Kojto 93:e188a91d3eaa 1185 ((__CHANNEL__) == TIM_CHANNEL_3) ? ((__HANDLE__)->Instance->CCMR2 & TIM_CCMR2_IC3PSC) :\
Kojto 93:e188a91d3eaa 1186 (((__HANDLE__)->Instance->CCMR2 & TIM_CCMR2_IC4PSC)) >> 8)
Kojto 93:e188a91d3eaa 1187
Kojto 93:e188a91d3eaa 1188 /**
Kojto 93:e188a91d3eaa 1189 * @brief Set the Update Request Source (URS) bit of the TIMx_CR1 register
Kojto 93:e188a91d3eaa 1190 * @param __HANDLE__: TIM handle.
Kojto 93:e188a91d3eaa 1191 * @note When the USR bit of the TIMx_CR1 register is set, only counter
Kojto 93:e188a91d3eaa 1192 * overflow/underflow generates an update interrupt or DMA request (if
Kojto 93:e188a91d3eaa 1193 * enabled)
Kojto 93:e188a91d3eaa 1194 * @retval None
Kojto 93:e188a91d3eaa 1195 */
Kojto 93:e188a91d3eaa 1196 #define __HAL_TIM_URS_ENABLE(__HANDLE__) \
Kojto 93:e188a91d3eaa 1197 ((__HANDLE__)->Instance->CR1|= (TIM_CR1_URS))
Kojto 93:e188a91d3eaa 1198
Kojto 93:e188a91d3eaa 1199 /**
Kojto 93:e188a91d3eaa 1200 * @brief Reset the Update Request Source (URS) bit of the TIMx_CR1 register
Kojto 93:e188a91d3eaa 1201 * @param __HANDLE__: TIM handle.
Kojto 93:e188a91d3eaa 1202 * @note When the USR bit of the TIMx_CR1 register is reset, any of the
Kojto 93:e188a91d3eaa 1203 * following events generate an update interrupt or DMA request (if
Kojto 93:e188a91d3eaa 1204 * enabled):
Kojto 93:e188a91d3eaa 1205 * – Counter overflow/underflow
Kojto 93:e188a91d3eaa 1206 * – Setting the UG bit
Kojto 93:e188a91d3eaa 1207 * – Update generation through the slave mode controller
Kojto 93:e188a91d3eaa 1208 * @retval None
Kojto 93:e188a91d3eaa 1209 */
Kojto 93:e188a91d3eaa 1210 #define __HAL_TIM_URS_DISABLE(__HANDLE__) \
Kojto 93:e188a91d3eaa 1211 ((__HANDLE__)->Instance->CR1&=~(TIM_CR1_URS))
Kojto 93:e188a91d3eaa 1212
Kojto 93:e188a91d3eaa 1213 /**
Kojto 93:e188a91d3eaa 1214 * @}
Kojto 93:e188a91d3eaa 1215 */
Kojto 93:e188a91d3eaa 1216
Kojto 93:e188a91d3eaa 1217 /* Include TIM HAL Extended module */
Kojto 93:e188a91d3eaa 1218 #include "stm32f3xx_hal_tim_ex.h"
Kojto 93:e188a91d3eaa 1219
Kojto 93:e188a91d3eaa 1220 /* Exported functions --------------------------------------------------------*/
Kojto 93:e188a91d3eaa 1221 /** @addtogroup TIM_Exported_Functions TIM Exported Functions
Kojto 93:e188a91d3eaa 1222 * @{
Kojto 93:e188a91d3eaa 1223 */
Kojto 93:e188a91d3eaa 1224
Kojto 93:e188a91d3eaa 1225 /** @addtogroup TIM_Exported_Functions_Group1 Time Base functions
Kojto 93:e188a91d3eaa 1226 * @brief Time Base functions
Kojto 93:e188a91d3eaa 1227 * @{
Kojto 93:e188a91d3eaa 1228 */
Kojto 93:e188a91d3eaa 1229 /* Time Base functions ********************************************************/
Kojto 93:e188a91d3eaa 1230 HAL_StatusTypeDef HAL_TIM_Base_Init(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1231 HAL_StatusTypeDef HAL_TIM_Base_DeInit(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1232 void HAL_TIM_Base_MspInit(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1233 void HAL_TIM_Base_MspDeInit(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1234 /* Blocking mode: Polling */
Kojto 93:e188a91d3eaa 1235 HAL_StatusTypeDef HAL_TIM_Base_Start(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1236 HAL_StatusTypeDef HAL_TIM_Base_Stop(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1237 /* Non-Blocking mode: Interrupt */
Kojto 93:e188a91d3eaa 1238 HAL_StatusTypeDef HAL_TIM_Base_Start_IT(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1239 HAL_StatusTypeDef HAL_TIM_Base_Stop_IT(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1240 /* Non-Blocking mode: DMA */
Kojto 93:e188a91d3eaa 1241 HAL_StatusTypeDef HAL_TIM_Base_Start_DMA(TIM_HandleTypeDef *htim, uint32_t *pData, uint16_t Length);
Kojto 93:e188a91d3eaa 1242 HAL_StatusTypeDef HAL_TIM_Base_Stop_DMA(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1243 /**
Kojto 93:e188a91d3eaa 1244 * @}
Kojto 93:e188a91d3eaa 1245 */
Kojto 93:e188a91d3eaa 1246
Kojto 93:e188a91d3eaa 1247 /** @addtogroup TIM_Exported_Functions_Group2 Time Output Compare functions
Kojto 93:e188a91d3eaa 1248 * @brief Time Output Compare functions
Kojto 93:e188a91d3eaa 1249 * @{
Kojto 93:e188a91d3eaa 1250 */
Kojto 93:e188a91d3eaa 1251 /* Timer Output Compare functions **********************************************/
Kojto 93:e188a91d3eaa 1252 HAL_StatusTypeDef HAL_TIM_OC_Init(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1253 HAL_StatusTypeDef HAL_TIM_OC_DeInit(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1254 void HAL_TIM_OC_MspInit(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1255 void HAL_TIM_OC_MspDeInit(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1256 /* Blocking mode: Polling */
Kojto 93:e188a91d3eaa 1257 HAL_StatusTypeDef HAL_TIM_OC_Start(TIM_HandleTypeDef *htim, uint32_t Channel);
Kojto 93:e188a91d3eaa 1258 HAL_StatusTypeDef HAL_TIM_OC_Stop(TIM_HandleTypeDef *htim, uint32_t Channel);
Kojto 93:e188a91d3eaa 1259 /* Non-Blocking mode: Interrupt */
Kojto 93:e188a91d3eaa 1260 HAL_StatusTypeDef HAL_TIM_OC_Start_IT(TIM_HandleTypeDef *htim, uint32_t Channel);
Kojto 93:e188a91d3eaa 1261 HAL_StatusTypeDef HAL_TIM_OC_Stop_IT(TIM_HandleTypeDef *htim, uint32_t Channel);
Kojto 93:e188a91d3eaa 1262 /* Non-Blocking mode: DMA */
Kojto 93:e188a91d3eaa 1263 HAL_StatusTypeDef HAL_TIM_OC_Start_DMA(TIM_HandleTypeDef *htim, uint32_t Channel, uint32_t *pData, uint16_t Length);
Kojto 93:e188a91d3eaa 1264 HAL_StatusTypeDef HAL_TIM_OC_Stop_DMA(TIM_HandleTypeDef *htim, uint32_t Channel);
Kojto 93:e188a91d3eaa 1265 /**
Kojto 93:e188a91d3eaa 1266 * @}
Kojto 93:e188a91d3eaa 1267 */
Kojto 93:e188a91d3eaa 1268
Kojto 93:e188a91d3eaa 1269 /** @addtogroup TIM_Exported_Functions_Group3 Time PWM functions
Kojto 93:e188a91d3eaa 1270 * @brief Time PWM functions
Kojto 93:e188a91d3eaa 1271 * @{
Kojto 93:e188a91d3eaa 1272 */
Kojto 93:e188a91d3eaa 1273 /* Timer PWM functions *********************************************************/
Kojto 93:e188a91d3eaa 1274 HAL_StatusTypeDef HAL_TIM_PWM_Init(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1275 HAL_StatusTypeDef HAL_TIM_PWM_DeInit(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1276 void HAL_TIM_PWM_MspInit(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1277 void HAL_TIM_PWM_MspDeInit(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1278 /* Blocking mode: Polling */
Kojto 93:e188a91d3eaa 1279 HAL_StatusTypeDef HAL_TIM_PWM_Start(TIM_HandleTypeDef *htim, uint32_t Channel);
Kojto 93:e188a91d3eaa 1280 HAL_StatusTypeDef HAL_TIM_PWM_Stop(TIM_HandleTypeDef *htim, uint32_t Channel);
Kojto 93:e188a91d3eaa 1281 /* Non-Blocking mode: Interrupt */
Kojto 93:e188a91d3eaa 1282 HAL_StatusTypeDef HAL_TIM_PWM_Start_IT(TIM_HandleTypeDef *htim, uint32_t Channel);
Kojto 93:e188a91d3eaa 1283 HAL_StatusTypeDef HAL_TIM_PWM_Stop_IT(TIM_HandleTypeDef *htim, uint32_t Channel);
Kojto 93:e188a91d3eaa 1284 /* Non-Blocking mode: DMA */
Kojto 93:e188a91d3eaa 1285 HAL_StatusTypeDef HAL_TIM_PWM_Start_DMA(TIM_HandleTypeDef *htim, uint32_t Channel, uint32_t *pData, uint16_t Length);
Kojto 93:e188a91d3eaa 1286 HAL_StatusTypeDef HAL_TIM_PWM_Stop_DMA(TIM_HandleTypeDef *htim, uint32_t Channel);
Kojto 93:e188a91d3eaa 1287 /**
Kojto 93:e188a91d3eaa 1288 * @}
Kojto 93:e188a91d3eaa 1289 */
Kojto 93:e188a91d3eaa 1290
Kojto 93:e188a91d3eaa 1291 /** @addtogroup TIM_Exported_Functions_Group4 Time Input Capture functions
Kojto 93:e188a91d3eaa 1292 * @brief Time Input Capture functions
Kojto 93:e188a91d3eaa 1293 * @{
Kojto 93:e188a91d3eaa 1294 */
Kojto 93:e188a91d3eaa 1295 /* Timer Input Capture functions ***********************************************/
Kojto 93:e188a91d3eaa 1296 HAL_StatusTypeDef HAL_TIM_IC_Init(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1297 HAL_StatusTypeDef HAL_TIM_IC_DeInit(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1298 void HAL_TIM_IC_MspInit(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1299 void HAL_TIM_IC_MspDeInit(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1300 /* Blocking mode: Polling */
Kojto 93:e188a91d3eaa 1301 HAL_StatusTypeDef HAL_TIM_IC_Start(TIM_HandleTypeDef *htim, uint32_t Channel);
Kojto 93:e188a91d3eaa 1302 HAL_StatusTypeDef HAL_TIM_IC_Stop(TIM_HandleTypeDef *htim, uint32_t Channel);
Kojto 93:e188a91d3eaa 1303 /* Non-Blocking mode: Interrupt */
Kojto 93:e188a91d3eaa 1304 HAL_StatusTypeDef HAL_TIM_IC_Start_IT(TIM_HandleTypeDef *htim, uint32_t Channel);
Kojto 93:e188a91d3eaa 1305 HAL_StatusTypeDef HAL_TIM_IC_Stop_IT(TIM_HandleTypeDef *htim, uint32_t Channel);
Kojto 93:e188a91d3eaa 1306 /* Non-Blocking mode: DMA */
Kojto 93:e188a91d3eaa 1307 HAL_StatusTypeDef HAL_TIM_IC_Start_DMA(TIM_HandleTypeDef *htim, uint32_t Channel, uint32_t *pData, uint16_t Length);
Kojto 93:e188a91d3eaa 1308 HAL_StatusTypeDef HAL_TIM_IC_Stop_DMA(TIM_HandleTypeDef *htim, uint32_t Channel);
Kojto 93:e188a91d3eaa 1309 /**
Kojto 93:e188a91d3eaa 1310 * @}
Kojto 93:e188a91d3eaa 1311 */
Kojto 93:e188a91d3eaa 1312
Kojto 93:e188a91d3eaa 1313 /** @addtogroup TIM_Exported_Functions_Group5 Time One Pulse functions
Kojto 93:e188a91d3eaa 1314 * @brief Time One Pulse functions
Kojto 93:e188a91d3eaa 1315 * @{
Kojto 93:e188a91d3eaa 1316 */
Kojto 93:e188a91d3eaa 1317 /* Timer One Pulse functions ***************************************************/
Kojto 93:e188a91d3eaa 1318 HAL_StatusTypeDef HAL_TIM_OnePulse_Init(TIM_HandleTypeDef *htim, uint32_t OnePulseMode);
Kojto 93:e188a91d3eaa 1319 HAL_StatusTypeDef HAL_TIM_OnePulse_DeInit(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1320 void HAL_TIM_OnePulse_MspInit(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1321 void HAL_TIM_OnePulse_MspDeInit(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1322 /* Blocking mode: Polling */
Kojto 93:e188a91d3eaa 1323 HAL_StatusTypeDef HAL_TIM_OnePulse_Start(TIM_HandleTypeDef *htim, uint32_t OutputChannel);
Kojto 93:e188a91d3eaa 1324 HAL_StatusTypeDef HAL_TIM_OnePulse_Stop(TIM_HandleTypeDef *htim, uint32_t OutputChannel);
Kojto 93:e188a91d3eaa 1325 /* Non-Blocking mode: Interrupt */
Kojto 93:e188a91d3eaa 1326 HAL_StatusTypeDef HAL_TIM_OnePulse_Start_IT(TIM_HandleTypeDef *htim, uint32_t OutputChannel);
Kojto 93:e188a91d3eaa 1327 HAL_StatusTypeDef HAL_TIM_OnePulse_Stop_IT(TIM_HandleTypeDef *htim, uint32_t OutputChannel);
Kojto 93:e188a91d3eaa 1328 /**
Kojto 93:e188a91d3eaa 1329 * @}
Kojto 93:e188a91d3eaa 1330 */
Kojto 93:e188a91d3eaa 1331
Kojto 93:e188a91d3eaa 1332 /** @addtogroup TIM_Exported_Functions_Group6 Time Encoder functions
Kojto 93:e188a91d3eaa 1333 * @brief Time Encoder functions
Kojto 93:e188a91d3eaa 1334 * @{
Kojto 93:e188a91d3eaa 1335 */
Kojto 93:e188a91d3eaa 1336 /* Timer Encoder functions *****************************************************/
Kojto 93:e188a91d3eaa 1337 HAL_StatusTypeDef HAL_TIM_Encoder_Init(TIM_HandleTypeDef *htim, TIM_Encoder_InitTypeDef* sConfig);
Kojto 93:e188a91d3eaa 1338 HAL_StatusTypeDef HAL_TIM_Encoder_DeInit(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1339 void HAL_TIM_Encoder_MspInit(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1340 void HAL_TIM_Encoder_MspDeInit(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1341 /* Blocking mode: Polling */
Kojto 93:e188a91d3eaa 1342 HAL_StatusTypeDef HAL_TIM_Encoder_Start(TIM_HandleTypeDef *htim, uint32_t Channel);
Kojto 93:e188a91d3eaa 1343 HAL_StatusTypeDef HAL_TIM_Encoder_Stop(TIM_HandleTypeDef *htim, uint32_t Channel);
Kojto 93:e188a91d3eaa 1344 /* Non-Blocking mode: Interrupt */
Kojto 93:e188a91d3eaa 1345 HAL_StatusTypeDef HAL_TIM_Encoder_Start_IT(TIM_HandleTypeDef *htim, uint32_t Channel);
Kojto 93:e188a91d3eaa 1346 HAL_StatusTypeDef HAL_TIM_Encoder_Stop_IT(TIM_HandleTypeDef *htim, uint32_t Channel);
Kojto 93:e188a91d3eaa 1347 /* Non-Blocking mode: DMA */
Kojto 93:e188a91d3eaa 1348 HAL_StatusTypeDef HAL_TIM_Encoder_Start_DMA(TIM_HandleTypeDef *htim, uint32_t Channel, uint32_t *pData1, uint32_t *pData2, uint16_t Length);
Kojto 93:e188a91d3eaa 1349 HAL_StatusTypeDef HAL_TIM_Encoder_Stop_DMA(TIM_HandleTypeDef *htim, uint32_t Channel);
Kojto 93:e188a91d3eaa 1350 /**
Kojto 93:e188a91d3eaa 1351 * @}
Kojto 93:e188a91d3eaa 1352 */
Kojto 93:e188a91d3eaa 1353
Kojto 93:e188a91d3eaa 1354 /** @addtogroup TIM_Exported_Functions_Group7 TIM IRQ handler management
Kojto 93:e188a91d3eaa 1355 * @brief IRQ handler management
Kojto 93:e188a91d3eaa 1356 * @{
Kojto 93:e188a91d3eaa 1357 */
Kojto 93:e188a91d3eaa 1358 /* Interrupt Handler functions **********************************************/
Kojto 93:e188a91d3eaa 1359 void HAL_TIM_IRQHandler(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1360 /**
Kojto 93:e188a91d3eaa 1361 * @}
Kojto 93:e188a91d3eaa 1362 */
Kojto 93:e188a91d3eaa 1363
Kojto 93:e188a91d3eaa 1364 /** @defgroup TIM_Exported_Functions_Group8 Peripheral Control functions
Kojto 93:e188a91d3eaa 1365 * @brief Peripheral Control functions
Kojto 93:e188a91d3eaa 1366 * @{
Kojto 93:e188a91d3eaa 1367 */
Kojto 93:e188a91d3eaa 1368 /* Control functions *********************************************************/
Kojto 93:e188a91d3eaa 1369 HAL_StatusTypeDef HAL_TIM_OC_ConfigChannel(TIM_HandleTypeDef *htim, TIM_OC_InitTypeDef* sConfig, uint32_t Channel);
Kojto 93:e188a91d3eaa 1370 HAL_StatusTypeDef HAL_TIM_PWM_ConfigChannel(TIM_HandleTypeDef *htim, TIM_OC_InitTypeDef* sConfig, uint32_t Channel);
Kojto 93:e188a91d3eaa 1371 HAL_StatusTypeDef HAL_TIM_IC_ConfigChannel(TIM_HandleTypeDef *htim, TIM_IC_InitTypeDef* sConfig, uint32_t Channel);
Kojto 93:e188a91d3eaa 1372 HAL_StatusTypeDef HAL_TIM_OnePulse_ConfigChannel(TIM_HandleTypeDef *htim, TIM_OnePulse_InitTypeDef* sConfig, uint32_t OutputChannel, uint32_t InputChannel);
Kojto 93:e188a91d3eaa 1373 HAL_StatusTypeDef HAL_TIM_ConfigOCrefClear(TIM_HandleTypeDef *htim, TIM_ClearInputConfigTypeDef * sClearInputConfig, uint32_t Channel);
Kojto 93:e188a91d3eaa 1374 HAL_StatusTypeDef HAL_TIM_ConfigClockSource(TIM_HandleTypeDef *htim, TIM_ClockConfigTypeDef * sClockSourceConfig);
Kojto 93:e188a91d3eaa 1375 HAL_StatusTypeDef HAL_TIM_ConfigTI1Input(TIM_HandleTypeDef *htim, uint32_t TI1_Selection);
Kojto 93:e188a91d3eaa 1376 HAL_StatusTypeDef HAL_TIM_SlaveConfigSynchronization(TIM_HandleTypeDef *htim, TIM_SlaveConfigTypeDef * sSlaveConfig);
Kojto 93:e188a91d3eaa 1377 HAL_StatusTypeDef HAL_TIM_DMABurst_WriteStart(TIM_HandleTypeDef *htim, uint32_t BurstBaseAddress, uint32_t BurstRequestSrc, \
Kojto 93:e188a91d3eaa 1378 uint32_t *BurstBuffer, uint32_t BurstLength);
Kojto 93:e188a91d3eaa 1379 HAL_StatusTypeDef HAL_TIM_DMABurst_WriteStop(TIM_HandleTypeDef *htim, uint32_t BurstRequestSrc);
Kojto 93:e188a91d3eaa 1380 HAL_StatusTypeDef HAL_TIM_DMABurst_ReadStart(TIM_HandleTypeDef *htim, uint32_t BurstBaseAddress, uint32_t BurstRequestSrc, \
Kojto 93:e188a91d3eaa 1381 uint32_t *BurstBuffer, uint32_t BurstLength);
Kojto 93:e188a91d3eaa 1382 HAL_StatusTypeDef HAL_TIM_DMABurst_ReadStop(TIM_HandleTypeDef *htim, uint32_t BurstRequestSrc);
Kojto 93:e188a91d3eaa 1383 HAL_StatusTypeDef HAL_TIM_GenerateEvent(TIM_HandleTypeDef *htim, uint32_t EventSource);
Kojto 93:e188a91d3eaa 1384 uint32_t HAL_TIM_ReadCapturedValue(TIM_HandleTypeDef *htim, uint32_t Channel);
Kojto 93:e188a91d3eaa 1385 /**
Kojto 93:e188a91d3eaa 1386 * @}
Kojto 93:e188a91d3eaa 1387 */
Kojto 93:e188a91d3eaa 1388
Kojto 93:e188a91d3eaa 1389 /** @defgroup TIM_Exported_Functions_Group9 TIM Callbacks functions
Kojto 93:e188a91d3eaa 1390 * @brief TIM Callbacks functions
Kojto 93:e188a91d3eaa 1391 * @{
Kojto 93:e188a91d3eaa 1392 */
Kojto 93:e188a91d3eaa 1393 /* Callback in non blocking modes (Interrupt and DMA) *************************/
Kojto 93:e188a91d3eaa 1394 void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1395 void HAL_TIM_OC_DelayElapsedCallback(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1396 void HAL_TIM_IC_CaptureCallback(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1397 void HAL_TIM_PWM_PulseFinishedCallback(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1398 void HAL_TIM_TriggerCallback(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1399 void HAL_TIM_ErrorCallback(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1400 /**
Kojto 93:e188a91d3eaa 1401 * @}
Kojto 93:e188a91d3eaa 1402 */
Kojto 93:e188a91d3eaa 1403
Kojto 93:e188a91d3eaa 1404 /** @defgroup TIM_Exported_Functions_Group10 Peripheral State functions
Kojto 93:e188a91d3eaa 1405 * @brief Peripheral State functions
Kojto 93:e188a91d3eaa 1406 * @{
Kojto 93:e188a91d3eaa 1407 */
Kojto 93:e188a91d3eaa 1408 /* Peripheral State functions **************************************************/
Kojto 93:e188a91d3eaa 1409 HAL_TIM_StateTypeDef HAL_TIM_Base_GetState(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1410 HAL_TIM_StateTypeDef HAL_TIM_OC_GetState(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1411 HAL_TIM_StateTypeDef HAL_TIM_PWM_GetState(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1412 HAL_TIM_StateTypeDef HAL_TIM_IC_GetState(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1413 HAL_TIM_StateTypeDef HAL_TIM_OnePulse_GetState(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1414 HAL_TIM_StateTypeDef HAL_TIM_Encoder_GetState(TIM_HandleTypeDef *htim);
Kojto 93:e188a91d3eaa 1415 /**
Kojto 93:e188a91d3eaa 1416 * @}
Kojto 93:e188a91d3eaa 1417 */
Kojto 93:e188a91d3eaa 1418
Kojto 93:e188a91d3eaa 1419 /**
Kojto 93:e188a91d3eaa 1420 * @}
Kojto 93:e188a91d3eaa 1421 */
Kojto 93:e188a91d3eaa 1422
Kojto 93:e188a91d3eaa 1423 void TIM_Base_SetConfig(TIM_TypeDef *TIMx, TIM_Base_InitTypeDef *Structure);
Kojto 93:e188a91d3eaa 1424 void TIM_TI1_SetConfig(TIM_TypeDef *TIMx, uint32_t TIM_ICPolarity, uint32_t TIM_ICSelection, uint32_t TIM_ICFilter);
Kojto 93:e188a91d3eaa 1425 void TIM_OC1_SetConfig(TIM_TypeDef *TIMx, TIM_OC_InitTypeDef *OC_Config);
Kojto 93:e188a91d3eaa 1426 void TIM_OC2_SetConfig(TIM_TypeDef *TIMx, TIM_OC_InitTypeDef *OC_Config);
Kojto 93:e188a91d3eaa 1427 void TIM_OC3_SetConfig(TIM_TypeDef *TIMx, TIM_OC_InitTypeDef *OC_Config);
Kojto 93:e188a91d3eaa 1428 void TIM_OC4_SetConfig(TIM_TypeDef *TIMx, TIM_OC_InitTypeDef *OC_Config);
Kojto 93:e188a91d3eaa 1429 void TIM_ETR_SetConfig(TIM_TypeDef* TIMx, uint32_t TIM_ExtTRGPrescaler,
Kojto 93:e188a91d3eaa 1430 uint32_t TIM_ExtTRGPolarity, uint32_t ExtTRGFilter);
Kojto 93:e188a91d3eaa 1431
Kojto 93:e188a91d3eaa 1432 void HAL_TIM_DMADelayPulseCplt(DMA_HandleTypeDef *hdma);
Kojto 93:e188a91d3eaa 1433 void HAL_TIM_DMAError(DMA_HandleTypeDef *hdma);
Kojto 93:e188a91d3eaa 1434 void HAL_TIM_DMACaptureCplt(DMA_HandleTypeDef *hdma);
Kojto 93:e188a91d3eaa 1435 void TIM_CCxChannelCmd(TIM_TypeDef* TIMx, uint32_t Channel, uint32_t ChannelState);
Kojto 93:e188a91d3eaa 1436
Kojto 93:e188a91d3eaa 1437 /**
Kojto 93:e188a91d3eaa 1438 * @}
Kojto 93:e188a91d3eaa 1439 */
Kojto 93:e188a91d3eaa 1440
Kojto 93:e188a91d3eaa 1441 /**
Kojto 93:e188a91d3eaa 1442 * @}
Kojto 93:e188a91d3eaa 1443 */
Kojto 93:e188a91d3eaa 1444
Kojto 93:e188a91d3eaa 1445 #ifdef __cplusplus
Kojto 93:e188a91d3eaa 1446 }
Kojto 93:e188a91d3eaa 1447 #endif
Kojto 93:e188a91d3eaa 1448
Kojto 93:e188a91d3eaa 1449 #endif /* __STM32F3xx_HAL_TIM_H */
Kojto 93:e188a91d3eaa 1450
Kojto 93:e188a91d3eaa 1451 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/