my fork
Fork of mbed by
TARGET_NUCLEO_F072RB/stm32f0xx_hal_tim_ex.h@85:024bf7f99721, 2014-06-11 (annotated)
- Committer:
- bogdanm
- Date:
- Wed Jun 11 15:14:05 2014 +0100
- Revision:
- 85:024bf7f99721
- Child:
- 92:4fc01daae5a5
Release 85 of the mbed library
Main changes:
- K64F Ethernet fixes
- Updated tests
- Fixes for various mbed targets
- Code cleanup: fixed warnings, more consistent code style
- GCC support for K64F
There is a known issue with the I2C interface on some ST targets. If you
find the I2C interface problematic on your ST board, please log a bug
against this on mbed.org.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
bogdanm | 85:024bf7f99721 | 1 | /** |
bogdanm | 85:024bf7f99721 | 2 | ****************************************************************************** |
bogdanm | 85:024bf7f99721 | 3 | * @file stm32f0xx_hal_tim_ex.h |
bogdanm | 85:024bf7f99721 | 4 | * @author MCD Application Team |
bogdanm | 85:024bf7f99721 | 5 | * @version V1.0.0 |
bogdanm | 85:024bf7f99721 | 6 | * @date 28-May-2014 |
bogdanm | 85:024bf7f99721 | 7 | * @brief Header file of TIM HAL Extension module. |
bogdanm | 85:024bf7f99721 | 8 | ****************************************************************************** |
bogdanm | 85:024bf7f99721 | 9 | * @attention |
bogdanm | 85:024bf7f99721 | 10 | * |
bogdanm | 85:024bf7f99721 | 11 | * <h2><center>© COPYRIGHT(c) 2014 STMicroelectronics</center></h2> |
bogdanm | 85:024bf7f99721 | 12 | * |
bogdanm | 85:024bf7f99721 | 13 | * Redistribution and use in source and binary forms, with or without modification, |
bogdanm | 85:024bf7f99721 | 14 | * are permitted provided that the following conditions are met: |
bogdanm | 85:024bf7f99721 | 15 | * 1. Redistributions of source code must retain the above copyright notice, |
bogdanm | 85:024bf7f99721 | 16 | * this list of conditions and the following disclaimer. |
bogdanm | 85:024bf7f99721 | 17 | * 2. Redistributions in binary form must reproduce the above copyright notice, |
bogdanm | 85:024bf7f99721 | 18 | * this list of conditions and the following disclaimer in the documentation |
bogdanm | 85:024bf7f99721 | 19 | * and/or other materials provided with the distribution. |
bogdanm | 85:024bf7f99721 | 20 | * 3. Neither the name of STMicroelectronics nor the names of its contributors |
bogdanm | 85:024bf7f99721 | 21 | * may be used to endorse or promote products derived from this software |
bogdanm | 85:024bf7f99721 | 22 | * without specific prior written permission. |
bogdanm | 85:024bf7f99721 | 23 | * |
bogdanm | 85:024bf7f99721 | 24 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
bogdanm | 85:024bf7f99721 | 25 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
bogdanm | 85:024bf7f99721 | 26 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
bogdanm | 85:024bf7f99721 | 27 | * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE |
bogdanm | 85:024bf7f99721 | 28 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
bogdanm | 85:024bf7f99721 | 29 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
bogdanm | 85:024bf7f99721 | 30 | * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
bogdanm | 85:024bf7f99721 | 31 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
bogdanm | 85:024bf7f99721 | 32 | * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
bogdanm | 85:024bf7f99721 | 33 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
bogdanm | 85:024bf7f99721 | 34 | * |
bogdanm | 85:024bf7f99721 | 35 | ****************************************************************************** |
bogdanm | 85:024bf7f99721 | 36 | */ |
bogdanm | 85:024bf7f99721 | 37 | |
bogdanm | 85:024bf7f99721 | 38 | /* Define to prevent recursive inclusion -------------------------------------*/ |
bogdanm | 85:024bf7f99721 | 39 | #ifndef __STM32F0xx_HAL_TIM_EX_H |
bogdanm | 85:024bf7f99721 | 40 | #define __STM32F0xx_HAL_TIM_EX_H |
bogdanm | 85:024bf7f99721 | 41 | |
bogdanm | 85:024bf7f99721 | 42 | #ifdef __cplusplus |
bogdanm | 85:024bf7f99721 | 43 | extern "C" { |
bogdanm | 85:024bf7f99721 | 44 | #endif |
bogdanm | 85:024bf7f99721 | 45 | |
bogdanm | 85:024bf7f99721 | 46 | /* Includes ------------------------------------------------------------------*/ |
bogdanm | 85:024bf7f99721 | 47 | #include "stm32f0xx_hal_def.h" |
bogdanm | 85:024bf7f99721 | 48 | |
bogdanm | 85:024bf7f99721 | 49 | /** @addtogroup STM32F0xx_HAL_Driver |
bogdanm | 85:024bf7f99721 | 50 | * @{ |
bogdanm | 85:024bf7f99721 | 51 | */ |
bogdanm | 85:024bf7f99721 | 52 | |
bogdanm | 85:024bf7f99721 | 53 | /** @addtogroup TIMEx |
bogdanm | 85:024bf7f99721 | 54 | * @{ |
bogdanm | 85:024bf7f99721 | 55 | */ |
bogdanm | 85:024bf7f99721 | 56 | |
bogdanm | 85:024bf7f99721 | 57 | /* Exported types ------------------------------------------------------------*/ |
bogdanm | 85:024bf7f99721 | 58 | |
bogdanm | 85:024bf7f99721 | 59 | /** |
bogdanm | 85:024bf7f99721 | 60 | * @brief TIM Hall sensor Configuration Structure definition |
bogdanm | 85:024bf7f99721 | 61 | */ |
bogdanm | 85:024bf7f99721 | 62 | |
bogdanm | 85:024bf7f99721 | 63 | typedef struct |
bogdanm | 85:024bf7f99721 | 64 | { |
bogdanm | 85:024bf7f99721 | 65 | |
bogdanm | 85:024bf7f99721 | 66 | uint32_t IC1Polarity; /*!< Specifies the active edge of the input signal. |
bogdanm | 85:024bf7f99721 | 67 | This parameter can be a value of @ref TIM_Input_Capture_Polarity */ |
bogdanm | 85:024bf7f99721 | 68 | |
bogdanm | 85:024bf7f99721 | 69 | uint32_t IC1Prescaler; /*!< Specifies the Input Capture Prescaler. |
bogdanm | 85:024bf7f99721 | 70 | This parameter can be a value of @ref TIM_Input_Capture_Prescaler */ |
bogdanm | 85:024bf7f99721 | 71 | |
bogdanm | 85:024bf7f99721 | 72 | uint32_t IC1Filter; /*!< Specifies the input capture filter. |
bogdanm | 85:024bf7f99721 | 73 | This parameter can be a number between Min_Data = 0x0 and Max_Data = 0xF */ |
bogdanm | 85:024bf7f99721 | 74 | uint32_t Commutation_Delay; /*!< Specifies the pulse value to be loaded into the Capture Compare Register. |
bogdanm | 85:024bf7f99721 | 75 | This parameter can be a number between Min_Data = 0x0000 and Max_Data = 0xFFFF */ |
bogdanm | 85:024bf7f99721 | 76 | } TIM_HallSensor_InitTypeDef; |
bogdanm | 85:024bf7f99721 | 77 | |
bogdanm | 85:024bf7f99721 | 78 | /** |
bogdanm | 85:024bf7f99721 | 79 | * @brief TIM Master configuration Structure definition |
bogdanm | 85:024bf7f99721 | 80 | */ |
bogdanm | 85:024bf7f99721 | 81 | typedef struct { |
bogdanm | 85:024bf7f99721 | 82 | uint32_t MasterOutputTrigger; /*!< Trigger output (TRGO) selection |
bogdanm | 85:024bf7f99721 | 83 | This parameter can be a value of @ref TIM_Master_Mode_Selection */ |
bogdanm | 85:024bf7f99721 | 84 | uint32_t MasterSlaveMode; /*!< Master/slave mode selection |
bogdanm | 85:024bf7f99721 | 85 | This parameter can be a value of @ref TIM_Master_Slave_Mode */ |
bogdanm | 85:024bf7f99721 | 86 | }TIM_MasterConfigTypeDef; |
bogdanm | 85:024bf7f99721 | 87 | |
bogdanm | 85:024bf7f99721 | 88 | /** |
bogdanm | 85:024bf7f99721 | 89 | * @brief TIM Break and Dead time configuration Structure definition |
bogdanm | 85:024bf7f99721 | 90 | */ |
bogdanm | 85:024bf7f99721 | 91 | typedef struct |
bogdanm | 85:024bf7f99721 | 92 | { |
bogdanm | 85:024bf7f99721 | 93 | uint32_t OffStateRunMode; /*!< TIM off state in run mode |
bogdanm | 85:024bf7f99721 | 94 | This parameter can be a value of @ref TIM_OSSR_Off_State_Selection_for_Run_mode_state */ |
bogdanm | 85:024bf7f99721 | 95 | uint32_t OffStateIDLEMode; /*!< TIM off state in IDLE mode |
bogdanm | 85:024bf7f99721 | 96 | This parameter can be a value of @ref TIM_OSSI_Off_State_Selection_for_Idle_mode_state */ |
bogdanm | 85:024bf7f99721 | 97 | uint32_t LockLevel; /*!< TIM Lock level |
bogdanm | 85:024bf7f99721 | 98 | This parameter can be a value of @ref TIM_Lock_level */ |
bogdanm | 85:024bf7f99721 | 99 | uint32_t DeadTime; /*!< TIM dead Time |
bogdanm | 85:024bf7f99721 | 100 | This parameter can be a number between Min_Data = 0x00 and Max_Data = 0xFF */ |
bogdanm | 85:024bf7f99721 | 101 | uint32_t BreakState; /*!< TIM Break State |
bogdanm | 85:024bf7f99721 | 102 | This parameter can be a value of @ref TIM_Break_Input_enable_disable */ |
bogdanm | 85:024bf7f99721 | 103 | uint32_t BreakPolarity; /*!< TIM Break input polarity |
bogdanm | 85:024bf7f99721 | 104 | This parameter can be a value of @ref TIM_Break_Polarity */ |
bogdanm | 85:024bf7f99721 | 105 | uint32_t AutomaticOutput; /*!< TIM Automatic Output Enable state |
bogdanm | 85:024bf7f99721 | 106 | This parameter can be a value of @ref TIM_AOE_Bit_Set_Reset */ |
bogdanm | 85:024bf7f99721 | 107 | } TIM_BreakDeadTimeConfigTypeDef; |
bogdanm | 85:024bf7f99721 | 108 | |
bogdanm | 85:024bf7f99721 | 109 | /* Exported constants --------------------------------------------------------*/ |
bogdanm | 85:024bf7f99721 | 110 | /** @defgroup TIMEx_Exported_Constants |
bogdanm | 85:024bf7f99721 | 111 | * @{ |
bogdanm | 85:024bf7f99721 | 112 | */ |
bogdanm | 85:024bf7f99721 | 113 | |
bogdanm | 85:024bf7f99721 | 114 | /** @defgroup TIMEx_Remap |
bogdanm | 85:024bf7f99721 | 115 | * @{ |
bogdanm | 85:024bf7f99721 | 116 | */ |
bogdanm | 85:024bf7f99721 | 117 | |
bogdanm | 85:024bf7f99721 | 118 | #define TIM_TIM14_GPIO (0x00000000) /* !< TIM14 TI1 is connected to GPIO */ |
bogdanm | 85:024bf7f99721 | 119 | #define TIM_TIM14_RTC (0x00000001) /* !< TIM14 TI1 is connected to RTC_clock */ |
bogdanm | 85:024bf7f99721 | 120 | #define TIM_TIM14_HSE (0x00000002) /* !< TIM14 TI1 is connected to HSE/32 */ |
bogdanm | 85:024bf7f99721 | 121 | #define TIM_TIM14_MCO (0x00000003) /* !< TIM14 TI1 is connected to MCO */ |
bogdanm | 85:024bf7f99721 | 122 | |
bogdanm | 85:024bf7f99721 | 123 | #define IS_TIM_REMAP(TIM_REMAP) (((TIM_REMAP) == TIM_TIM14_GPIO) ||\ |
bogdanm | 85:024bf7f99721 | 124 | ((TIM_REMAP) == TIM_TIM14_RTC) ||\ |
bogdanm | 85:024bf7f99721 | 125 | ((TIM_REMAP) == TIM_TIM14_HSE) ||\ |
bogdanm | 85:024bf7f99721 | 126 | ((TIM_REMAP) == TIM_TIM14_MCO)) |
bogdanm | 85:024bf7f99721 | 127 | |
bogdanm | 85:024bf7f99721 | 128 | /** |
bogdanm | 85:024bf7f99721 | 129 | * @} |
bogdanm | 85:024bf7f99721 | 130 | */ |
bogdanm | 85:024bf7f99721 | 131 | |
bogdanm | 85:024bf7f99721 | 132 | /** |
bogdanm | 85:024bf7f99721 | 133 | * @} |
bogdanm | 85:024bf7f99721 | 134 | */ |
bogdanm | 85:024bf7f99721 | 135 | |
bogdanm | 85:024bf7f99721 | 136 | /* Exported macro ------------------------------------------------------------*/ |
bogdanm | 85:024bf7f99721 | 137 | |
bogdanm | 85:024bf7f99721 | 138 | /* Exported functions --------------------------------------------------------*/ |
bogdanm | 85:024bf7f99721 | 139 | |
bogdanm | 85:024bf7f99721 | 140 | /* Timer Hall Sensor functions **********************************************/ |
bogdanm | 85:024bf7f99721 | 141 | HAL_StatusTypeDef HAL_TIMEx_HallSensor_Init(TIM_HandleTypeDef *htim, TIM_HallSensor_InitTypeDef* sConfig); |
bogdanm | 85:024bf7f99721 | 142 | HAL_StatusTypeDef HAL_TIMEx_HallSensor_DeInit(TIM_HandleTypeDef *htim); |
bogdanm | 85:024bf7f99721 | 143 | |
bogdanm | 85:024bf7f99721 | 144 | void HAL_TIMEx_HallSensor_MspInit(TIM_HandleTypeDef *htim); |
bogdanm | 85:024bf7f99721 | 145 | void HAL_TIMEx_HallSensor_MspDeInit(TIM_HandleTypeDef *htim); |
bogdanm | 85:024bf7f99721 | 146 | |
bogdanm | 85:024bf7f99721 | 147 | /* Blocking mode: Polling */ |
bogdanm | 85:024bf7f99721 | 148 | HAL_StatusTypeDef HAL_TIMEx_HallSensor_Start(TIM_HandleTypeDef *htim); |
bogdanm | 85:024bf7f99721 | 149 | HAL_StatusTypeDef HAL_TIMEx_HallSensor_Stop(TIM_HandleTypeDef *htim); |
bogdanm | 85:024bf7f99721 | 150 | /* Non-Blocking mode: Interrupt */ |
bogdanm | 85:024bf7f99721 | 151 | HAL_StatusTypeDef HAL_TIMEx_HallSensor_Start_IT(TIM_HandleTypeDef *htim); |
bogdanm | 85:024bf7f99721 | 152 | HAL_StatusTypeDef HAL_TIMEx_HallSensor_Stop_IT(TIM_HandleTypeDef *htim); |
bogdanm | 85:024bf7f99721 | 153 | /* Non-Blocking mode: DMA */ |
bogdanm | 85:024bf7f99721 | 154 | HAL_StatusTypeDef HAL_TIMEx_HallSensor_Start_DMA(TIM_HandleTypeDef *htim, uint32_t *pData, uint16_t Length); |
bogdanm | 85:024bf7f99721 | 155 | HAL_StatusTypeDef HAL_TIMEx_HallSensor_Stop_DMA(TIM_HandleTypeDef *htim); |
bogdanm | 85:024bf7f99721 | 156 | |
bogdanm | 85:024bf7f99721 | 157 | /* Timer Complementary Output Compare functions *****************************/ |
bogdanm | 85:024bf7f99721 | 158 | /* Blocking mode: Polling */ |
bogdanm | 85:024bf7f99721 | 159 | HAL_StatusTypeDef HAL_TIMEx_OCN_Start(TIM_HandleTypeDef *htim, uint32_t Channel); |
bogdanm | 85:024bf7f99721 | 160 | HAL_StatusTypeDef HAL_TIMEx_OCN_Stop(TIM_HandleTypeDef *htim, uint32_t Channel); |
bogdanm | 85:024bf7f99721 | 161 | |
bogdanm | 85:024bf7f99721 | 162 | /* Non-Blocking mode: Interrupt */ |
bogdanm | 85:024bf7f99721 | 163 | HAL_StatusTypeDef HAL_TIMEx_OCN_Start_IT(TIM_HandleTypeDef *htim, uint32_t Channel); |
bogdanm | 85:024bf7f99721 | 164 | HAL_StatusTypeDef HAL_TIMEx_OCN_Stop_IT(TIM_HandleTypeDef *htim, uint32_t Channel); |
bogdanm | 85:024bf7f99721 | 165 | |
bogdanm | 85:024bf7f99721 | 166 | /* Non-Blocking mode: DMA */ |
bogdanm | 85:024bf7f99721 | 167 | HAL_StatusTypeDef HAL_TIMEx_OCN_Start_DMA(TIM_HandleTypeDef *htim, uint32_t Channel, uint32_t *pData, uint16_t Length); |
bogdanm | 85:024bf7f99721 | 168 | HAL_StatusTypeDef HAL_TIMEx_OCN_Stop_DMA(TIM_HandleTypeDef *htim, uint32_t Channel); |
bogdanm | 85:024bf7f99721 | 169 | |
bogdanm | 85:024bf7f99721 | 170 | /* Timer Complementary PWM functions ****************************************/ |
bogdanm | 85:024bf7f99721 | 171 | /* Blocking mode: Polling */ |
bogdanm | 85:024bf7f99721 | 172 | HAL_StatusTypeDef HAL_TIMEx_PWMN_Start(TIM_HandleTypeDef *htim, uint32_t Channel); |
bogdanm | 85:024bf7f99721 | 173 | HAL_StatusTypeDef HAL_TIMEx_PWMN_Stop(TIM_HandleTypeDef *htim, uint32_t Channel); |
bogdanm | 85:024bf7f99721 | 174 | |
bogdanm | 85:024bf7f99721 | 175 | /* Non-Blocking mode: Interrupt */ |
bogdanm | 85:024bf7f99721 | 176 | HAL_StatusTypeDef HAL_TIMEx_PWMN_Start_IT(TIM_HandleTypeDef *htim, uint32_t Channel); |
bogdanm | 85:024bf7f99721 | 177 | HAL_StatusTypeDef HAL_TIMEx_PWMN_Stop_IT(TIM_HandleTypeDef *htim, uint32_t Channel); |
bogdanm | 85:024bf7f99721 | 178 | /* Non-Blocking mode: DMA */ |
bogdanm | 85:024bf7f99721 | 179 | HAL_StatusTypeDef HAL_TIMEx_PWMN_Start_DMA(TIM_HandleTypeDef *htim, uint32_t Channel, uint32_t *pData, uint16_t Length); |
bogdanm | 85:024bf7f99721 | 180 | HAL_StatusTypeDef HAL_TIMEx_PWMN_Stop_DMA(TIM_HandleTypeDef *htim, uint32_t Channel); |
bogdanm | 85:024bf7f99721 | 181 | |
bogdanm | 85:024bf7f99721 | 182 | /* Timer Complementary One Pulse functions **********************************/ |
bogdanm | 85:024bf7f99721 | 183 | /* Blocking mode: Polling */ |
bogdanm | 85:024bf7f99721 | 184 | HAL_StatusTypeDef HAL_TIMEx_OnePulseN_Start(TIM_HandleTypeDef *htim, uint32_t OutputChannel); |
bogdanm | 85:024bf7f99721 | 185 | HAL_StatusTypeDef HAL_TIMEx_OnePulseN_Stop(TIM_HandleTypeDef *htim, uint32_t OutputChannel); |
bogdanm | 85:024bf7f99721 | 186 | |
bogdanm | 85:024bf7f99721 | 187 | /* Non-Blocking mode: Interrupt */ |
bogdanm | 85:024bf7f99721 | 188 | HAL_StatusTypeDef HAL_TIMEx_OnePulseN_Start_IT(TIM_HandleTypeDef *htim, uint32_t OutputChannel); |
bogdanm | 85:024bf7f99721 | 189 | HAL_StatusTypeDef HAL_TIMEx_OnePulseN_Stop_IT(TIM_HandleTypeDef *htim, uint32_t OutputChannel); |
bogdanm | 85:024bf7f99721 | 190 | |
bogdanm | 85:024bf7f99721 | 191 | /* Extnsion Control functions ************************************************/ |
bogdanm | 85:024bf7f99721 | 192 | HAL_StatusTypeDef HAL_TIMEx_ConfigCommutationEvent(TIM_HandleTypeDef *htim, uint32_t InputTrigger, uint32_t CommutationSource); |
bogdanm | 85:024bf7f99721 | 193 | HAL_StatusTypeDef HAL_TIMEx_ConfigCommutationEvent_IT(TIM_HandleTypeDef *htim, uint32_t InputTrigger, uint32_t CommutationSource); |
bogdanm | 85:024bf7f99721 | 194 | HAL_StatusTypeDef HAL_TIMEx_ConfigCommutationEvent_DMA(TIM_HandleTypeDef *htim, uint32_t InputTrigger, uint32_t CommutationSource); |
bogdanm | 85:024bf7f99721 | 195 | HAL_StatusTypeDef HAL_TIMEx_MasterConfigSynchronization(TIM_HandleTypeDef *htim, TIM_MasterConfigTypeDef * sMasterConfig); |
bogdanm | 85:024bf7f99721 | 196 | HAL_StatusTypeDef HAL_TIMEx_ConfigBreakDeadTime(TIM_HandleTypeDef *htim, TIM_BreakDeadTimeConfigTypeDef *sBreakDeadTimeConfig); |
bogdanm | 85:024bf7f99721 | 197 | HAL_StatusTypeDef HAL_TIMEx_RemapConfig(TIM_HandleTypeDef *htim, uint32_t Remap); |
bogdanm | 85:024bf7f99721 | 198 | |
bogdanm | 85:024bf7f99721 | 199 | /* Extension Callback *********************************************************/ |
bogdanm | 85:024bf7f99721 | 200 | void HAL_TIMEx_CommutationCallback(TIM_HandleTypeDef *htim); |
bogdanm | 85:024bf7f99721 | 201 | void HAL_TIMEx_BreakCallback(TIM_HandleTypeDef *htim); |
bogdanm | 85:024bf7f99721 | 202 | void HAL_TIMEx_DMACommutationCplt(DMA_HandleTypeDef *hdma); |
bogdanm | 85:024bf7f99721 | 203 | |
bogdanm | 85:024bf7f99721 | 204 | /* Extension Peripheral State functions **************************************/ |
bogdanm | 85:024bf7f99721 | 205 | HAL_TIM_StateTypeDef HAL_TIMEx_HallSensor_GetState(TIM_HandleTypeDef *htim); |
bogdanm | 85:024bf7f99721 | 206 | |
bogdanm | 85:024bf7f99721 | 207 | /** |
bogdanm | 85:024bf7f99721 | 208 | * @} |
bogdanm | 85:024bf7f99721 | 209 | */ |
bogdanm | 85:024bf7f99721 | 210 | |
bogdanm | 85:024bf7f99721 | 211 | /** |
bogdanm | 85:024bf7f99721 | 212 | * @} |
bogdanm | 85:024bf7f99721 | 213 | */ |
bogdanm | 85:024bf7f99721 | 214 | |
bogdanm | 85:024bf7f99721 | 215 | #ifdef __cplusplus |
bogdanm | 85:024bf7f99721 | 216 | } |
bogdanm | 85:024bf7f99721 | 217 | #endif |
bogdanm | 85:024bf7f99721 | 218 | |
bogdanm | 85:024bf7f99721 | 219 | |
bogdanm | 85:024bf7f99721 | 220 | #endif /* __STM32F0xx_HAL_TIM_EX_H */ |
bogdanm | 85:024bf7f99721 | 221 | |
bogdanm | 85:024bf7f99721 | 222 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ |