mbed w/ spi bug fig

Dependents:   display-puck

Fork of mbed-src by mbed official

Committer:
mbed_official
Date:
Fri Jun 27 07:30:09 2014 +0100
Revision:
242:7074e42da0b2
Parent:
133:d4dda5c437f0
Synchronized with git revision 124ef5e3add9e74a3221347a3fbeea7c8b3cf353

Full URL: https://github.com/mbedmicro/mbed/commit/124ef5e3add9e74a3221347a3fbeea7c8b3cf353/

[DISCO_F407VG] HAL update.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 133:d4dda5c437f0 1 /**
mbed_official 133:d4dda5c437f0 2 ******************************************************************************
mbed_official 133:d4dda5c437f0 3 * @file stm32f4xx_hal_tim_ex.c
mbed_official 133:d4dda5c437f0 4 * @author MCD Application Team
mbed_official 242:7074e42da0b2 5 * @version V1.1.0RC2
mbed_official 242:7074e42da0b2 6 * @date 14-May-2014
mbed_official 133:d4dda5c437f0 7 * @brief TIM HAL module driver.
mbed_official 133:d4dda5c437f0 8 * This file provides firmware functions to manage the following
mbed_official 133:d4dda5c437f0 9 * functionalities of the Timer extension peripheral:
mbed_official 133:d4dda5c437f0 10 * + Time Hall Sensor Interface Initialization
mbed_official 133:d4dda5c437f0 11 * + Time Hall Sensor Interface Start
mbed_official 133:d4dda5c437f0 12 * + Time Complementary signal bread and dead time configuration
mbed_official 133:d4dda5c437f0 13 * + Time Master and Slave synchronization configuration
mbed_official 133:d4dda5c437f0 14 @verbatim
mbed_official 133:d4dda5c437f0 15 ==============================================================================
mbed_official 133:d4dda5c437f0 16 ##### TIMER Extended features #####
mbed_official 133:d4dda5c437f0 17 ==============================================================================
mbed_official 133:d4dda5c437f0 18 [..]
mbed_official 133:d4dda5c437f0 19 The Timer Extension features include:
mbed_official 133:d4dda5c437f0 20 (#) Complementary outputs with programmable dead-time for :
mbed_official 133:d4dda5c437f0 21 (++) Input Capture
mbed_official 133:d4dda5c437f0 22 (++) Output Compare
mbed_official 133:d4dda5c437f0 23 (++) PWM generation (Edge and Center-aligned Mode)
mbed_official 133:d4dda5c437f0 24 (++) One-pulse mode output
mbed_official 133:d4dda5c437f0 25 (#) Synchronization circuit to control the timer with external signals and to
mbed_official 133:d4dda5c437f0 26 interconnect several timers together.
mbed_official 133:d4dda5c437f0 27 (#) Break input to put the timer output signals in reset state or in a known state.
mbed_official 133:d4dda5c437f0 28 (#) Supports incremental (quadrature) encoder and hall-sensor circuitry for
mbed_official 133:d4dda5c437f0 29 positioning purposes
mbed_official 133:d4dda5c437f0 30
mbed_official 133:d4dda5c437f0 31 ##### How to use this driver #####
mbed_official 133:d4dda5c437f0 32 ==============================================================================
mbed_official 133:d4dda5c437f0 33 [..]
mbed_official 133:d4dda5c437f0 34 (#) Initialize the TIM low level resources by implementing the following functions
mbed_official 133:d4dda5c437f0 35 depending from feature used :
mbed_official 133:d4dda5c437f0 36 (++) Complementary Output Compare : HAL_TIM_OC_MspInit()
mbed_official 133:d4dda5c437f0 37 (++) Complementary PWM generation : HAL_TIM_PWM_MspInit()
mbed_official 133:d4dda5c437f0 38 (++) Complementary One-pulse mode output : HAL_TIM_OnePulse_MspInit()
mbed_official 133:d4dda5c437f0 39 (++) Hall Sensor output : HAL_TIM_HallSensor_MspInit()
mbed_official 133:d4dda5c437f0 40
mbed_official 133:d4dda5c437f0 41 (#) Initialize the TIM low level resources :
mbed_official 133:d4dda5c437f0 42 (##) Enable the TIM interface clock using __TIMx_CLK_ENABLE();
mbed_official 133:d4dda5c437f0 43 (##) TIM pins configuration
mbed_official 133:d4dda5c437f0 44 (+++) Enable the clock for the TIM GPIOs using the following function:
mbed_official 133:d4dda5c437f0 45 __GPIOx_CLK_ENABLE();
mbed_official 133:d4dda5c437f0 46 (+++) Configure these TIM pins in Alternate function mode using HAL_GPIO_Init();
mbed_official 133:d4dda5c437f0 47
mbed_official 133:d4dda5c437f0 48 (#) The external Clock can be configured, if needed (the default clock is the
mbed_official 133:d4dda5c437f0 49 internal clock from the APBx), using the following function:
mbed_official 133:d4dda5c437f0 50 HAL_TIM_ConfigClockSource, the clock configuration should be done before
mbed_official 133:d4dda5c437f0 51 any start function.
mbed_official 133:d4dda5c437f0 52
mbed_official 133:d4dda5c437f0 53 (#) Configure the TIM in the desired functioning mode using one of the
mbed_official 133:d4dda5c437f0 54 initialization function of this driver:
mbed_official 133:d4dda5c437f0 55 (++) HAL_TIMEx_HallSensor_Init and HAL_TIMEx_ConfigCommutationEvent: to use the
mbed_official 133:d4dda5c437f0 56 Timer Hall Sensor Interface and the commutation event with the corresponding
mbed_official 133:d4dda5c437f0 57 Interrupt and DMA request if needed (Note that One Timer is used to interface
mbed_official 133:d4dda5c437f0 58 with the Hall sensor Interface and another Timer should be used to use
mbed_official 133:d4dda5c437f0 59 the commutation event).
mbed_official 133:d4dda5c437f0 60
mbed_official 133:d4dda5c437f0 61 (#) Activate the TIM peripheral using one of the start functions:
mbed_official 133:d4dda5c437f0 62 (++) Complementary Output Compare : HAL_TIMEx_OCN_Start(), HAL_TIMEx_OCN_Start_DMA(), HAL_TIMEx_OC_Start_IT()
mbed_official 133:d4dda5c437f0 63 (++) Complementary PWM generation : HAL_TIMEx_PWMN_Start(), HAL_TIMEx_PWMN_Start_DMA(), HAL_TIMEx_PWMN_Start_IT()
mbed_official 133:d4dda5c437f0 64 (++) Complementary One-pulse mode output : HAL_TIMEx_OnePulseN_Start(), HAL_TIMEx_OnePulseN_Start_IT()
mbed_official 133:d4dda5c437f0 65 (++) Hall Sensor output : HAL_TIMEx_HallSensor_Start(), HAL_TIMEx_HallSensor_Start_DMA(), HAL_TIMEx_HallSensor_Start_IT().
mbed_official 133:d4dda5c437f0 66
mbed_official 133:d4dda5c437f0 67
mbed_official 133:d4dda5c437f0 68 @endverbatim
mbed_official 133:d4dda5c437f0 69 ******************************************************************************
mbed_official 133:d4dda5c437f0 70 * @attention
mbed_official 133:d4dda5c437f0 71 *
mbed_official 133:d4dda5c437f0 72 * <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
mbed_official 133:d4dda5c437f0 73 *
mbed_official 133:d4dda5c437f0 74 * Redistribution and use in source and binary forms, with or without modification,
mbed_official 133:d4dda5c437f0 75 * are permitted provided that the following conditions are met:
mbed_official 133:d4dda5c437f0 76 * 1. Redistributions of source code must retain the above copyright notice,
mbed_official 133:d4dda5c437f0 77 * this list of conditions and the following disclaimer.
mbed_official 133:d4dda5c437f0 78 * 2. Redistributions in binary form must reproduce the above copyright notice,
mbed_official 133:d4dda5c437f0 79 * this list of conditions and the following disclaimer in the documentation
mbed_official 133:d4dda5c437f0 80 * and/or other materials provided with the distribution.
mbed_official 133:d4dda5c437f0 81 * 3. Neither the name of STMicroelectronics nor the names of its contributors
mbed_official 133:d4dda5c437f0 82 * may be used to endorse or promote products derived from this software
mbed_official 133:d4dda5c437f0 83 * without specific prior written permission.
mbed_official 133:d4dda5c437f0 84 *
mbed_official 133:d4dda5c437f0 85 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
mbed_official 133:d4dda5c437f0 86 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
mbed_official 133:d4dda5c437f0 87 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
mbed_official 133:d4dda5c437f0 88 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
mbed_official 133:d4dda5c437f0 89 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
mbed_official 133:d4dda5c437f0 90 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
mbed_official 133:d4dda5c437f0 91 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
mbed_official 133:d4dda5c437f0 92 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
mbed_official 133:d4dda5c437f0 93 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
mbed_official 133:d4dda5c437f0 94 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
mbed_official 133:d4dda5c437f0 95 *
mbed_official 133:d4dda5c437f0 96 ******************************************************************************
mbed_official 133:d4dda5c437f0 97 */
mbed_official 133:d4dda5c437f0 98
mbed_official 133:d4dda5c437f0 99 /* Includes ------------------------------------------------------------------*/
mbed_official 133:d4dda5c437f0 100 #include "stm32f4xx_hal.h"
mbed_official 133:d4dda5c437f0 101
mbed_official 133:d4dda5c437f0 102 /** @addtogroup STM32F4xx_HAL_Driver
mbed_official 133:d4dda5c437f0 103 * @{
mbed_official 133:d4dda5c437f0 104 */
mbed_official 133:d4dda5c437f0 105
mbed_official 133:d4dda5c437f0 106 /** @defgroup TIMEx
mbed_official 133:d4dda5c437f0 107 * @brief TIM HAL module driver
mbed_official 133:d4dda5c437f0 108 * @{
mbed_official 133:d4dda5c437f0 109 */
mbed_official 133:d4dda5c437f0 110
mbed_official 133:d4dda5c437f0 111 #ifdef HAL_TIM_MODULE_ENABLED
mbed_official 133:d4dda5c437f0 112
mbed_official 133:d4dda5c437f0 113 /* Private typedef -----------------------------------------------------------*/
mbed_official 133:d4dda5c437f0 114 /* Private define ------------------------------------------------------------*/
mbed_official 133:d4dda5c437f0 115 /* Private macro -------------------------------------------------------------*/
mbed_official 133:d4dda5c437f0 116 /* Private variables ---------------------------------------------------------*/
mbed_official 133:d4dda5c437f0 117 /* Private function prototypes -----------------------------------------------*/
mbed_official 133:d4dda5c437f0 118 static void TIM_CCxNChannelCmd(TIM_TypeDef* TIMx, uint32_t Channel, uint32_t ChannelNState);
mbed_official 133:d4dda5c437f0 119 /* Private functions ---------------------------------------------------------*/
mbed_official 133:d4dda5c437f0 120
mbed_official 133:d4dda5c437f0 121 /** @defgroup TIMEx_Private_Functions
mbed_official 133:d4dda5c437f0 122 * @{
mbed_official 133:d4dda5c437f0 123 */
mbed_official 133:d4dda5c437f0 124
mbed_official 133:d4dda5c437f0 125 /** @defgroup TIMEx_Group1 Timer Hall Sensor functions
mbed_official 133:d4dda5c437f0 126 * @brief Timer Hall Sensor functions
mbed_official 133:d4dda5c437f0 127 *
mbed_official 133:d4dda5c437f0 128 @verbatim
mbed_official 133:d4dda5c437f0 129 ==============================================================================
mbed_official 133:d4dda5c437f0 130 ##### Timer Hall Sensor functions #####
mbed_official 133:d4dda5c437f0 131 ==============================================================================
mbed_official 133:d4dda5c437f0 132 [..]
mbed_official 133:d4dda5c437f0 133 This section provides functions allowing to:
mbed_official 133:d4dda5c437f0 134 (+) Initialize and configure TIM HAL Sensor.
mbed_official 133:d4dda5c437f0 135 (+) De-initialize TIM HAL Sensor.
mbed_official 133:d4dda5c437f0 136 (+) Start the Hall Sensor Interface.
mbed_official 133:d4dda5c437f0 137 (+) Stop the Hall Sensor Interface.
mbed_official 133:d4dda5c437f0 138 (+) Start the Hall Sensor Interface and enable interrupts.
mbed_official 133:d4dda5c437f0 139 (+) Stop the Hall Sensor Interface and disable interrupts.
mbed_official 133:d4dda5c437f0 140 (+) Start the Hall Sensor Interface and enable DMA transfers.
mbed_official 133:d4dda5c437f0 141 (+) Stop the Hall Sensor Interface and disable DMA transfers.
mbed_official 133:d4dda5c437f0 142
mbed_official 133:d4dda5c437f0 143 @endverbatim
mbed_official 133:d4dda5c437f0 144 * @{
mbed_official 133:d4dda5c437f0 145 */
mbed_official 133:d4dda5c437f0 146 /**
mbed_official 133:d4dda5c437f0 147 * @brief Initializes the TIM Hall Sensor Interface and create the associated handle.
mbed_official 242:7074e42da0b2 148 * @param htim: pointer to a TIM_HandleTypeDef structure that contains
mbed_official 242:7074e42da0b2 149 * the configuration information for TIM module.
mbed_official 133:d4dda5c437f0 150 * @param sConfig: TIM Hall Sensor configuration structure
mbed_official 133:d4dda5c437f0 151 * @retval HAL status
mbed_official 133:d4dda5c437f0 152 */
mbed_official 133:d4dda5c437f0 153 HAL_StatusTypeDef HAL_TIMEx_HallSensor_Init(TIM_HandleTypeDef *htim, TIM_HallSensor_InitTypeDef* sConfig)
mbed_official 133:d4dda5c437f0 154 {
mbed_official 133:d4dda5c437f0 155 TIM_OC_InitTypeDef OC_Config;
mbed_official 133:d4dda5c437f0 156
mbed_official 133:d4dda5c437f0 157 /* Check the TIM handle allocation */
mbed_official 133:d4dda5c437f0 158 if(htim == NULL)
mbed_official 133:d4dda5c437f0 159 {
mbed_official 133:d4dda5c437f0 160 return HAL_ERROR;
mbed_official 133:d4dda5c437f0 161 }
mbed_official 133:d4dda5c437f0 162
mbed_official 133:d4dda5c437f0 163 assert_param(IS_TIM_XOR_INSTANCE(htim->Instance));
mbed_official 133:d4dda5c437f0 164 assert_param(IS_TIM_COUNTER_MODE(htim->Init.CounterMode));
mbed_official 133:d4dda5c437f0 165 assert_param(IS_TIM_CLOCKDIVISION_DIV(htim->Init.ClockDivision));
mbed_official 133:d4dda5c437f0 166 assert_param(IS_TIM_IC_POLARITY(sConfig->IC1Polarity));
mbed_official 133:d4dda5c437f0 167 assert_param(IS_TIM_IC_PRESCALER(sConfig->IC1Prescaler));
mbed_official 133:d4dda5c437f0 168 assert_param(IS_TIM_IC_FILTER(sConfig->IC1Filter));
mbed_official 133:d4dda5c437f0 169
mbed_official 133:d4dda5c437f0 170 /* Set the TIM state */
mbed_official 133:d4dda5c437f0 171 htim->State= HAL_TIM_STATE_BUSY;
mbed_official 133:d4dda5c437f0 172
mbed_official 133:d4dda5c437f0 173 /* Init the low level hardware : GPIO, CLOCK, NVIC and DMA */
mbed_official 133:d4dda5c437f0 174 HAL_TIMEx_HallSensor_MspInit(htim);
mbed_official 133:d4dda5c437f0 175
mbed_official 133:d4dda5c437f0 176 /* Configure the Time base in the Encoder Mode */
mbed_official 133:d4dda5c437f0 177 TIM_Base_SetConfig(htim->Instance, &htim->Init);
mbed_official 133:d4dda5c437f0 178
mbed_official 133:d4dda5c437f0 179 /* Configure the Channel 1 as Input Channel to interface with the three Outputs of the Hall sensor */
mbed_official 133:d4dda5c437f0 180 TIM_TI1_SetConfig(htim->Instance, sConfig->IC1Polarity, TIM_ICSELECTION_TRC, sConfig->IC1Filter);
mbed_official 133:d4dda5c437f0 181
mbed_official 133:d4dda5c437f0 182 /* Reset the IC1PSC Bits */
mbed_official 133:d4dda5c437f0 183 htim->Instance->CCMR1 &= ~TIM_CCMR1_IC1PSC;
mbed_official 133:d4dda5c437f0 184 /* Set the IC1PSC value */
mbed_official 133:d4dda5c437f0 185 htim->Instance->CCMR1 |= sConfig->IC1Prescaler;
mbed_official 133:d4dda5c437f0 186
mbed_official 133:d4dda5c437f0 187 /* Enable the Hall sensor interface (XOR function of the three inputs) */
mbed_official 133:d4dda5c437f0 188 htim->Instance->CR2 |= TIM_CR2_TI1S;
mbed_official 133:d4dda5c437f0 189
mbed_official 133:d4dda5c437f0 190 /* Select the TIM_TS_TI1F_ED signal as Input trigger for the TIM */
mbed_official 133:d4dda5c437f0 191 htim->Instance->SMCR &= ~TIM_SMCR_TS;
mbed_official 133:d4dda5c437f0 192 htim->Instance->SMCR |= TIM_TS_TI1F_ED;
mbed_official 133:d4dda5c437f0 193
mbed_official 133:d4dda5c437f0 194 /* Use the TIM_TS_TI1F_ED signal to reset the TIM counter each edge detection */
mbed_official 133:d4dda5c437f0 195 htim->Instance->SMCR &= ~TIM_SMCR_SMS;
mbed_official 133:d4dda5c437f0 196 htim->Instance->SMCR |= TIM_SLAVEMODE_RESET;
mbed_official 133:d4dda5c437f0 197
mbed_official 133:d4dda5c437f0 198 /* Program channel 2 in PWM 2 mode with the desired Commutation_Delay*/
mbed_official 133:d4dda5c437f0 199 OC_Config.OCFastMode = TIM_OCFAST_DISABLE;
mbed_official 133:d4dda5c437f0 200 OC_Config.OCIdleState = TIM_OCIDLESTATE_RESET;
mbed_official 133:d4dda5c437f0 201 OC_Config.OCMode = TIM_OCMODE_PWM2;
mbed_official 133:d4dda5c437f0 202 OC_Config.OCNIdleState = TIM_OCNIDLESTATE_RESET;
mbed_official 133:d4dda5c437f0 203 OC_Config.OCNPolarity = TIM_OCNPOLARITY_HIGH;
mbed_official 133:d4dda5c437f0 204 OC_Config.OCPolarity = TIM_OCPOLARITY_HIGH;
mbed_official 133:d4dda5c437f0 205 OC_Config.Pulse = sConfig->Commutation_Delay;
mbed_official 133:d4dda5c437f0 206
mbed_official 133:d4dda5c437f0 207 TIM_OC2_SetConfig(htim->Instance, &OC_Config);
mbed_official 133:d4dda5c437f0 208
mbed_official 133:d4dda5c437f0 209 /* Select OC2REF as trigger output on TRGO: write the MMS bits in the TIMx_CR2
mbed_official 133:d4dda5c437f0 210 register to 101 */
mbed_official 133:d4dda5c437f0 211 htim->Instance->CR2 &= ~TIM_CR2_MMS;
mbed_official 133:d4dda5c437f0 212 htim->Instance->CR2 |= TIM_TRGO_OC2REF;
mbed_official 133:d4dda5c437f0 213
mbed_official 133:d4dda5c437f0 214 /* Initialize the TIM state*/
mbed_official 133:d4dda5c437f0 215 htim->State= HAL_TIM_STATE_READY;
mbed_official 133:d4dda5c437f0 216
mbed_official 133:d4dda5c437f0 217 return HAL_OK;
mbed_official 133:d4dda5c437f0 218 }
mbed_official 133:d4dda5c437f0 219
mbed_official 133:d4dda5c437f0 220 /**
mbed_official 133:d4dda5c437f0 221 * @brief DeInitializes the TIM Hall Sensor interface
mbed_official 242:7074e42da0b2 222 * @param htim: pointer to a TIM_HandleTypeDef structure that contains
mbed_official 242:7074e42da0b2 223 * the configuration information for TIM module.
mbed_official 133:d4dda5c437f0 224 * @retval HAL status
mbed_official 133:d4dda5c437f0 225 */
mbed_official 133:d4dda5c437f0 226 HAL_StatusTypeDef HAL_TIMEx_HallSensor_DeInit(TIM_HandleTypeDef *htim)
mbed_official 133:d4dda5c437f0 227 {
mbed_official 133:d4dda5c437f0 228 /* Check the parameters */
mbed_official 133:d4dda5c437f0 229 assert_param(IS_TIM_INSTANCE(htim->Instance));
mbed_official 133:d4dda5c437f0 230
mbed_official 133:d4dda5c437f0 231 htim->State = HAL_TIM_STATE_BUSY;
mbed_official 133:d4dda5c437f0 232
mbed_official 133:d4dda5c437f0 233 /* Disable the TIM Peripheral Clock */
mbed_official 133:d4dda5c437f0 234 __HAL_TIM_DISABLE(htim);
mbed_official 133:d4dda5c437f0 235
mbed_official 133:d4dda5c437f0 236 /* DeInit the low level hardware: GPIO, CLOCK, NVIC */
mbed_official 133:d4dda5c437f0 237 HAL_TIMEx_HallSensor_MspDeInit(htim);
mbed_official 133:d4dda5c437f0 238
mbed_official 133:d4dda5c437f0 239 /* Change TIM state */
mbed_official 133:d4dda5c437f0 240 htim->State = HAL_TIM_STATE_RESET;
mbed_official 133:d4dda5c437f0 241
mbed_official 133:d4dda5c437f0 242 /* Release Lock */
mbed_official 133:d4dda5c437f0 243 __HAL_UNLOCK(htim);
mbed_official 133:d4dda5c437f0 244
mbed_official 133:d4dda5c437f0 245 return HAL_OK;
mbed_official 133:d4dda5c437f0 246 }
mbed_official 133:d4dda5c437f0 247
mbed_official 133:d4dda5c437f0 248 /**
mbed_official 133:d4dda5c437f0 249 * @brief Initializes the TIM Hall Sensor MSP.
mbed_official 242:7074e42da0b2 250 * @param htim: pointer to a TIM_HandleTypeDef structure that contains
mbed_official 242:7074e42da0b2 251 * the configuration information for TIM module.
mbed_official 133:d4dda5c437f0 252 * @retval None
mbed_official 133:d4dda5c437f0 253 */
mbed_official 133:d4dda5c437f0 254 __weak void HAL_TIMEx_HallSensor_MspInit(TIM_HandleTypeDef *htim)
mbed_official 133:d4dda5c437f0 255 {
mbed_official 133:d4dda5c437f0 256 /* NOTE : This function Should not be modified, when the callback is needed,
mbed_official 133:d4dda5c437f0 257 the HAL_TIMEx_HallSensor_MspInit could be implemented in the user file
mbed_official 133:d4dda5c437f0 258 */
mbed_official 133:d4dda5c437f0 259 }
mbed_official 133:d4dda5c437f0 260
mbed_official 133:d4dda5c437f0 261 /**
mbed_official 133:d4dda5c437f0 262 * @brief DeInitializes TIM Hall Sensor MSP.
mbed_official 242:7074e42da0b2 263 * @param htim: pointer to a TIM_HandleTypeDef structure that contains
mbed_official 242:7074e42da0b2 264 * the configuration information for TIM module.
mbed_official 133:d4dda5c437f0 265 * @retval None
mbed_official 133:d4dda5c437f0 266 */
mbed_official 133:d4dda5c437f0 267 __weak void HAL_TIMEx_HallSensor_MspDeInit(TIM_HandleTypeDef *htim)
mbed_official 133:d4dda5c437f0 268 {
mbed_official 133:d4dda5c437f0 269 /* NOTE : This function Should not be modified, when the callback is needed,
mbed_official 133:d4dda5c437f0 270 the HAL_TIMEx_HallSensor_MspDeInit could be implemented in the user file
mbed_official 133:d4dda5c437f0 271 */
mbed_official 133:d4dda5c437f0 272 }
mbed_official 133:d4dda5c437f0 273
mbed_official 133:d4dda5c437f0 274 /**
mbed_official 133:d4dda5c437f0 275 * @brief Starts the TIM Hall Sensor Interface.
mbed_official 242:7074e42da0b2 276 * @param htim: pointer to a TIM_HandleTypeDef structure that contains
mbed_official 242:7074e42da0b2 277 * the configuration information for TIM module.
mbed_official 133:d4dda5c437f0 278 * @retval HAL status
mbed_official 133:d4dda5c437f0 279 */
mbed_official 133:d4dda5c437f0 280 HAL_StatusTypeDef HAL_TIMEx_HallSensor_Start(TIM_HandleTypeDef *htim)
mbed_official 133:d4dda5c437f0 281 {
mbed_official 133:d4dda5c437f0 282 /* Check the parameters */
mbed_official 133:d4dda5c437f0 283 assert_param(IS_TIM_XOR_INSTANCE(htim->Instance));
mbed_official 133:d4dda5c437f0 284
mbed_official 133:d4dda5c437f0 285 /* Enable the Input Capture channels 1
mbed_official 133:d4dda5c437f0 286 (in the Hall Sensor Interface the Three possible channels that can be used are TIM_CHANNEL_1, TIM_CHANNEL_2 and TIM_CHANNEL_3) */
mbed_official 133:d4dda5c437f0 287 TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_1, TIM_CCx_ENABLE);
mbed_official 133:d4dda5c437f0 288
mbed_official 133:d4dda5c437f0 289 /* Enable the Peripheral */
mbed_official 133:d4dda5c437f0 290 __HAL_TIM_ENABLE(htim);
mbed_official 133:d4dda5c437f0 291
mbed_official 133:d4dda5c437f0 292 /* Return function status */
mbed_official 133:d4dda5c437f0 293 return HAL_OK;
mbed_official 133:d4dda5c437f0 294 }
mbed_official 133:d4dda5c437f0 295
mbed_official 133:d4dda5c437f0 296 /**
mbed_official 133:d4dda5c437f0 297 * @brief Stops the TIM Hall sensor Interface.
mbed_official 242:7074e42da0b2 298 * @param htim: pointer to a TIM_HandleTypeDef structure that contains
mbed_official 242:7074e42da0b2 299 * the configuration information for TIM module.
mbed_official 133:d4dda5c437f0 300 * @retval HAL status
mbed_official 133:d4dda5c437f0 301 */
mbed_official 133:d4dda5c437f0 302 HAL_StatusTypeDef HAL_TIMEx_HallSensor_Stop(TIM_HandleTypeDef *htim)
mbed_official 133:d4dda5c437f0 303 {
mbed_official 133:d4dda5c437f0 304 /* Check the parameters */
mbed_official 133:d4dda5c437f0 305 assert_param(IS_TIM_XOR_INSTANCE(htim->Instance));
mbed_official 133:d4dda5c437f0 306
mbed_official 133:d4dda5c437f0 307 /* Disable the Input Capture channels 1, 2 and 3
mbed_official 133:d4dda5c437f0 308 (in the Hall Sensor Interface the Three possible channels that can be used are TIM_CHANNEL_1, TIM_CHANNEL_2 and TIM_CHANNEL_3) */
mbed_official 133:d4dda5c437f0 309 TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_1, TIM_CCx_DISABLE);
mbed_official 133:d4dda5c437f0 310
mbed_official 133:d4dda5c437f0 311 /* Disable the Peripheral */
mbed_official 133:d4dda5c437f0 312 __HAL_TIM_DISABLE(htim);
mbed_official 133:d4dda5c437f0 313
mbed_official 133:d4dda5c437f0 314 /* Return function status */
mbed_official 133:d4dda5c437f0 315 return HAL_OK;
mbed_official 133:d4dda5c437f0 316 }
mbed_official 133:d4dda5c437f0 317
mbed_official 133:d4dda5c437f0 318 /**
mbed_official 133:d4dda5c437f0 319 * @brief Starts the TIM Hall Sensor Interface in interrupt mode.
mbed_official 242:7074e42da0b2 320 * @param htim: pointer to a TIM_HandleTypeDef structure that contains
mbed_official 242:7074e42da0b2 321 * the configuration information for TIM module.
mbed_official 133:d4dda5c437f0 322 * @retval HAL status
mbed_official 133:d4dda5c437f0 323 */
mbed_official 133:d4dda5c437f0 324 HAL_StatusTypeDef HAL_TIMEx_HallSensor_Start_IT(TIM_HandleTypeDef *htim)
mbed_official 133:d4dda5c437f0 325 {
mbed_official 133:d4dda5c437f0 326 /* Check the parameters */
mbed_official 133:d4dda5c437f0 327 assert_param(IS_TIM_XOR_INSTANCE(htim->Instance));
mbed_official 133:d4dda5c437f0 328
mbed_official 133:d4dda5c437f0 329 /* Enable the capture compare Interrupts 1 event */
mbed_official 133:d4dda5c437f0 330 __HAL_TIM_ENABLE_IT(htim, TIM_IT_CC1);
mbed_official 133:d4dda5c437f0 331
mbed_official 133:d4dda5c437f0 332 /* Enable the Input Capture channels 1
mbed_official 133:d4dda5c437f0 333 (in the Hall Sensor Interface the Three possible channels that can be used are TIM_CHANNEL_1, TIM_CHANNEL_2 and TIM_CHANNEL_3) */
mbed_official 133:d4dda5c437f0 334 TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_1, TIM_CCx_ENABLE);
mbed_official 133:d4dda5c437f0 335
mbed_official 133:d4dda5c437f0 336 /* Enable the Peripheral */
mbed_official 133:d4dda5c437f0 337 __HAL_TIM_ENABLE(htim);
mbed_official 133:d4dda5c437f0 338
mbed_official 133:d4dda5c437f0 339 /* Return function status */
mbed_official 133:d4dda5c437f0 340 return HAL_OK;
mbed_official 133:d4dda5c437f0 341 }
mbed_official 133:d4dda5c437f0 342
mbed_official 133:d4dda5c437f0 343 /**
mbed_official 133:d4dda5c437f0 344 * @brief Stops the TIM Hall Sensor Interface in interrupt mode.
mbed_official 242:7074e42da0b2 345 * @param htim: pointer to a TIM_HandleTypeDef structure that contains
mbed_official 242:7074e42da0b2 346 * the configuration information for TIM module.
mbed_official 133:d4dda5c437f0 347 * @retval HAL status
mbed_official 133:d4dda5c437f0 348 */
mbed_official 133:d4dda5c437f0 349 HAL_StatusTypeDef HAL_TIMEx_HallSensor_Stop_IT(TIM_HandleTypeDef *htim)
mbed_official 133:d4dda5c437f0 350 {
mbed_official 133:d4dda5c437f0 351 /* Check the parameters */
mbed_official 133:d4dda5c437f0 352 assert_param(IS_TIM_XOR_INSTANCE(htim->Instance));
mbed_official 133:d4dda5c437f0 353
mbed_official 133:d4dda5c437f0 354 /* Disable the Input Capture channels 1
mbed_official 133:d4dda5c437f0 355 (in the Hall Sensor Interface the Three possible channels that can be used are TIM_CHANNEL_1, TIM_CHANNEL_2 and TIM_CHANNEL_3) */
mbed_official 133:d4dda5c437f0 356 TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_1, TIM_CCx_DISABLE);
mbed_official 133:d4dda5c437f0 357
mbed_official 133:d4dda5c437f0 358 /* Disable the capture compare Interrupts event */
mbed_official 133:d4dda5c437f0 359 __HAL_TIM_DISABLE_IT(htim, TIM_IT_CC1);
mbed_official 133:d4dda5c437f0 360
mbed_official 133:d4dda5c437f0 361 /* Disable the Peripheral */
mbed_official 133:d4dda5c437f0 362 __HAL_TIM_DISABLE(htim);
mbed_official 133:d4dda5c437f0 363
mbed_official 133:d4dda5c437f0 364 /* Return function status */
mbed_official 133:d4dda5c437f0 365 return HAL_OK;
mbed_official 133:d4dda5c437f0 366 }
mbed_official 133:d4dda5c437f0 367
mbed_official 133:d4dda5c437f0 368 /**
mbed_official 133:d4dda5c437f0 369 * @brief Starts the TIM Hall Sensor Interface in DMA mode.
mbed_official 242:7074e42da0b2 370 * @param htim: pointer to a TIM_HandleTypeDef structure that contains
mbed_official 242:7074e42da0b2 371 * the configuration information for TIM module.
mbed_official 133:d4dda5c437f0 372 * @param pData: The destination Buffer address.
mbed_official 133:d4dda5c437f0 373 * @param Length: The length of data to be transferred from TIM peripheral to memory.
mbed_official 133:d4dda5c437f0 374 * @retval HAL status
mbed_official 133:d4dda5c437f0 375 */
mbed_official 133:d4dda5c437f0 376 HAL_StatusTypeDef HAL_TIMEx_HallSensor_Start_DMA(TIM_HandleTypeDef *htim, uint32_t *pData, uint16_t Length)
mbed_official 133:d4dda5c437f0 377 {
mbed_official 133:d4dda5c437f0 378 /* Check the parameters */
mbed_official 133:d4dda5c437f0 379 assert_param(IS_TIM_XOR_INSTANCE(htim->Instance));
mbed_official 133:d4dda5c437f0 380
mbed_official 133:d4dda5c437f0 381 if((htim->State == HAL_TIM_STATE_BUSY))
mbed_official 133:d4dda5c437f0 382 {
mbed_official 133:d4dda5c437f0 383 return HAL_BUSY;
mbed_official 133:d4dda5c437f0 384 }
mbed_official 133:d4dda5c437f0 385 else if((htim->State == HAL_TIM_STATE_READY))
mbed_official 133:d4dda5c437f0 386 {
mbed_official 133:d4dda5c437f0 387 if(((uint32_t)pData == 0 ) && (Length > 0))
mbed_official 133:d4dda5c437f0 388 {
mbed_official 133:d4dda5c437f0 389 return HAL_ERROR;
mbed_official 133:d4dda5c437f0 390 }
mbed_official 133:d4dda5c437f0 391 else
mbed_official 133:d4dda5c437f0 392 {
mbed_official 133:d4dda5c437f0 393 htim->State = HAL_TIM_STATE_BUSY;
mbed_official 133:d4dda5c437f0 394 }
mbed_official 133:d4dda5c437f0 395 }
mbed_official 133:d4dda5c437f0 396 /* Enable the Input Capture channels 1
mbed_official 133:d4dda5c437f0 397 (in the Hall Sensor Interface the Three possible channels that can be used are TIM_CHANNEL_1, TIM_CHANNEL_2 and TIM_CHANNEL_3) */
mbed_official 133:d4dda5c437f0 398 TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_1, TIM_CCx_ENABLE);
mbed_official 133:d4dda5c437f0 399
mbed_official 133:d4dda5c437f0 400 /* Set the DMA Input Capture 1 Callback */
mbed_official 133:d4dda5c437f0 401 htim->hdma[TIM_DMA_ID_CC1]->XferCpltCallback = HAL_TIM_DMACaptureCplt;
mbed_official 133:d4dda5c437f0 402 /* Set the DMA error callback */
mbed_official 133:d4dda5c437f0 403 htim->hdma[TIM_DMA_ID_CC1]->XferErrorCallback = HAL_TIM_DMAError ;
mbed_official 133:d4dda5c437f0 404
mbed_official 133:d4dda5c437f0 405 /* Enable the DMA Stream for Capture 1*/
mbed_official 133:d4dda5c437f0 406 HAL_DMA_Start_IT(htim->hdma[TIM_DMA_ID_CC1], (uint32_t)&htim->Instance->CCR1, (uint32_t)pData, Length);
mbed_official 133:d4dda5c437f0 407
mbed_official 133:d4dda5c437f0 408 /* Enable the capture compare 1 Interrupt */
mbed_official 133:d4dda5c437f0 409 __HAL_TIM_ENABLE_DMA(htim, TIM_DMA_CC1);
mbed_official 133:d4dda5c437f0 410
mbed_official 133:d4dda5c437f0 411 /* Enable the Peripheral */
mbed_official 133:d4dda5c437f0 412 __HAL_TIM_ENABLE(htim);
mbed_official 133:d4dda5c437f0 413
mbed_official 133:d4dda5c437f0 414 /* Return function status */
mbed_official 133:d4dda5c437f0 415 return HAL_OK;
mbed_official 133:d4dda5c437f0 416 }
mbed_official 133:d4dda5c437f0 417
mbed_official 133:d4dda5c437f0 418 /**
mbed_official 133:d4dda5c437f0 419 * @brief Stops the TIM Hall Sensor Interface in DMA mode.
mbed_official 242:7074e42da0b2 420 * @param htim: pointer to a TIM_HandleTypeDef structure that contains
mbed_official 242:7074e42da0b2 421 * the configuration information for TIM module.
mbed_official 133:d4dda5c437f0 422 * @retval HAL status
mbed_official 133:d4dda5c437f0 423 */
mbed_official 133:d4dda5c437f0 424 HAL_StatusTypeDef HAL_TIMEx_HallSensor_Stop_DMA(TIM_HandleTypeDef *htim)
mbed_official 133:d4dda5c437f0 425 {
mbed_official 133:d4dda5c437f0 426 /* Check the parameters */
mbed_official 133:d4dda5c437f0 427 assert_param(IS_TIM_XOR_INSTANCE(htim->Instance));
mbed_official 133:d4dda5c437f0 428
mbed_official 133:d4dda5c437f0 429 /* Disable the Input Capture channels 1
mbed_official 133:d4dda5c437f0 430 (in the Hall Sensor Interface the Three possible channels that can be used are TIM_CHANNEL_1, TIM_CHANNEL_2 and TIM_CHANNEL_3) */
mbed_official 133:d4dda5c437f0 431 TIM_CCxChannelCmd(htim->Instance, TIM_CHANNEL_1, TIM_CCx_DISABLE);
mbed_official 133:d4dda5c437f0 432
mbed_official 133:d4dda5c437f0 433
mbed_official 133:d4dda5c437f0 434 /* Disable the capture compare Interrupts 1 event */
mbed_official 133:d4dda5c437f0 435 __HAL_TIM_DISABLE_DMA(htim, TIM_DMA_CC1);
mbed_official 133:d4dda5c437f0 436
mbed_official 133:d4dda5c437f0 437 /* Disable the Peripheral */
mbed_official 133:d4dda5c437f0 438 __HAL_TIM_DISABLE(htim);
mbed_official 133:d4dda5c437f0 439
mbed_official 133:d4dda5c437f0 440 /* Return function status */
mbed_official 133:d4dda5c437f0 441 return HAL_OK;
mbed_official 133:d4dda5c437f0 442 }
mbed_official 133:d4dda5c437f0 443
mbed_official 133:d4dda5c437f0 444 /**
mbed_official 133:d4dda5c437f0 445 * @}
mbed_official 133:d4dda5c437f0 446 */
mbed_official 133:d4dda5c437f0 447
mbed_official 133:d4dda5c437f0 448 /** @defgroup TIMEx_Group2 Timer Complementary Output Compare functions
mbed_official 133:d4dda5c437f0 449 * @brief Timer Complementary Output Compare functions
mbed_official 133:d4dda5c437f0 450 *
mbed_official 133:d4dda5c437f0 451 @verbatim
mbed_official 133:d4dda5c437f0 452 ==============================================================================
mbed_official 133:d4dda5c437f0 453 ##### Timer Complementary Output Compare functions #####
mbed_official 133:d4dda5c437f0 454 ==============================================================================
mbed_official 133:d4dda5c437f0 455 [..]
mbed_official 133:d4dda5c437f0 456 This section provides functions allowing to:
mbed_official 133:d4dda5c437f0 457 (+) Start the Complementary Output Compare/PWM.
mbed_official 133:d4dda5c437f0 458 (+) Stop the Complementary Output Compare/PWM.
mbed_official 133:d4dda5c437f0 459 (+) Start the Complementary Output Compare/PWM and enable interrupts.
mbed_official 133:d4dda5c437f0 460 (+) Stop the Complementary Output Compare/PWM and disable interrupts.
mbed_official 133:d4dda5c437f0 461 (+) Start the Complementary Output Compare/PWM and enable DMA transfers.
mbed_official 133:d4dda5c437f0 462 (+) Stop the Complementary Output Compare/PWM and disable DMA transfers.
mbed_official 133:d4dda5c437f0 463
mbed_official 133:d4dda5c437f0 464 @endverbatim
mbed_official 133:d4dda5c437f0 465 * @{
mbed_official 133:d4dda5c437f0 466 */
mbed_official 133:d4dda5c437f0 467
mbed_official 133:d4dda5c437f0 468 /**
mbed_official 133:d4dda5c437f0 469 * @brief Starts the TIM Output Compare signal generation on the complementary
mbed_official 133:d4dda5c437f0 470 * output.
mbed_official 242:7074e42da0b2 471 * @param htim: pointer to a TIM_HandleTypeDef structure that contains
mbed_official 242:7074e42da0b2 472 * the configuration information for TIM module.
mbed_official 242:7074e42da0b2 473 * @param Channel: TIM Channel to be enabled.
mbed_official 133:d4dda5c437f0 474 * This parameter can be one of the following values:
mbed_official 242:7074e42da0b2 475 * TIM_CHANNEL_1/
mbed_official 242:7074e42da0b2 476 * TIM_CHANNEL_2/
mbed_official 242:7074e42da0b2 477 * TIM_CHANNEL_3/
mbed_official 242:7074e42da0b2 478 * TIM_CHANNEL_4
mbed_official 133:d4dda5c437f0 479 * @retval HAL status
mbed_official 133:d4dda5c437f0 480 */
mbed_official 133:d4dda5c437f0 481 HAL_StatusTypeDef HAL_TIMEx_OCN_Start(TIM_HandleTypeDef *htim, uint32_t Channel)
mbed_official 133:d4dda5c437f0 482 {
mbed_official 133:d4dda5c437f0 483 /* Check the parameters */
mbed_official 133:d4dda5c437f0 484 assert_param(IS_TIM_CCXN_INSTANCE(htim->Instance, Channel));
mbed_official 133:d4dda5c437f0 485
mbed_official 133:d4dda5c437f0 486 /* Enable the Capture compare channel N */
mbed_official 133:d4dda5c437f0 487 TIM_CCxNChannelCmd(htim->Instance, Channel, TIM_CCxN_ENABLE);
mbed_official 133:d4dda5c437f0 488
mbed_official 133:d4dda5c437f0 489 /* Enable the Main Ouput */
mbed_official 133:d4dda5c437f0 490 __HAL_TIM_MOE_ENABLE(htim);
mbed_official 133:d4dda5c437f0 491
mbed_official 133:d4dda5c437f0 492 /* Enable the Peripheral */
mbed_official 133:d4dda5c437f0 493 __HAL_TIM_ENABLE(htim);
mbed_official 133:d4dda5c437f0 494
mbed_official 133:d4dda5c437f0 495 /* Return function status */
mbed_official 133:d4dda5c437f0 496 return HAL_OK;
mbed_official 133:d4dda5c437f0 497 }
mbed_official 133:d4dda5c437f0 498
mbed_official 133:d4dda5c437f0 499 /**
mbed_official 133:d4dda5c437f0 500 * @brief Stops the TIM Output Compare signal generation on the complementary
mbed_official 133:d4dda5c437f0 501 * output.
mbed_official 242:7074e42da0b2 502 * @param htim: pointer to a TIM_HandleTypeDef structure that contains
mbed_official 242:7074e42da0b2 503 * the configuration information for TIM module.
mbed_official 242:7074e42da0b2 504 * @param Channel: TIM Channel to be disabled.
mbed_official 133:d4dda5c437f0 505 * This parameter can be one of the following values:
mbed_official 242:7074e42da0b2 506 * TIM_CHANNEL_1/
mbed_official 242:7074e42da0b2 507 * TIM_CHANNEL_2/
mbed_official 242:7074e42da0b2 508 * TIM_CHANNEL_3/
mbed_official 242:7074e42da0b2 509 * TIM_CHANNEL_4
mbed_official 133:d4dda5c437f0 510 * @retval HAL status
mbed_official 133:d4dda5c437f0 511 */
mbed_official 133:d4dda5c437f0 512 HAL_StatusTypeDef HAL_TIMEx_OCN_Stop(TIM_HandleTypeDef *htim, uint32_t Channel)
mbed_official 133:d4dda5c437f0 513 {
mbed_official 133:d4dda5c437f0 514 /* Check the parameters */
mbed_official 133:d4dda5c437f0 515 assert_param(IS_TIM_CCXN_INSTANCE(htim->Instance, Channel));
mbed_official 133:d4dda5c437f0 516
mbed_official 133:d4dda5c437f0 517 /* Disable the Capture compare channel N */
mbed_official 133:d4dda5c437f0 518 TIM_CCxNChannelCmd(htim->Instance, Channel, TIM_CCxN_DISABLE);
mbed_official 133:d4dda5c437f0 519
mbed_official 133:d4dda5c437f0 520 /* Disable the Main Ouput */
mbed_official 133:d4dda5c437f0 521 __HAL_TIM_MOE_DISABLE(htim);
mbed_official 133:d4dda5c437f0 522
mbed_official 133:d4dda5c437f0 523 /* Disable the Peripheral */
mbed_official 133:d4dda5c437f0 524 __HAL_TIM_DISABLE(htim);
mbed_official 133:d4dda5c437f0 525
mbed_official 133:d4dda5c437f0 526 /* Return function status */
mbed_official 133:d4dda5c437f0 527 return HAL_OK;
mbed_official 133:d4dda5c437f0 528 }
mbed_official 133:d4dda5c437f0 529
mbed_official 133:d4dda5c437f0 530 /**
mbed_official 133:d4dda5c437f0 531 * @brief Starts the TIM Output Compare signal generation in interrupt mode
mbed_official 133:d4dda5c437f0 532 * on the complementary output.
mbed_official 242:7074e42da0b2 533 * @param htim: pointer to a TIM_HandleTypeDef structure that contains
mbed_official 242:7074e42da0b2 534 * the configuration information for TIM module.
mbed_official 242:7074e42da0b2 535 * @param Channel: TIM Channel to be enabled.
mbed_official 133:d4dda5c437f0 536 * This parameter can be one of the following values:
mbed_official 242:7074e42da0b2 537 * TIM_CHANNEL_1/
mbed_official 242:7074e42da0b2 538 * TIM_CHANNEL_2/
mbed_official 242:7074e42da0b2 539 * TIM_CHANNEL_3/
mbed_official 242:7074e42da0b2 540 * TIM_CHANNEL_4
mbed_official 133:d4dda5c437f0 541 * @retval HAL status
mbed_official 133:d4dda5c437f0 542 */
mbed_official 133:d4dda5c437f0 543 HAL_StatusTypeDef HAL_TIMEx_OCN_Start_IT(TIM_HandleTypeDef *htim, uint32_t Channel)
mbed_official 133:d4dda5c437f0 544 {
mbed_official 133:d4dda5c437f0 545 /* Check the parameters */
mbed_official 133:d4dda5c437f0 546 assert_param(IS_TIM_CCXN_INSTANCE(htim->Instance, Channel));
mbed_official 133:d4dda5c437f0 547
mbed_official 133:d4dda5c437f0 548 switch (Channel)
mbed_official 133:d4dda5c437f0 549 {
mbed_official 133:d4dda5c437f0 550 case TIM_CHANNEL_1:
mbed_official 133:d4dda5c437f0 551 {
mbed_official 133:d4dda5c437f0 552 /* Enable the TIM Output Compare interrupt */
mbed_official 133:d4dda5c437f0 553 __HAL_TIM_ENABLE_IT(htim, TIM_IT_CC1);
mbed_official 133:d4dda5c437f0 554 }
mbed_official 133:d4dda5c437f0 555 break;
mbed_official 133:d4dda5c437f0 556
mbed_official 133:d4dda5c437f0 557 case TIM_CHANNEL_2:
mbed_official 133:d4dda5c437f0 558 {
mbed_official 133:d4dda5c437f0 559 /* Enable the TIM Output Compare interrupt */
mbed_official 133:d4dda5c437f0 560 __HAL_TIM_ENABLE_IT(htim, TIM_IT_CC2);
mbed_official 133:d4dda5c437f0 561 }
mbed_official 133:d4dda5c437f0 562 break;
mbed_official 133:d4dda5c437f0 563
mbed_official 133:d4dda5c437f0 564 case TIM_CHANNEL_3:
mbed_official 133:d4dda5c437f0 565 {
mbed_official 133:d4dda5c437f0 566 /* Enable the TIM Output Compare interrupt */
mbed_official 133:d4dda5c437f0 567 __HAL_TIM_ENABLE_IT(htim, TIM_IT_CC3);
mbed_official 133:d4dda5c437f0 568 }
mbed_official 133:d4dda5c437f0 569 break;
mbed_official 133:d4dda5c437f0 570
mbed_official 133:d4dda5c437f0 571 case TIM_CHANNEL_4:
mbed_official 133:d4dda5c437f0 572 {
mbed_official 133:d4dda5c437f0 573 /* Enable the TIM Output Compare interrupt */
mbed_official 133:d4dda5c437f0 574 __HAL_TIM_ENABLE_IT(htim, TIM_IT_CC4);
mbed_official 133:d4dda5c437f0 575 }
mbed_official 133:d4dda5c437f0 576 break;
mbed_official 133:d4dda5c437f0 577
mbed_official 133:d4dda5c437f0 578 default:
mbed_official 133:d4dda5c437f0 579 break;
mbed_official 133:d4dda5c437f0 580 }
mbed_official 133:d4dda5c437f0 581
mbed_official 133:d4dda5c437f0 582 /* Enable the Capture compare channel N */
mbed_official 133:d4dda5c437f0 583 TIM_CCxNChannelCmd(htim->Instance, Channel, TIM_CCxN_ENABLE);
mbed_official 133:d4dda5c437f0 584
mbed_official 133:d4dda5c437f0 585 /* Enable the Main Ouput */
mbed_official 133:d4dda5c437f0 586 __HAL_TIM_MOE_ENABLE(htim);
mbed_official 133:d4dda5c437f0 587
mbed_official 133:d4dda5c437f0 588 /* Enable the Peripheral */
mbed_official 133:d4dda5c437f0 589 __HAL_TIM_ENABLE(htim);
mbed_official 133:d4dda5c437f0 590
mbed_official 133:d4dda5c437f0 591 /* Return function status */
mbed_official 133:d4dda5c437f0 592 return HAL_OK;
mbed_official 133:d4dda5c437f0 593 }
mbed_official 133:d4dda5c437f0 594
mbed_official 133:d4dda5c437f0 595 /**
mbed_official 133:d4dda5c437f0 596 * @brief Stops the TIM Output Compare signal generation in interrupt mode
mbed_official 133:d4dda5c437f0 597 * on the complementary output.
mbed_official 242:7074e42da0b2 598 * @param htim: pointer to a TIM_HandleTypeDef structure that contains
mbed_official 242:7074e42da0b2 599 * the configuration information for TIM module.
mbed_official 242:7074e42da0b2 600 * @param Channel: TIM Channel to be disabled.
mbed_official 133:d4dda5c437f0 601 * This parameter can be one of the following values:
mbed_official 242:7074e42da0b2 602 * TIM_CHANNEL_1/
mbed_official 242:7074e42da0b2 603 * TIM_CHANNEL_2/
mbed_official 242:7074e42da0b2 604 * TIM_CHANNEL_3/
mbed_official 242:7074e42da0b2 605 * TIM_CHANNEL_4
mbed_official 133:d4dda5c437f0 606 * @retval HAL status
mbed_official 133:d4dda5c437f0 607 */
mbed_official 133:d4dda5c437f0 608 HAL_StatusTypeDef HAL_TIMEx_OCN_Stop_IT(TIM_HandleTypeDef *htim, uint32_t Channel)
mbed_official 133:d4dda5c437f0 609 {
mbed_official 133:d4dda5c437f0 610 /* Check the parameters */
mbed_official 133:d4dda5c437f0 611 assert_param(IS_TIM_CCXN_INSTANCE(htim->Instance, Channel));
mbed_official 133:d4dda5c437f0 612
mbed_official 133:d4dda5c437f0 613 switch (Channel)
mbed_official 133:d4dda5c437f0 614 {
mbed_official 133:d4dda5c437f0 615 case TIM_CHANNEL_1:
mbed_official 133:d4dda5c437f0 616 {
mbed_official 133:d4dda5c437f0 617 /* Disable the TIM Output Compare interrupt */
mbed_official 133:d4dda5c437f0 618 __HAL_TIM_DISABLE_IT(htim, TIM_IT_CC1);
mbed_official 133:d4dda5c437f0 619 }
mbed_official 133:d4dda5c437f0 620 break;
mbed_official 133:d4dda5c437f0 621
mbed_official 133:d4dda5c437f0 622 case TIM_CHANNEL_2:
mbed_official 133:d4dda5c437f0 623 {
mbed_official 133:d4dda5c437f0 624 /* Disable the TIM Output Compare interrupt */
mbed_official 133:d4dda5c437f0 625 __HAL_TIM_DISABLE_IT(htim, TIM_IT_CC2);
mbed_official 133:d4dda5c437f0 626 }
mbed_official 133:d4dda5c437f0 627 break;
mbed_official 133:d4dda5c437f0 628
mbed_official 133:d4dda5c437f0 629 case TIM_CHANNEL_3:
mbed_official 133:d4dda5c437f0 630 {
mbed_official 133:d4dda5c437f0 631 /* Disable the TIM Output Compare interrupt */
mbed_official 133:d4dda5c437f0 632 __HAL_TIM_DISABLE_IT(htim, TIM_IT_CC3);
mbed_official 133:d4dda5c437f0 633 }
mbed_official 133:d4dda5c437f0 634 break;
mbed_official 133:d4dda5c437f0 635
mbed_official 133:d4dda5c437f0 636 case TIM_CHANNEL_4:
mbed_official 133:d4dda5c437f0 637 {
mbed_official 133:d4dda5c437f0 638 /* Disable the TIM Output Compare interrupt */
mbed_official 133:d4dda5c437f0 639 __HAL_TIM_DISABLE_IT(htim, TIM_IT_CC4);
mbed_official 133:d4dda5c437f0 640 }
mbed_official 133:d4dda5c437f0 641 break;
mbed_official 133:d4dda5c437f0 642
mbed_official 133:d4dda5c437f0 643 default:
mbed_official 133:d4dda5c437f0 644 break;
mbed_official 133:d4dda5c437f0 645 }
mbed_official 133:d4dda5c437f0 646
mbed_official 133:d4dda5c437f0 647 /* Disable the Capture compare channel N */
mbed_official 133:d4dda5c437f0 648 TIM_CCxNChannelCmd(htim->Instance, Channel, TIM_CCxN_DISABLE);
mbed_official 133:d4dda5c437f0 649
mbed_official 133:d4dda5c437f0 650 /* Disable the Main Ouput */
mbed_official 133:d4dda5c437f0 651 __HAL_TIM_MOE_DISABLE(htim);
mbed_official 133:d4dda5c437f0 652
mbed_official 133:d4dda5c437f0 653 /* Disable the Peripheral */
mbed_official 133:d4dda5c437f0 654 __HAL_TIM_DISABLE(htim);
mbed_official 133:d4dda5c437f0 655
mbed_official 133:d4dda5c437f0 656 /* Return function status */
mbed_official 133:d4dda5c437f0 657 return HAL_OK;
mbed_official 133:d4dda5c437f0 658 }
mbed_official 133:d4dda5c437f0 659
mbed_official 133:d4dda5c437f0 660 /**
mbed_official 133:d4dda5c437f0 661 * @brief Starts the TIM Output Compare signal generation in DMA mode
mbed_official 133:d4dda5c437f0 662 * on the complementary output.
mbed_official 242:7074e42da0b2 663 * @param htim: pointer to a TIM_HandleTypeDef structure that contains
mbed_official 242:7074e42da0b2 664 * the configuration information for TIM module.
mbed_official 242:7074e42da0b2 665 * @param Channel: TIM Channel to be enabled.
mbed_official 133:d4dda5c437f0 666 * This parameter can be one of the following values:
mbed_official 242:7074e42da0b2 667 * TIM_CHANNEL_1/
mbed_official 242:7074e42da0b2 668 * TIM_CHANNEL_2/
mbed_official 242:7074e42da0b2 669 * TIM_CHANNEL_3/
mbed_official 242:7074e42da0b2 670 * TIM_CHANNEL_4
mbed_official 133:d4dda5c437f0 671 * @param pData: The source Buffer address.
mbed_official 133:d4dda5c437f0 672 * @param Length: The length of data to be transferred from memory to TIM peripheral
mbed_official 133:d4dda5c437f0 673 * @retval HAL status
mbed_official 133:d4dda5c437f0 674 */
mbed_official 133:d4dda5c437f0 675 HAL_StatusTypeDef HAL_TIMEx_OCN_Start_DMA(TIM_HandleTypeDef *htim, uint32_t Channel, uint32_t *pData, uint16_t Length)
mbed_official 133:d4dda5c437f0 676 {
mbed_official 133:d4dda5c437f0 677 /* Check the parameters */
mbed_official 133:d4dda5c437f0 678 assert_param(IS_TIM_CCXN_INSTANCE(htim->Instance, Channel));
mbed_official 133:d4dda5c437f0 679
mbed_official 133:d4dda5c437f0 680 if((htim->State == HAL_TIM_STATE_BUSY))
mbed_official 133:d4dda5c437f0 681 {
mbed_official 133:d4dda5c437f0 682 return HAL_BUSY;
mbed_official 133:d4dda5c437f0 683 }
mbed_official 133:d4dda5c437f0 684 else if((htim->State == HAL_TIM_STATE_READY))
mbed_official 133:d4dda5c437f0 685 {
mbed_official 133:d4dda5c437f0 686 if(((uint32_t)pData == 0 ) && (Length > 0))
mbed_official 133:d4dda5c437f0 687 {
mbed_official 133:d4dda5c437f0 688 return HAL_ERROR;
mbed_official 133:d4dda5c437f0 689 }
mbed_official 133:d4dda5c437f0 690 else
mbed_official 133:d4dda5c437f0 691 {
mbed_official 133:d4dda5c437f0 692 htim->State = HAL_TIM_STATE_BUSY;
mbed_official 133:d4dda5c437f0 693 }
mbed_official 133:d4dda5c437f0 694 }
mbed_official 133:d4dda5c437f0 695 switch (Channel)
mbed_official 133:d4dda5c437f0 696 {
mbed_official 133:d4dda5c437f0 697 case TIM_CHANNEL_1:
mbed_official 133:d4dda5c437f0 698 {
mbed_official 133:d4dda5c437f0 699 /* Set the DMA Period elapsed callback */
mbed_official 133:d4dda5c437f0 700 htim->hdma[TIM_DMA_ID_CC1]->XferCpltCallback = HAL_TIM_DMADelayPulseCplt;
mbed_official 133:d4dda5c437f0 701
mbed_official 133:d4dda5c437f0 702 /* Set the DMA error callback */
mbed_official 133:d4dda5c437f0 703 htim->hdma[TIM_DMA_ID_CC1]->XferErrorCallback = HAL_TIM_DMAError ;
mbed_official 133:d4dda5c437f0 704
mbed_official 133:d4dda5c437f0 705 /* Enable the DMA Stream */
mbed_official 133:d4dda5c437f0 706 HAL_DMA_Start_IT(htim->hdma[TIM_DMA_ID_CC1], (uint32_t)pData, (uint32_t)&htim->Instance->CCR1, Length);
mbed_official 133:d4dda5c437f0 707
mbed_official 133:d4dda5c437f0 708 /* Enable the TIM Output Compare DMA request */
mbed_official 133:d4dda5c437f0 709 __HAL_TIM_ENABLE_DMA(htim, TIM_DMA_CC1);
mbed_official 133:d4dda5c437f0 710 }
mbed_official 133:d4dda5c437f0 711 break;
mbed_official 133:d4dda5c437f0 712
mbed_official 133:d4dda5c437f0 713 case TIM_CHANNEL_2:
mbed_official 133:d4dda5c437f0 714 {
mbed_official 133:d4dda5c437f0 715 /* Set the DMA Period elapsed callback */
mbed_official 133:d4dda5c437f0 716 htim->hdma[TIM_DMA_ID_CC2]->XferCpltCallback = HAL_TIM_DMADelayPulseCplt;
mbed_official 133:d4dda5c437f0 717
mbed_official 133:d4dda5c437f0 718 /* Set the DMA error callback */
mbed_official 133:d4dda5c437f0 719 htim->hdma[TIM_DMA_ID_CC2]->XferErrorCallback = HAL_TIM_DMAError ;
mbed_official 133:d4dda5c437f0 720
mbed_official 133:d4dda5c437f0 721 /* Enable the DMA Stream */
mbed_official 133:d4dda5c437f0 722 HAL_DMA_Start_IT(htim->hdma[TIM_DMA_ID_CC2], (uint32_t)pData, (uint32_t)&htim->Instance->CCR2, Length);
mbed_official 133:d4dda5c437f0 723
mbed_official 133:d4dda5c437f0 724 /* Enable the TIM Output Compare DMA request */
mbed_official 133:d4dda5c437f0 725 __HAL_TIM_ENABLE_DMA(htim, TIM_DMA_CC2);
mbed_official 133:d4dda5c437f0 726 }
mbed_official 133:d4dda5c437f0 727 break;
mbed_official 133:d4dda5c437f0 728
mbed_official 133:d4dda5c437f0 729 case TIM_CHANNEL_3:
mbed_official 133:d4dda5c437f0 730 {
mbed_official 133:d4dda5c437f0 731 /* Set the DMA Period elapsed callback */
mbed_official 133:d4dda5c437f0 732 htim->hdma[TIM_DMA_ID_CC3]->XferCpltCallback = HAL_TIM_DMADelayPulseCplt;
mbed_official 133:d4dda5c437f0 733
mbed_official 133:d4dda5c437f0 734 /* Set the DMA error callback */
mbed_official 133:d4dda5c437f0 735 htim->hdma[TIM_DMA_ID_CC3]->XferErrorCallback = HAL_TIM_DMAError ;
mbed_official 133:d4dda5c437f0 736
mbed_official 133:d4dda5c437f0 737 /* Enable the DMA Stream */
mbed_official 133:d4dda5c437f0 738 HAL_DMA_Start_IT(htim->hdma[TIM_DMA_ID_CC3], (uint32_t)pData, (uint32_t)&htim->Instance->CCR3,Length);
mbed_official 133:d4dda5c437f0 739
mbed_official 133:d4dda5c437f0 740 /* Enable the TIM Output Compare DMA request */
mbed_official 133:d4dda5c437f0 741 __HAL_TIM_ENABLE_DMA(htim, TIM_DMA_CC3);
mbed_official 133:d4dda5c437f0 742 }
mbed_official 133:d4dda5c437f0 743 break;
mbed_official 133:d4dda5c437f0 744
mbed_official 133:d4dda5c437f0 745 case TIM_CHANNEL_4:
mbed_official 133:d4dda5c437f0 746 {
mbed_official 133:d4dda5c437f0 747 /* Set the DMA Period elapsed callback */
mbed_official 133:d4dda5c437f0 748 htim->hdma[TIM_DMA_ID_CC4]->XferCpltCallback = HAL_TIM_DMADelayPulseCplt;
mbed_official 133:d4dda5c437f0 749
mbed_official 133:d4dda5c437f0 750 /* Set the DMA error callback */
mbed_official 133:d4dda5c437f0 751 htim->hdma[TIM_DMA_ID_CC4]->XferErrorCallback = HAL_TIM_DMAError ;
mbed_official 133:d4dda5c437f0 752
mbed_official 133:d4dda5c437f0 753 /* Enable the DMA Stream */
mbed_official 133:d4dda5c437f0 754 HAL_DMA_Start_IT(htim->hdma[TIM_DMA_ID_CC4], (uint32_t)pData, (uint32_t)&htim->Instance->CCR4, Length);
mbed_official 133:d4dda5c437f0 755
mbed_official 133:d4dda5c437f0 756 /* Enable the TIM Output Compare DMA request */
mbed_official 133:d4dda5c437f0 757 __HAL_TIM_ENABLE_DMA(htim, TIM_DMA_CC4);
mbed_official 133:d4dda5c437f0 758 }
mbed_official 133:d4dda5c437f0 759 break;
mbed_official 133:d4dda5c437f0 760
mbed_official 133:d4dda5c437f0 761 default:
mbed_official 133:d4dda5c437f0 762 break;
mbed_official 133:d4dda5c437f0 763 }
mbed_official 133:d4dda5c437f0 764
mbed_official 133:d4dda5c437f0 765 /* Enable the Capture compare channel N */
mbed_official 133:d4dda5c437f0 766 TIM_CCxNChannelCmd(htim->Instance, Channel, TIM_CCxN_ENABLE);
mbed_official 133:d4dda5c437f0 767
mbed_official 133:d4dda5c437f0 768 /* Enable the Main Ouput */
mbed_official 133:d4dda5c437f0 769 __HAL_TIM_MOE_ENABLE(htim);
mbed_official 133:d4dda5c437f0 770
mbed_official 133:d4dda5c437f0 771 /* Enable the Peripheral */
mbed_official 133:d4dda5c437f0 772 __HAL_TIM_ENABLE(htim);
mbed_official 133:d4dda5c437f0 773
mbed_official 133:d4dda5c437f0 774 /* Return function status */
mbed_official 133:d4dda5c437f0 775 return HAL_OK;
mbed_official 133:d4dda5c437f0 776 }
mbed_official 133:d4dda5c437f0 777
mbed_official 133:d4dda5c437f0 778 /**
mbed_official 133:d4dda5c437f0 779 * @brief Stops the TIM Output Compare signal generation in DMA mode
mbed_official 133:d4dda5c437f0 780 * on the complementary output.
mbed_official 242:7074e42da0b2 781 * @param htim: pointer to a TIM_HandleTypeDef structure that contains
mbed_official 242:7074e42da0b2 782 * the configuration information for TIM module.
mbed_official 242:7074e42da0b2 783 * @param Channel: TIM Channel to be disabled.
mbed_official 133:d4dda5c437f0 784 * This parameter can be one of the following values:
mbed_official 242:7074e42da0b2 785 * TIM_CHANNEL_1/
mbed_official 242:7074e42da0b2 786 * TIM_CHANNEL_2/
mbed_official 242:7074e42da0b2 787 * TIM_CHANNEL_3/
mbed_official 242:7074e42da0b2 788 * TIM_CHANNEL_4
mbed_official 133:d4dda5c437f0 789 * @retval HAL status
mbed_official 133:d4dda5c437f0 790 */
mbed_official 133:d4dda5c437f0 791 HAL_StatusTypeDef HAL_TIMEx_OCN_Stop_DMA(TIM_HandleTypeDef *htim, uint32_t Channel)
mbed_official 133:d4dda5c437f0 792 {
mbed_official 133:d4dda5c437f0 793 /* Check the parameters */
mbed_official 133:d4dda5c437f0 794 assert_param(IS_TIM_CCXN_INSTANCE(htim->Instance, Channel));
mbed_official 133:d4dda5c437f0 795
mbed_official 133:d4dda5c437f0 796 switch (Channel)
mbed_official 133:d4dda5c437f0 797 {
mbed_official 133:d4dda5c437f0 798 case TIM_CHANNEL_1:
mbed_official 133:d4dda5c437f0 799 {
mbed_official 133:d4dda5c437f0 800 /* Disable the TIM Output Compare DMA request */
mbed_official 133:d4dda5c437f0 801 __HAL_TIM_DISABLE_DMA(htim, TIM_DMA_CC1);
mbed_official 133:d4dda5c437f0 802 }
mbed_official 133:d4dda5c437f0 803 break;
mbed_official 133:d4dda5c437f0 804
mbed_official 133:d4dda5c437f0 805 case TIM_CHANNEL_2:
mbed_official 133:d4dda5c437f0 806 {
mbed_official 133:d4dda5c437f0 807 /* Disable the TIM Output Compare DMA request */
mbed_official 133:d4dda5c437f0 808 __HAL_TIM_DISABLE_DMA(htim, TIM_DMA_CC2);
mbed_official 133:d4dda5c437f0 809 }
mbed_official 133:d4dda5c437f0 810 break;
mbed_official 133:d4dda5c437f0 811
mbed_official 133:d4dda5c437f0 812 case TIM_CHANNEL_3:
mbed_official 133:d4dda5c437f0 813 {
mbed_official 133:d4dda5c437f0 814 /* Disable the TIM Output Compare DMA request */
mbed_official 133:d4dda5c437f0 815 __HAL_TIM_DISABLE_DMA(htim, TIM_DMA_CC3);
mbed_official 133:d4dda5c437f0 816 }
mbed_official 133:d4dda5c437f0 817 break;
mbed_official 133:d4dda5c437f0 818
mbed_official 133:d4dda5c437f0 819 case TIM_CHANNEL_4:
mbed_official 133:d4dda5c437f0 820 {
mbed_official 133:d4dda5c437f0 821 /* Disable the TIM Output Compare interrupt */
mbed_official 133:d4dda5c437f0 822 __HAL_TIM_DISABLE_DMA(htim, TIM_DMA_CC4);
mbed_official 133:d4dda5c437f0 823 }
mbed_official 133:d4dda5c437f0 824 break;
mbed_official 133:d4dda5c437f0 825
mbed_official 133:d4dda5c437f0 826 default:
mbed_official 133:d4dda5c437f0 827 break;
mbed_official 133:d4dda5c437f0 828 }
mbed_official 133:d4dda5c437f0 829
mbed_official 133:d4dda5c437f0 830 /* Disable the Capture compare channel N */
mbed_official 133:d4dda5c437f0 831 TIM_CCxNChannelCmd(htim->Instance, Channel, TIM_CCxN_DISABLE);
mbed_official 133:d4dda5c437f0 832
mbed_official 133:d4dda5c437f0 833 /* Disable the Main Ouput */
mbed_official 133:d4dda5c437f0 834 __HAL_TIM_MOE_DISABLE(htim);
mbed_official 133:d4dda5c437f0 835
mbed_official 133:d4dda5c437f0 836 /* Disable the Peripheral */
mbed_official 133:d4dda5c437f0 837 __HAL_TIM_DISABLE(htim);
mbed_official 133:d4dda5c437f0 838
mbed_official 133:d4dda5c437f0 839 /* Change the htim state */
mbed_official 133:d4dda5c437f0 840 htim->State = HAL_TIM_STATE_READY;
mbed_official 133:d4dda5c437f0 841
mbed_official 133:d4dda5c437f0 842 /* Return function status */
mbed_official 133:d4dda5c437f0 843 return HAL_OK;
mbed_official 133:d4dda5c437f0 844 }
mbed_official 133:d4dda5c437f0 845
mbed_official 133:d4dda5c437f0 846 /**
mbed_official 133:d4dda5c437f0 847 * @}
mbed_official 133:d4dda5c437f0 848 */
mbed_official 133:d4dda5c437f0 849
mbed_official 133:d4dda5c437f0 850 /** @defgroup TIMEx_Group3 Timer Complementary PWM functions
mbed_official 133:d4dda5c437f0 851 * @brief Timer Complementary PWM functions
mbed_official 133:d4dda5c437f0 852 *
mbed_official 133:d4dda5c437f0 853 @verbatim
mbed_official 133:d4dda5c437f0 854 ==============================================================================
mbed_official 133:d4dda5c437f0 855 ##### Timer Complementary PWM functions #####
mbed_official 133:d4dda5c437f0 856 ==============================================================================
mbed_official 133:d4dda5c437f0 857 [..]
mbed_official 133:d4dda5c437f0 858 This section provides functions allowing to:
mbed_official 133:d4dda5c437f0 859 (+) Start the Complementary PWM.
mbed_official 133:d4dda5c437f0 860 (+) Stop the Complementary PWM.
mbed_official 133:d4dda5c437f0 861 (+) Start the Complementary PWM and enable interrupts.
mbed_official 133:d4dda5c437f0 862 (+) Stop the Complementary PWM and disable interrupts.
mbed_official 133:d4dda5c437f0 863 (+) Start the Complementary PWM and enable DMA transfers.
mbed_official 133:d4dda5c437f0 864 (+) Stop the Complementary PWM and disable DMA transfers.
mbed_official 133:d4dda5c437f0 865 (+) Start the Complementary Input Capture measurement.
mbed_official 133:d4dda5c437f0 866 (+) Stop the Complementary Input Capture.
mbed_official 133:d4dda5c437f0 867 (+) Start the Complementary Input Capture and enable interrupts.
mbed_official 133:d4dda5c437f0 868 (+) Stop the Complementary Input Capture and disable interrupts.
mbed_official 133:d4dda5c437f0 869 (+) Start the Complementary Input Capture and enable DMA transfers.
mbed_official 133:d4dda5c437f0 870 (+) Stop the Complementary Input Capture and disable DMA transfers.
mbed_official 133:d4dda5c437f0 871 (+) Start the Complementary One Pulse generation.
mbed_official 133:d4dda5c437f0 872 (+) Stop the Complementary One Pulse.
mbed_official 133:d4dda5c437f0 873 (+) Start the Complementary One Pulse and enable interrupts.
mbed_official 133:d4dda5c437f0 874 (+) Stop the Complementary One Pulse and disable interrupts.
mbed_official 133:d4dda5c437f0 875
mbed_official 133:d4dda5c437f0 876 @endverbatim
mbed_official 133:d4dda5c437f0 877 * @{
mbed_official 133:d4dda5c437f0 878 */
mbed_official 133:d4dda5c437f0 879
mbed_official 133:d4dda5c437f0 880 /**
mbed_official 133:d4dda5c437f0 881 * @brief Starts the PWM signal generation on the complementary output.
mbed_official 242:7074e42da0b2 882 * @param htim: pointer to a TIM_HandleTypeDef structure that contains
mbed_official 242:7074e42da0b2 883 * the configuration information for TIM module.
mbed_official 242:7074e42da0b2 884 * @param Channel: TIM Channel to be enabled.
mbed_official 133:d4dda5c437f0 885 * This parameter can be one of the following values:
mbed_official 242:7074e42da0b2 886 * TIM_CHANNEL_1/
mbed_official 242:7074e42da0b2 887 * TIM_CHANNEL_2/
mbed_official 242:7074e42da0b2 888 * TIM_CHANNEL_3/
mbed_official 242:7074e42da0b2 889 * TIM_CHANNEL_4
mbed_official 133:d4dda5c437f0 890 * @retval HAL status
mbed_official 133:d4dda5c437f0 891 */
mbed_official 133:d4dda5c437f0 892 HAL_StatusTypeDef HAL_TIMEx_PWMN_Start(TIM_HandleTypeDef *htim, uint32_t Channel)
mbed_official 133:d4dda5c437f0 893 {
mbed_official 133:d4dda5c437f0 894 /* Check the parameters */
mbed_official 133:d4dda5c437f0 895 assert_param(IS_TIM_CCXN_INSTANCE(htim->Instance, Channel));
mbed_official 133:d4dda5c437f0 896
mbed_official 133:d4dda5c437f0 897 /* Enable the complementary PWM output */
mbed_official 133:d4dda5c437f0 898 TIM_CCxNChannelCmd(htim->Instance, Channel, TIM_CCxN_ENABLE);
mbed_official 133:d4dda5c437f0 899
mbed_official 133:d4dda5c437f0 900 /* Enable the Main Ouput */
mbed_official 133:d4dda5c437f0 901 __HAL_TIM_MOE_ENABLE(htim);
mbed_official 133:d4dda5c437f0 902
mbed_official 133:d4dda5c437f0 903 /* Enable the Peripheral */
mbed_official 133:d4dda5c437f0 904 __HAL_TIM_ENABLE(htim);
mbed_official 133:d4dda5c437f0 905
mbed_official 133:d4dda5c437f0 906 /* Return function status */
mbed_official 133:d4dda5c437f0 907 return HAL_OK;
mbed_official 133:d4dda5c437f0 908 }
mbed_official 133:d4dda5c437f0 909
mbed_official 133:d4dda5c437f0 910 /**
mbed_official 133:d4dda5c437f0 911 * @brief Stops the PWM signal generation on the complementary output.
mbed_official 242:7074e42da0b2 912 * @param htim: pointer to a TIM_HandleTypeDef structure that contains
mbed_official 242:7074e42da0b2 913 * the configuration information for TIM module.
mbed_official 242:7074e42da0b2 914 * @param Channel: TIM Channel to be disabled.
mbed_official 133:d4dda5c437f0 915 * This parameter can be one of the following values:
mbed_official 242:7074e42da0b2 916 * TIM_CHANNEL_1/
mbed_official 242:7074e42da0b2 917 * TIM_CHANNEL_2/
mbed_official 242:7074e42da0b2 918 * TIM_CHANNEL_3/
mbed_official 242:7074e42da0b2 919 * TIM_CHANNEL_4
mbed_official 133:d4dda5c437f0 920 * @retval HAL status
mbed_official 133:d4dda5c437f0 921 */
mbed_official 133:d4dda5c437f0 922 HAL_StatusTypeDef HAL_TIMEx_PWMN_Stop(TIM_HandleTypeDef *htim, uint32_t Channel)
mbed_official 133:d4dda5c437f0 923 {
mbed_official 133:d4dda5c437f0 924 /* Check the parameters */
mbed_official 133:d4dda5c437f0 925 assert_param(IS_TIM_CCXN_INSTANCE(htim->Instance, Channel));
mbed_official 133:d4dda5c437f0 926
mbed_official 133:d4dda5c437f0 927 /* Disable the complementary PWM output */
mbed_official 133:d4dda5c437f0 928 TIM_CCxNChannelCmd(htim->Instance, Channel, TIM_CCxN_DISABLE);
mbed_official 133:d4dda5c437f0 929
mbed_official 133:d4dda5c437f0 930 /* Disable the Main Ouput */
mbed_official 133:d4dda5c437f0 931 __HAL_TIM_MOE_DISABLE(htim);
mbed_official 133:d4dda5c437f0 932
mbed_official 133:d4dda5c437f0 933 /* Disable the Peripheral */
mbed_official 133:d4dda5c437f0 934 __HAL_TIM_DISABLE(htim);
mbed_official 133:d4dda5c437f0 935
mbed_official 133:d4dda5c437f0 936 /* Return function status */
mbed_official 133:d4dda5c437f0 937 return HAL_OK;
mbed_official 133:d4dda5c437f0 938 }
mbed_official 133:d4dda5c437f0 939
mbed_official 133:d4dda5c437f0 940 /**
mbed_official 133:d4dda5c437f0 941 * @brief Starts the PWM signal generation in interrupt mode on the
mbed_official 133:d4dda5c437f0 942 * complementary output.
mbed_official 242:7074e42da0b2 943 * @param htim: pointer to a TIM_HandleTypeDef structure that contains
mbed_official 242:7074e42da0b2 944 * the configuration information for TIM module.
mbed_official 242:7074e42da0b2 945 * @param Channel: TIM Channel to be disabled.
mbed_official 133:d4dda5c437f0 946 * This parameter can be one of the following values:
mbed_official 242:7074e42da0b2 947 * TIM_CHANNEL_1/
mbed_official 242:7074e42da0b2 948 * TIM_CHANNEL_2/
mbed_official 242:7074e42da0b2 949 * TIM_CHANNEL_3/
mbed_official 242:7074e42da0b2 950 * TIM_CHANNEL_4
mbed_official 133:d4dda5c437f0 951 * @retval HAL status
mbed_official 133:d4dda5c437f0 952 */
mbed_official 133:d4dda5c437f0 953 HAL_StatusTypeDef HAL_TIMEx_PWMN_Start_IT(TIM_HandleTypeDef *htim, uint32_t Channel)
mbed_official 133:d4dda5c437f0 954 {
mbed_official 133:d4dda5c437f0 955 /* Check the parameters */
mbed_official 133:d4dda5c437f0 956 assert_param(IS_TIM_CCXN_INSTANCE(htim->Instance, Channel));
mbed_official 133:d4dda5c437f0 957
mbed_official 133:d4dda5c437f0 958 switch (Channel)
mbed_official 133:d4dda5c437f0 959 {
mbed_official 133:d4dda5c437f0 960 case TIM_CHANNEL_1:
mbed_official 133:d4dda5c437f0 961 {
mbed_official 133:d4dda5c437f0 962 /* Enable the TIM Capture/Compare 1 interrupt */
mbed_official 133:d4dda5c437f0 963 __HAL_TIM_ENABLE_IT(htim, TIM_IT_CC1);
mbed_official 133:d4dda5c437f0 964 }
mbed_official 133:d4dda5c437f0 965 break;
mbed_official 133:d4dda5c437f0 966
mbed_official 133:d4dda5c437f0 967 case TIM_CHANNEL_2:
mbed_official 133:d4dda5c437f0 968 {
mbed_official 133:d4dda5c437f0 969 /* Enable the TIM Capture/Compare 2 interrupt */
mbed_official 133:d4dda5c437f0 970 __HAL_TIM_ENABLE_IT(htim, TIM_IT_CC2);
mbed_official 133:d4dda5c437f0 971 }
mbed_official 133:d4dda5c437f0 972 break;
mbed_official 133:d4dda5c437f0 973
mbed_official 133:d4dda5c437f0 974 case TIM_CHANNEL_3:
mbed_official 133:d4dda5c437f0 975 {
mbed_official 133:d4dda5c437f0 976 /* Enable the TIM Capture/Compare 3 interrupt */
mbed_official 133:d4dda5c437f0 977 __HAL_TIM_ENABLE_IT(htim, TIM_IT_CC3);
mbed_official 133:d4dda5c437f0 978 }
mbed_official 133:d4dda5c437f0 979 break;
mbed_official 133:d4dda5c437f0 980
mbed_official 133:d4dda5c437f0 981 case TIM_CHANNEL_4:
mbed_official 133:d4dda5c437f0 982 {
mbed_official 133:d4dda5c437f0 983 /* Enable the TIM Capture/Compare 4 interrupt */
mbed_official 133:d4dda5c437f0 984 __HAL_TIM_ENABLE_IT(htim, TIM_IT_CC4);
mbed_official 133:d4dda5c437f0 985 }
mbed_official 133:d4dda5c437f0 986 break;
mbed_official 133:d4dda5c437f0 987
mbed_official 133:d4dda5c437f0 988 default:
mbed_official 133:d4dda5c437f0 989 break;
mbed_official 133:d4dda5c437f0 990 }
mbed_official 133:d4dda5c437f0 991
mbed_official 133:d4dda5c437f0 992 /* Enable the TIM Break interrupt */
mbed_official 133:d4dda5c437f0 993 __HAL_TIM_ENABLE_IT(htim, TIM_IT_BREAK);
mbed_official 133:d4dda5c437f0 994
mbed_official 133:d4dda5c437f0 995 /* Enable the complementary PWM output */
mbed_official 133:d4dda5c437f0 996 TIM_CCxNChannelCmd(htim->Instance, Channel, TIM_CCxN_ENABLE);
mbed_official 133:d4dda5c437f0 997
mbed_official 133:d4dda5c437f0 998 /* Enable the Main Ouput */
mbed_official 133:d4dda5c437f0 999 __HAL_TIM_MOE_ENABLE(htim);
mbed_official 133:d4dda5c437f0 1000
mbed_official 133:d4dda5c437f0 1001 /* Enable the Peripheral */
mbed_official 133:d4dda5c437f0 1002 __HAL_TIM_ENABLE(htim);
mbed_official 133:d4dda5c437f0 1003
mbed_official 133:d4dda5c437f0 1004 /* Return function status */
mbed_official 133:d4dda5c437f0 1005 return HAL_OK;
mbed_official 133:d4dda5c437f0 1006 }
mbed_official 133:d4dda5c437f0 1007
mbed_official 133:d4dda5c437f0 1008 /**
mbed_official 133:d4dda5c437f0 1009 * @brief Stops the PWM signal generation in interrupt mode on the
mbed_official 133:d4dda5c437f0 1010 * complementary output.
mbed_official 242:7074e42da0b2 1011 * @param htim: pointer to a TIM_HandleTypeDef structure that contains
mbed_official 242:7074e42da0b2 1012 * the configuration information for TIM module.
mbed_official 242:7074e42da0b2 1013 * @param Channel: TIM Channel to be disabled.
mbed_official 133:d4dda5c437f0 1014 * This parameter can be one of the following values:
mbed_official 242:7074e42da0b2 1015 * TIM_CHANNEL_1/
mbed_official 242:7074e42da0b2 1016 * TIM_CHANNEL_2/
mbed_official 242:7074e42da0b2 1017 * TIM_CHANNEL_3/
mbed_official 242:7074e42da0b2 1018 * TIM_CHANNEL_4
mbed_official 133:d4dda5c437f0 1019 * @retval HAL status
mbed_official 133:d4dda5c437f0 1020 */
mbed_official 133:d4dda5c437f0 1021 HAL_StatusTypeDef HAL_TIMEx_PWMN_Stop_IT (TIM_HandleTypeDef *htim, uint32_t Channel)
mbed_official 133:d4dda5c437f0 1022 {
mbed_official 133:d4dda5c437f0 1023 /* Check the parameters */
mbed_official 133:d4dda5c437f0 1024 assert_param(IS_TIM_CCXN_INSTANCE(htim->Instance, Channel));
mbed_official 133:d4dda5c437f0 1025
mbed_official 133:d4dda5c437f0 1026 switch (Channel)
mbed_official 133:d4dda5c437f0 1027 {
mbed_official 133:d4dda5c437f0 1028 case TIM_CHANNEL_1:
mbed_official 133:d4dda5c437f0 1029 {
mbed_official 133:d4dda5c437f0 1030 /* Disable the TIM Capture/Compare 1 interrupt */
mbed_official 133:d4dda5c437f0 1031 __HAL_TIM_DISABLE_IT(htim, TIM_IT_CC1);
mbed_official 133:d4dda5c437f0 1032 }
mbed_official 133:d4dda5c437f0 1033 break;
mbed_official 133:d4dda5c437f0 1034
mbed_official 133:d4dda5c437f0 1035 case TIM_CHANNEL_2:
mbed_official 133:d4dda5c437f0 1036 {
mbed_official 133:d4dda5c437f0 1037 /* Disable the TIM Capture/Compare 2 interrupt */
mbed_official 133:d4dda5c437f0 1038 __HAL_TIM_DISABLE_IT(htim, TIM_IT_CC2);
mbed_official 133:d4dda5c437f0 1039 }
mbed_official 133:d4dda5c437f0 1040 break;
mbed_official 133:d4dda5c437f0 1041
mbed_official 133:d4dda5c437f0 1042 case TIM_CHANNEL_3:
mbed_official 133:d4dda5c437f0 1043 {
mbed_official 133:d4dda5c437f0 1044 /* Disable the TIM Capture/Compare 3 interrupt */
mbed_official 133:d4dda5c437f0 1045 __HAL_TIM_DISABLE_IT(htim, TIM_IT_CC3);
mbed_official 133:d4dda5c437f0 1046 }
mbed_official 133:d4dda5c437f0 1047 break;
mbed_official 133:d4dda5c437f0 1048
mbed_official 133:d4dda5c437f0 1049 case TIM_CHANNEL_4:
mbed_official 133:d4dda5c437f0 1050 {
mbed_official 133:d4dda5c437f0 1051 /* Disable the TIM Capture/Compare 3 interrupt */
mbed_official 133:d4dda5c437f0 1052 __HAL_TIM_DISABLE_IT(htim, TIM_IT_CC4);
mbed_official 133:d4dda5c437f0 1053 }
mbed_official 133:d4dda5c437f0 1054 break;
mbed_official 133:d4dda5c437f0 1055
mbed_official 133:d4dda5c437f0 1056 default:
mbed_official 133:d4dda5c437f0 1057 break;
mbed_official 133:d4dda5c437f0 1058 }
mbed_official 133:d4dda5c437f0 1059
mbed_official 133:d4dda5c437f0 1060 /* Disable the TIM Break interrupt */
mbed_official 133:d4dda5c437f0 1061 __HAL_TIM_DISABLE_IT(htim, TIM_IT_BREAK);
mbed_official 133:d4dda5c437f0 1062
mbed_official 133:d4dda5c437f0 1063 /* Disable the complementary PWM output */
mbed_official 133:d4dda5c437f0 1064 TIM_CCxNChannelCmd(htim->Instance, Channel, TIM_CCxN_DISABLE);
mbed_official 133:d4dda5c437f0 1065
mbed_official 133:d4dda5c437f0 1066 /* Disable the Main Ouput */
mbed_official 133:d4dda5c437f0 1067 __HAL_TIM_MOE_DISABLE(htim);
mbed_official 133:d4dda5c437f0 1068
mbed_official 133:d4dda5c437f0 1069 /* Disable the Peripheral */
mbed_official 133:d4dda5c437f0 1070 __HAL_TIM_DISABLE(htim);
mbed_official 133:d4dda5c437f0 1071
mbed_official 133:d4dda5c437f0 1072 /* Return function status */
mbed_official 133:d4dda5c437f0 1073 return HAL_OK;
mbed_official 133:d4dda5c437f0 1074 }
mbed_official 133:d4dda5c437f0 1075
mbed_official 133:d4dda5c437f0 1076 /**
mbed_official 133:d4dda5c437f0 1077 * @brief Starts the TIM PWM signal generation in DMA mode on the
mbed_official 133:d4dda5c437f0 1078 * complementary output
mbed_official 242:7074e42da0b2 1079 * @param htim: pointer to a TIM_HandleTypeDef structure that contains
mbed_official 242:7074e42da0b2 1080 * the configuration information for TIM module.
mbed_official 242:7074e42da0b2 1081 * @param Channel: TIM Channel to be enabled.
mbed_official 133:d4dda5c437f0 1082 * This parameter can be one of the following values:
mbed_official 242:7074e42da0b2 1083 * TIM_CHANNEL_1/
mbed_official 242:7074e42da0b2 1084 * TIM_CHANNEL_2/
mbed_official 242:7074e42da0b2 1085 * TIM_CHANNEL_3/
mbed_official 242:7074e42da0b2 1086 * TIM_CHANNEL_4
mbed_official 133:d4dda5c437f0 1087 * @param pData: The source Buffer address.
mbed_official 133:d4dda5c437f0 1088 * @param Length: The length of data to be transferred from memory to TIM peripheral
mbed_official 133:d4dda5c437f0 1089 * @retval HAL status
mbed_official 133:d4dda5c437f0 1090 */
mbed_official 133:d4dda5c437f0 1091 HAL_StatusTypeDef HAL_TIMEx_PWMN_Start_DMA(TIM_HandleTypeDef *htim, uint32_t Channel, uint32_t *pData, uint16_t Length)
mbed_official 133:d4dda5c437f0 1092 {
mbed_official 133:d4dda5c437f0 1093 /* Check the parameters */
mbed_official 133:d4dda5c437f0 1094 assert_param(IS_TIM_CCXN_INSTANCE(htim->Instance, Channel));
mbed_official 133:d4dda5c437f0 1095
mbed_official 133:d4dda5c437f0 1096 if((htim->State == HAL_TIM_STATE_BUSY))
mbed_official 133:d4dda5c437f0 1097 {
mbed_official 133:d4dda5c437f0 1098 return HAL_BUSY;
mbed_official 133:d4dda5c437f0 1099 }
mbed_official 133:d4dda5c437f0 1100 else if((htim->State == HAL_TIM_STATE_READY))
mbed_official 133:d4dda5c437f0 1101 {
mbed_official 133:d4dda5c437f0 1102 if(((uint32_t)pData == 0 ) && (Length > 0))
mbed_official 133:d4dda5c437f0 1103 {
mbed_official 133:d4dda5c437f0 1104 return HAL_ERROR;
mbed_official 133:d4dda5c437f0 1105 }
mbed_official 133:d4dda5c437f0 1106 else
mbed_official 133:d4dda5c437f0 1107 {
mbed_official 133:d4dda5c437f0 1108 htim->State = HAL_TIM_STATE_BUSY;
mbed_official 133:d4dda5c437f0 1109 }
mbed_official 133:d4dda5c437f0 1110 }
mbed_official 133:d4dda5c437f0 1111 switch (Channel)
mbed_official 133:d4dda5c437f0 1112 {
mbed_official 133:d4dda5c437f0 1113 case TIM_CHANNEL_1:
mbed_official 133:d4dda5c437f0 1114 {
mbed_official 133:d4dda5c437f0 1115 /* Set the DMA Period elapsed callback */
mbed_official 133:d4dda5c437f0 1116 htim->hdma[TIM_DMA_ID_CC1]->XferCpltCallback = HAL_TIM_DMADelayPulseCplt;
mbed_official 133:d4dda5c437f0 1117
mbed_official 133:d4dda5c437f0 1118 /* Set the DMA error callback */
mbed_official 133:d4dda5c437f0 1119 htim->hdma[TIM_DMA_ID_CC1]->XferErrorCallback = HAL_TIM_DMAError ;
mbed_official 133:d4dda5c437f0 1120
mbed_official 133:d4dda5c437f0 1121 /* Enable the DMA Stream */
mbed_official 133:d4dda5c437f0 1122 HAL_DMA_Start_IT(htim->hdma[TIM_DMA_ID_CC1], (uint32_t)pData, (uint32_t)&htim->Instance->CCR1, Length);
mbed_official 133:d4dda5c437f0 1123
mbed_official 133:d4dda5c437f0 1124 /* Enable the TIM Capture/Compare 1 DMA request */
mbed_official 133:d4dda5c437f0 1125 __HAL_TIM_ENABLE_DMA(htim, TIM_DMA_CC1);
mbed_official 133:d4dda5c437f0 1126 }
mbed_official 133:d4dda5c437f0 1127 break;
mbed_official 133:d4dda5c437f0 1128
mbed_official 133:d4dda5c437f0 1129 case TIM_CHANNEL_2:
mbed_official 133:d4dda5c437f0 1130 {
mbed_official 133:d4dda5c437f0 1131 /* Set the DMA Period elapsed callback */
mbed_official 133:d4dda5c437f0 1132 htim->hdma[TIM_DMA_ID_CC2]->XferCpltCallback = HAL_TIM_DMADelayPulseCplt;
mbed_official 133:d4dda5c437f0 1133
mbed_official 133:d4dda5c437f0 1134 /* Set the DMA error callback */
mbed_official 133:d4dda5c437f0 1135 htim->hdma[TIM_DMA_ID_CC2]->XferErrorCallback = HAL_TIM_DMAError ;
mbed_official 133:d4dda5c437f0 1136
mbed_official 133:d4dda5c437f0 1137 /* Enable the DMA Stream */
mbed_official 133:d4dda5c437f0 1138 HAL_DMA_Start_IT(htim->hdma[TIM_DMA_ID_CC2], (uint32_t)pData, (uint32_t)&htim->Instance->CCR2, Length);
mbed_official 133:d4dda5c437f0 1139
mbed_official 133:d4dda5c437f0 1140 /* Enable the TIM Capture/Compare 2 DMA request */
mbed_official 133:d4dda5c437f0 1141 __HAL_TIM_ENABLE_DMA(htim, TIM_DMA_CC2);
mbed_official 133:d4dda5c437f0 1142 }
mbed_official 133:d4dda5c437f0 1143 break;
mbed_official 133:d4dda5c437f0 1144
mbed_official 133:d4dda5c437f0 1145 case TIM_CHANNEL_3:
mbed_official 133:d4dda5c437f0 1146 {
mbed_official 133:d4dda5c437f0 1147 /* Set the DMA Period elapsed callback */
mbed_official 133:d4dda5c437f0 1148 htim->hdma[TIM_DMA_ID_CC3]->XferCpltCallback = HAL_TIM_DMADelayPulseCplt;
mbed_official 133:d4dda5c437f0 1149
mbed_official 133:d4dda5c437f0 1150 /* Set the DMA error callback */
mbed_official 133:d4dda5c437f0 1151 htim->hdma[TIM_DMA_ID_CC3]->XferErrorCallback = HAL_TIM_DMAError ;
mbed_official 133:d4dda5c437f0 1152
mbed_official 133:d4dda5c437f0 1153 /* Enable the DMA Stream */
mbed_official 133:d4dda5c437f0 1154 HAL_DMA_Start_IT(htim->hdma[TIM_DMA_ID_CC3], (uint32_t)pData, (uint32_t)&htim->Instance->CCR3,Length);
mbed_official 133:d4dda5c437f0 1155
mbed_official 133:d4dda5c437f0 1156 /* Enable the TIM Capture/Compare 3 DMA request */
mbed_official 133:d4dda5c437f0 1157 __HAL_TIM_ENABLE_DMA(htim, TIM_DMA_CC3);
mbed_official 133:d4dda5c437f0 1158 }
mbed_official 133:d4dda5c437f0 1159 break;
mbed_official 133:d4dda5c437f0 1160
mbed_official 133:d4dda5c437f0 1161 case TIM_CHANNEL_4:
mbed_official 133:d4dda5c437f0 1162 {
mbed_official 133:d4dda5c437f0 1163 /* Set the DMA Period elapsed callback */
mbed_official 133:d4dda5c437f0 1164 htim->hdma[TIM_DMA_ID_CC4]->XferCpltCallback = HAL_TIM_DMADelayPulseCplt;
mbed_official 133:d4dda5c437f0 1165
mbed_official 133:d4dda5c437f0 1166 /* Set the DMA error callback */
mbed_official 133:d4dda5c437f0 1167 htim->hdma[TIM_DMA_ID_CC4]->XferErrorCallback = HAL_TIM_DMAError ;
mbed_official 133:d4dda5c437f0 1168
mbed_official 133:d4dda5c437f0 1169 /* Enable the DMA Stream */
mbed_official 133:d4dda5c437f0 1170 HAL_DMA_Start_IT(htim->hdma[TIM_DMA_ID_CC4], (uint32_t)pData, (uint32_t)&htim->Instance->CCR4, Length);
mbed_official 133:d4dda5c437f0 1171
mbed_official 133:d4dda5c437f0 1172 /* Enable the TIM Capture/Compare 4 DMA request */
mbed_official 133:d4dda5c437f0 1173 __HAL_TIM_ENABLE_DMA(htim, TIM_DMA_CC4);
mbed_official 133:d4dda5c437f0 1174 }
mbed_official 133:d4dda5c437f0 1175 break;
mbed_official 133:d4dda5c437f0 1176
mbed_official 133:d4dda5c437f0 1177 default:
mbed_official 133:d4dda5c437f0 1178 break;
mbed_official 133:d4dda5c437f0 1179 }
mbed_official 133:d4dda5c437f0 1180
mbed_official 133:d4dda5c437f0 1181 /* Enable the complementary PWM output */
mbed_official 133:d4dda5c437f0 1182 TIM_CCxNChannelCmd(htim->Instance, Channel, TIM_CCxN_ENABLE);
mbed_official 133:d4dda5c437f0 1183
mbed_official 133:d4dda5c437f0 1184 /* Enable the Main Ouput */
mbed_official 133:d4dda5c437f0 1185 __HAL_TIM_MOE_ENABLE(htim);
mbed_official 133:d4dda5c437f0 1186
mbed_official 133:d4dda5c437f0 1187 /* Enable the Peripheral */
mbed_official 133:d4dda5c437f0 1188 __HAL_TIM_ENABLE(htim);
mbed_official 133:d4dda5c437f0 1189
mbed_official 133:d4dda5c437f0 1190 /* Return function status */
mbed_official 133:d4dda5c437f0 1191 return HAL_OK;
mbed_official 133:d4dda5c437f0 1192 }
mbed_official 133:d4dda5c437f0 1193
mbed_official 133:d4dda5c437f0 1194 /**
mbed_official 133:d4dda5c437f0 1195 * @brief Stops the TIM PWM signal generation in DMA mode on the complementary
mbed_official 133:d4dda5c437f0 1196 * output
mbed_official 242:7074e42da0b2 1197 * @param htim: pointer to a TIM_HandleTypeDef structure that contains
mbed_official 242:7074e42da0b2 1198 * the configuration information for TIM module.
mbed_official 242:7074e42da0b2 1199 * @param Channel: TIM Channel to be disabled.
mbed_official 133:d4dda5c437f0 1200 * This parameter can be one of the following values:
mbed_official 242:7074e42da0b2 1201 * TIM_CHANNEL_1/
mbed_official 242:7074e42da0b2 1202 * TIM_CHANNEL_2/
mbed_official 242:7074e42da0b2 1203 * TIM_CHANNEL_3/
mbed_official 242:7074e42da0b2 1204 * TIM_CHANNEL_4
mbed_official 133:d4dda5c437f0 1205 * @retval HAL status
mbed_official 133:d4dda5c437f0 1206 */
mbed_official 133:d4dda5c437f0 1207 HAL_StatusTypeDef HAL_TIMEx_PWMN_Stop_DMA(TIM_HandleTypeDef *htim, uint32_t Channel)
mbed_official 133:d4dda5c437f0 1208 {
mbed_official 133:d4dda5c437f0 1209 /* Check the parameters */
mbed_official 133:d4dda5c437f0 1210 assert_param(IS_TIM_CCXN_INSTANCE(htim->Instance, Channel));
mbed_official 133:d4dda5c437f0 1211
mbed_official 133:d4dda5c437f0 1212 switch (Channel)
mbed_official 133:d4dda5c437f0 1213 {
mbed_official 133:d4dda5c437f0 1214 case TIM_CHANNEL_1:
mbed_official 133:d4dda5c437f0 1215 {
mbed_official 133:d4dda5c437f0 1216 /* Disable the TIM Capture/Compare 1 DMA request */
mbed_official 133:d4dda5c437f0 1217 __HAL_TIM_DISABLE_DMA(htim, TIM_DMA_CC1);
mbed_official 133:d4dda5c437f0 1218 }
mbed_official 133:d4dda5c437f0 1219 break;
mbed_official 133:d4dda5c437f0 1220
mbed_official 133:d4dda5c437f0 1221 case TIM_CHANNEL_2:
mbed_official 133:d4dda5c437f0 1222 {
mbed_official 133:d4dda5c437f0 1223 /* Disable the TIM Capture/Compare 2 DMA request */
mbed_official 133:d4dda5c437f0 1224 __HAL_TIM_DISABLE_DMA(htim, TIM_DMA_CC2);
mbed_official 133:d4dda5c437f0 1225 }
mbed_official 133:d4dda5c437f0 1226 break;
mbed_official 133:d4dda5c437f0 1227
mbed_official 133:d4dda5c437f0 1228 case TIM_CHANNEL_3:
mbed_official 133:d4dda5c437f0 1229 {
mbed_official 133:d4dda5c437f0 1230 /* Disable the TIM Capture/Compare 3 DMA request */
mbed_official 133:d4dda5c437f0 1231 __HAL_TIM_DISABLE_DMA(htim, TIM_DMA_CC3);
mbed_official 133:d4dda5c437f0 1232 }
mbed_official 133:d4dda5c437f0 1233 break;
mbed_official 133:d4dda5c437f0 1234
mbed_official 133:d4dda5c437f0 1235 case TIM_CHANNEL_4:
mbed_official 133:d4dda5c437f0 1236 {
mbed_official 133:d4dda5c437f0 1237 /* Disable the TIM Capture/Compare 4 DMA request */
mbed_official 133:d4dda5c437f0 1238 __HAL_TIM_DISABLE_DMA(htim, TIM_DMA_CC4);
mbed_official 133:d4dda5c437f0 1239 }
mbed_official 133:d4dda5c437f0 1240 break;
mbed_official 133:d4dda5c437f0 1241
mbed_official 133:d4dda5c437f0 1242 default:
mbed_official 133:d4dda5c437f0 1243 break;
mbed_official 133:d4dda5c437f0 1244 }
mbed_official 133:d4dda5c437f0 1245
mbed_official 133:d4dda5c437f0 1246 /* Disable the complementary PWM output */
mbed_official 133:d4dda5c437f0 1247 TIM_CCxNChannelCmd(htim->Instance, Channel, TIM_CCxN_DISABLE);
mbed_official 133:d4dda5c437f0 1248
mbed_official 133:d4dda5c437f0 1249 /* Disable the Main Ouput */
mbed_official 133:d4dda5c437f0 1250 __HAL_TIM_MOE_DISABLE(htim);
mbed_official 133:d4dda5c437f0 1251
mbed_official 133:d4dda5c437f0 1252 /* Disable the Peripheral */
mbed_official 133:d4dda5c437f0 1253 __HAL_TIM_DISABLE(htim);
mbed_official 133:d4dda5c437f0 1254
mbed_official 133:d4dda5c437f0 1255 /* Change the htim state */
mbed_official 133:d4dda5c437f0 1256 htim->State = HAL_TIM_STATE_READY;
mbed_official 133:d4dda5c437f0 1257
mbed_official 133:d4dda5c437f0 1258 /* Return function status */
mbed_official 133:d4dda5c437f0 1259 return HAL_OK;
mbed_official 133:d4dda5c437f0 1260 }
mbed_official 133:d4dda5c437f0 1261
mbed_official 133:d4dda5c437f0 1262 /**
mbed_official 133:d4dda5c437f0 1263 * @}
mbed_official 133:d4dda5c437f0 1264 */
mbed_official 133:d4dda5c437f0 1265
mbed_official 133:d4dda5c437f0 1266 /** @defgroup TIMEx_Group4 Timer Complementary One Pulse functions
mbed_official 133:d4dda5c437f0 1267 * @brief Timer Complementary One Pulse functions
mbed_official 133:d4dda5c437f0 1268 *
mbed_official 133:d4dda5c437f0 1269 @verbatim
mbed_official 133:d4dda5c437f0 1270 ==============================================================================
mbed_official 133:d4dda5c437f0 1271 ##### Timer Complementary One Pulse functions #####
mbed_official 133:d4dda5c437f0 1272 ==============================================================================
mbed_official 133:d4dda5c437f0 1273 [..]
mbed_official 133:d4dda5c437f0 1274 This section provides functions allowing to:
mbed_official 133:d4dda5c437f0 1275 (+) Start the Complementary One Pulse generation.
mbed_official 133:d4dda5c437f0 1276 (+) Stop the Complementary One Pulse.
mbed_official 133:d4dda5c437f0 1277 (+) Start the Complementary One Pulse and enable interrupts.
mbed_official 133:d4dda5c437f0 1278 (+) Stop the Complementary One Pulse and disable interrupts.
mbed_official 133:d4dda5c437f0 1279
mbed_official 133:d4dda5c437f0 1280 @endverbatim
mbed_official 133:d4dda5c437f0 1281 * @{
mbed_official 133:d4dda5c437f0 1282 */
mbed_official 133:d4dda5c437f0 1283
mbed_official 133:d4dda5c437f0 1284 /**
mbed_official 133:d4dda5c437f0 1285 * @brief Starts the TIM One Pulse signal generation on the complemetary
mbed_official 133:d4dda5c437f0 1286 * output.
mbed_official 242:7074e42da0b2 1287 * @param htim: pointer to a TIM_HandleTypeDef structure that contains
mbed_official 242:7074e42da0b2 1288 * the configuration information for TIM module.
mbed_official 242:7074e42da0b2 1289 * @param OutputChannel: TIM Channel to be enabled.
mbed_official 133:d4dda5c437f0 1290 * This parameter can be one of the following values:
mbed_official 242:7074e42da0b2 1291 * TIM_CHANNEL_1 /
mbed_official 242:7074e42da0b2 1292 * IM_CHANNEL_2
mbed_official 133:d4dda5c437f0 1293 * @retval HAL status
mbed_official 133:d4dda5c437f0 1294 */
mbed_official 133:d4dda5c437f0 1295 HAL_StatusTypeDef HAL_TIMEx_OnePulseN_Start(TIM_HandleTypeDef *htim, uint32_t OutputChannel)
mbed_official 133:d4dda5c437f0 1296 {
mbed_official 133:d4dda5c437f0 1297 /* Check the parameters */
mbed_official 133:d4dda5c437f0 1298 assert_param(IS_TIM_CCXN_INSTANCE(htim->Instance, OutputChannel));
mbed_official 133:d4dda5c437f0 1299
mbed_official 133:d4dda5c437f0 1300 /* Enable the complementary One Pulse output */
mbed_official 133:d4dda5c437f0 1301 TIM_CCxNChannelCmd(htim->Instance, OutputChannel, TIM_CCxN_ENABLE);
mbed_official 133:d4dda5c437f0 1302
mbed_official 133:d4dda5c437f0 1303 /* Enable the Main Ouput */
mbed_official 133:d4dda5c437f0 1304 __HAL_TIM_MOE_ENABLE(htim);
mbed_official 133:d4dda5c437f0 1305
mbed_official 133:d4dda5c437f0 1306 /* Return function status */
mbed_official 133:d4dda5c437f0 1307 return HAL_OK;
mbed_official 133:d4dda5c437f0 1308 }
mbed_official 133:d4dda5c437f0 1309
mbed_official 133:d4dda5c437f0 1310 /**
mbed_official 133:d4dda5c437f0 1311 * @brief Stops the TIM One Pulse signal generation on the complementary
mbed_official 133:d4dda5c437f0 1312 * output.
mbed_official 242:7074e42da0b2 1313 * @param htim: pointer to a TIM_HandleTypeDef structure that contains
mbed_official 242:7074e42da0b2 1314 * the configuration information for TIM module.
mbed_official 242:7074e42da0b2 1315 * @param OutputChannel: TIM Channel to be disabled.
mbed_official 133:d4dda5c437f0 1316 * This parameter can be one of the following values:
mbed_official 242:7074e42da0b2 1317 * TIM_CHANNEL_1 / TIM_CHANNEL_2
mbed_official 133:d4dda5c437f0 1318 * @retval HAL status
mbed_official 133:d4dda5c437f0 1319 */
mbed_official 133:d4dda5c437f0 1320 HAL_StatusTypeDef HAL_TIMEx_OnePulseN_Stop(TIM_HandleTypeDef *htim, uint32_t OutputChannel)
mbed_official 133:d4dda5c437f0 1321 {
mbed_official 133:d4dda5c437f0 1322
mbed_official 133:d4dda5c437f0 1323 /* Check the parameters */
mbed_official 133:d4dda5c437f0 1324 assert_param(IS_TIM_CCXN_INSTANCE(htim->Instance, OutputChannel));
mbed_official 133:d4dda5c437f0 1325
mbed_official 133:d4dda5c437f0 1326 /* Disable the complementary One Pulse output */
mbed_official 133:d4dda5c437f0 1327 TIM_CCxNChannelCmd(htim->Instance, OutputChannel, TIM_CCxN_DISABLE);
mbed_official 133:d4dda5c437f0 1328
mbed_official 133:d4dda5c437f0 1329 /* Disable the Main Ouput */
mbed_official 133:d4dda5c437f0 1330 __HAL_TIM_MOE_DISABLE(htim);
mbed_official 133:d4dda5c437f0 1331
mbed_official 133:d4dda5c437f0 1332 /* Disable the Peripheral */
mbed_official 133:d4dda5c437f0 1333 __HAL_TIM_DISABLE(htim);
mbed_official 133:d4dda5c437f0 1334
mbed_official 133:d4dda5c437f0 1335 /* Return function status */
mbed_official 133:d4dda5c437f0 1336 return HAL_OK;
mbed_official 133:d4dda5c437f0 1337 }
mbed_official 133:d4dda5c437f0 1338
mbed_official 133:d4dda5c437f0 1339 /**
mbed_official 133:d4dda5c437f0 1340 * @brief Starts the TIM One Pulse signal generation in interrupt mode on the
mbed_official 133:d4dda5c437f0 1341 * complementary channel.
mbed_official 242:7074e42da0b2 1342 * @param htim: pointer to a TIM_HandleTypeDef structure that contains
mbed_official 242:7074e42da0b2 1343 * the configuration information for TIM module.
mbed_official 242:7074e42da0b2 1344 * @param OutputChannel: TIM Channel to be enabled.
mbed_official 133:d4dda5c437f0 1345 * This parameter can be one of the following values:
mbed_official 242:7074e42da0b2 1346 * TIM_CHANNEL_1 / IM_CHANNEL_2
mbed_official 133:d4dda5c437f0 1347 * @retval HAL status
mbed_official 133:d4dda5c437f0 1348 */
mbed_official 133:d4dda5c437f0 1349 HAL_StatusTypeDef HAL_TIMEx_OnePulseN_Start_IT(TIM_HandleTypeDef *htim, uint32_t OutputChannel)
mbed_official 133:d4dda5c437f0 1350 {
mbed_official 133:d4dda5c437f0 1351 /* Check the parameters */
mbed_official 133:d4dda5c437f0 1352 assert_param(IS_TIM_CCXN_INSTANCE(htim->Instance, OutputChannel));
mbed_official 133:d4dda5c437f0 1353
mbed_official 133:d4dda5c437f0 1354 /* Enable the TIM Capture/Compare 1 interrupt */
mbed_official 133:d4dda5c437f0 1355 __HAL_TIM_ENABLE_IT(htim, TIM_IT_CC1);
mbed_official 133:d4dda5c437f0 1356
mbed_official 133:d4dda5c437f0 1357 /* Enable the TIM Capture/Compare 2 interrupt */
mbed_official 133:d4dda5c437f0 1358 __HAL_TIM_ENABLE_IT(htim, TIM_IT_CC2);
mbed_official 133:d4dda5c437f0 1359
mbed_official 133:d4dda5c437f0 1360 /* Enable the complementary One Pulse output */
mbed_official 133:d4dda5c437f0 1361 TIM_CCxNChannelCmd(htim->Instance, OutputChannel, TIM_CCxN_ENABLE);
mbed_official 133:d4dda5c437f0 1362
mbed_official 133:d4dda5c437f0 1363 /* Enable the Main Ouput */
mbed_official 133:d4dda5c437f0 1364 __HAL_TIM_MOE_ENABLE(htim);
mbed_official 133:d4dda5c437f0 1365
mbed_official 133:d4dda5c437f0 1366 /* Return function status */
mbed_official 133:d4dda5c437f0 1367 return HAL_OK;
mbed_official 133:d4dda5c437f0 1368 }
mbed_official 133:d4dda5c437f0 1369
mbed_official 133:d4dda5c437f0 1370 /**
mbed_official 133:d4dda5c437f0 1371 * @brief Stops the TIM One Pulse signal generation in interrupt mode on the
mbed_official 133:d4dda5c437f0 1372 * complementary channel.
mbed_official 242:7074e42da0b2 1373 * @param htim: pointer to a TIM_HandleTypeDef structure that contains
mbed_official 242:7074e42da0b2 1374 * the configuration information for TIM module.
mbed_official 242:7074e42da0b2 1375 * @param OutputChannel: TIM Channel to be disabled.
mbed_official 133:d4dda5c437f0 1376 * This parameter can be one of the following values:
mbed_official 242:7074e42da0b2 1377 * TIM_CHANNEL_1 / IM_CHANNEL_2
mbed_official 133:d4dda5c437f0 1378 * @retval HAL status
mbed_official 133:d4dda5c437f0 1379 */
mbed_official 133:d4dda5c437f0 1380 HAL_StatusTypeDef HAL_TIMEx_OnePulseN_Stop_IT(TIM_HandleTypeDef *htim, uint32_t OutputChannel)
mbed_official 133:d4dda5c437f0 1381 {
mbed_official 133:d4dda5c437f0 1382 /* Check the parameters */
mbed_official 133:d4dda5c437f0 1383 assert_param(IS_TIM_CCXN_INSTANCE(htim->Instance, OutputChannel));
mbed_official 133:d4dda5c437f0 1384
mbed_official 133:d4dda5c437f0 1385 /* Disable the TIM Capture/Compare 1 interrupt */
mbed_official 133:d4dda5c437f0 1386 __HAL_TIM_DISABLE_IT(htim, TIM_IT_CC1);
mbed_official 133:d4dda5c437f0 1387
mbed_official 133:d4dda5c437f0 1388 /* Disable the TIM Capture/Compare 2 interrupt */
mbed_official 133:d4dda5c437f0 1389 __HAL_TIM_DISABLE_IT(htim, TIM_IT_CC2);
mbed_official 133:d4dda5c437f0 1390
mbed_official 133:d4dda5c437f0 1391 /* Disable the complementary One Pulse output */
mbed_official 133:d4dda5c437f0 1392 TIM_CCxNChannelCmd(htim->Instance, OutputChannel, TIM_CCxN_DISABLE);
mbed_official 133:d4dda5c437f0 1393
mbed_official 133:d4dda5c437f0 1394 /* Disable the Main Ouput */
mbed_official 133:d4dda5c437f0 1395 __HAL_TIM_MOE_DISABLE(htim);
mbed_official 133:d4dda5c437f0 1396
mbed_official 133:d4dda5c437f0 1397 /* Disable the Peripheral */
mbed_official 133:d4dda5c437f0 1398 __HAL_TIM_DISABLE(htim);
mbed_official 133:d4dda5c437f0 1399
mbed_official 133:d4dda5c437f0 1400 /* Return function status */
mbed_official 133:d4dda5c437f0 1401 return HAL_OK;
mbed_official 133:d4dda5c437f0 1402 }
mbed_official 133:d4dda5c437f0 1403
mbed_official 133:d4dda5c437f0 1404 /**
mbed_official 133:d4dda5c437f0 1405 * @}
mbed_official 133:d4dda5c437f0 1406 */
mbed_official 133:d4dda5c437f0 1407 /** @defgroup TIMEx_Group5 Peripheral Control functions
mbed_official 133:d4dda5c437f0 1408 * @brief Peripheral Control functions
mbed_official 133:d4dda5c437f0 1409 *
mbed_official 133:d4dda5c437f0 1410 @verbatim
mbed_official 133:d4dda5c437f0 1411 ==============================================================================
mbed_official 133:d4dda5c437f0 1412 ##### Peripheral Control functions #####
mbed_official 133:d4dda5c437f0 1413 ==============================================================================
mbed_official 133:d4dda5c437f0 1414 [..]
mbed_official 133:d4dda5c437f0 1415 This section provides functions allowing to:
mbed_official 133:d4dda5c437f0 1416 (+) Configure The Input Output channels for OC, PWM, IC or One Pulse mode.
mbed_official 133:d4dda5c437f0 1417 (+) Configure External Clock source.
mbed_official 133:d4dda5c437f0 1418 (+) Configure Complementary channels, break features and dead time.
mbed_official 133:d4dda5c437f0 1419 (+) Configure Master and the Slave synchronization.
mbed_official 133:d4dda5c437f0 1420 (+) Configure the commutation event in case of use of the Hall sensor interface.
mbed_official 133:d4dda5c437f0 1421 (+) Configure the DMA Burst Mode.
mbed_official 133:d4dda5c437f0 1422
mbed_official 133:d4dda5c437f0 1423 @endverbatim
mbed_official 133:d4dda5c437f0 1424 * @{
mbed_official 133:d4dda5c437f0 1425 */
mbed_official 133:d4dda5c437f0 1426 /**
mbed_official 133:d4dda5c437f0 1427 * @brief Configure the TIM commutation event sequence.
mbed_official 242:7074e42da0b2 1428 * @note This function is mandatory to use the commutation event in order to
mbed_official 133:d4dda5c437f0 1429 * update the configuration at each commutation detection on the TRGI input of the Timer,
mbed_official 133:d4dda5c437f0 1430 * the typical use of this feature is with the use of another Timer(interface Timer)
mbed_official 133:d4dda5c437f0 1431 * configured in Hall sensor interface, this interface Timer will generate the
mbed_official 133:d4dda5c437f0 1432 * commutation at its TRGO output (connected to Timer used in this function) each time
mbed_official 133:d4dda5c437f0 1433 * the TI1 of the Interface Timer detect a commutation at its input TI1.
mbed_official 242:7074e42da0b2 1434 * @param htim: pointer to a TIM_HandleTypeDef structure that contains
mbed_official 242:7074e42da0b2 1435 * the configuration information for TIM module.
mbed_official 242:7074e42da0b2 1436 * @param InputTrigger: the Internal trigger corresponding to the Timer Interfacing with the Hall sensor.
mbed_official 133:d4dda5c437f0 1437 * This parameter can be one of the following values:
mbed_official 242:7074e42da0b2 1438 * TIM_TS_ITR0 /
mbed_official 242:7074e42da0b2 1439 * TIM_TS_ITR1 /
mbed_official 242:7074e42da0b2 1440 * TIM_TS_ITR2 /
mbed_official 242:7074e42da0b2 1441 * TIM_TS_ITR3 /
mbed_official 242:7074e42da0b2 1442 * TIM_TS_NONE
mbed_official 242:7074e42da0b2 1443 * @param CommutationSource: the Commutation Event source.
mbed_official 133:d4dda5c437f0 1444 * This parameter can be one of the following values:
mbed_official 133:d4dda5c437f0 1445 * @arg TIM_COMMUTATION_TRGI: Commutation source is the TRGI of the Interface Timer
mbed_official 133:d4dda5c437f0 1446 * @arg TIM_COMMUTATION_SOFTWARE: Commutation source is set by software using the COMG bit
mbed_official 133:d4dda5c437f0 1447 * @retval HAL status
mbed_official 133:d4dda5c437f0 1448 */
mbed_official 133:d4dda5c437f0 1449 HAL_StatusTypeDef HAL_TIMEx_ConfigCommutationEvent(TIM_HandleTypeDef *htim, uint32_t InputTrigger, uint32_t CommutationSource)
mbed_official 133:d4dda5c437f0 1450 {
mbed_official 133:d4dda5c437f0 1451 /* Check the parameters */
mbed_official 133:d4dda5c437f0 1452 assert_param(IS_TIM_ADVANCED_INSTANCE(htim->Instance));
mbed_official 133:d4dda5c437f0 1453 assert_param(IS_TIM_INTERNAL_TRIGGEREVENT_SELECTION(InputTrigger));
mbed_official 133:d4dda5c437f0 1454
mbed_official 133:d4dda5c437f0 1455 __HAL_LOCK(htim);
mbed_official 133:d4dda5c437f0 1456
mbed_official 133:d4dda5c437f0 1457 if ((InputTrigger == TIM_TS_ITR0) || (InputTrigger == TIM_TS_ITR1) ||
mbed_official 133:d4dda5c437f0 1458 (InputTrigger == TIM_TS_ITR2) || (InputTrigger == TIM_TS_ITR3))
mbed_official 133:d4dda5c437f0 1459 {
mbed_official 133:d4dda5c437f0 1460 /* Select the Input trigger */
mbed_official 133:d4dda5c437f0 1461 htim->Instance->SMCR &= ~TIM_SMCR_TS;
mbed_official 133:d4dda5c437f0 1462 htim->Instance->SMCR |= InputTrigger;
mbed_official 133:d4dda5c437f0 1463 }
mbed_official 133:d4dda5c437f0 1464
mbed_official 133:d4dda5c437f0 1465 /* Select the Capture Compare preload feature */
mbed_official 133:d4dda5c437f0 1466 htim->Instance->CR2 |= TIM_CR2_CCPC;
mbed_official 133:d4dda5c437f0 1467 /* Select the Commutation event source */
mbed_official 133:d4dda5c437f0 1468 htim->Instance->CR2 &= ~TIM_CR2_CCUS;
mbed_official 133:d4dda5c437f0 1469 htim->Instance->CR2 |= CommutationSource;
mbed_official 133:d4dda5c437f0 1470
mbed_official 133:d4dda5c437f0 1471 __HAL_UNLOCK(htim);
mbed_official 133:d4dda5c437f0 1472
mbed_official 133:d4dda5c437f0 1473 return HAL_OK;
mbed_official 133:d4dda5c437f0 1474 }
mbed_official 133:d4dda5c437f0 1475
mbed_official 133:d4dda5c437f0 1476 /**
mbed_official 133:d4dda5c437f0 1477 * @brief Configure the TIM commutation event sequence with interrupt.
mbed_official 242:7074e42da0b2 1478 * @note This function is mandatory to use the commutation event in order to
mbed_official 133:d4dda5c437f0 1479 * update the configuration at each commutation detection on the TRGI input of the Timer,
mbed_official 133:d4dda5c437f0 1480 * the typical use of this feature is with the use of another Timer(interface Timer)
mbed_official 133:d4dda5c437f0 1481 * configured in Hall sensor interface, this interface Timer will generate the
mbed_official 133:d4dda5c437f0 1482 * commutation at its TRGO output (connected to Timer used in this function) each time
mbed_official 133:d4dda5c437f0 1483 * the TI1 of the Interface Timer detect a commutation at its input TI1.
mbed_official 242:7074e42da0b2 1484 * @param htim: pointer to a TIM_HandleTypeDef structure that contains
mbed_official 242:7074e42da0b2 1485 * the configuration information for TIM module.
mbed_official 242:7074e42da0b2 1486 * @param InputTrigger: the Internal trigger corresponding to the Timer Interfacing with the Hall sensor.
mbed_official 133:d4dda5c437f0 1487 * This parameter can be one of the following values:
mbed_official 242:7074e42da0b2 1488 * TIM_TS_ITR0 /
mbed_official 242:7074e42da0b2 1489 * TIM_TS_ITR1 /
mbed_official 242:7074e42da0b2 1490 * TIM_TS_ITR2 /
mbed_official 242:7074e42da0b2 1491 * TIM_TS_ITR3 /
mbed_official 242:7074e42da0b2 1492 * TIM_TS_NONE
mbed_official 242:7074e42da0b2 1493 * @param CommutationSource: the Commutation Event source.
mbed_official 133:d4dda5c437f0 1494 * This parameter can be one of the following values:
mbed_official 133:d4dda5c437f0 1495 * @arg TIM_COMMUTATION_TRGI: Commutation source is the TRGI of the Interface Timer
mbed_official 133:d4dda5c437f0 1496 * @arg TIM_COMMUTATION_SOFTWARE: Commutation source is set by software using the COMG bit
mbed_official 133:d4dda5c437f0 1497 * @retval HAL status
mbed_official 133:d4dda5c437f0 1498 */
mbed_official 133:d4dda5c437f0 1499 HAL_StatusTypeDef HAL_TIMEx_ConfigCommutationEvent_IT(TIM_HandleTypeDef *htim, uint32_t InputTrigger, uint32_t CommutationSource)
mbed_official 133:d4dda5c437f0 1500 {
mbed_official 133:d4dda5c437f0 1501 /* Check the parameters */
mbed_official 133:d4dda5c437f0 1502 assert_param(IS_TIM_ADVANCED_INSTANCE(htim->Instance));
mbed_official 133:d4dda5c437f0 1503 assert_param(IS_TIM_INTERNAL_TRIGGEREVENT_SELECTION(InputTrigger));
mbed_official 133:d4dda5c437f0 1504
mbed_official 133:d4dda5c437f0 1505 __HAL_LOCK(htim);
mbed_official 133:d4dda5c437f0 1506
mbed_official 133:d4dda5c437f0 1507 if ((InputTrigger == TIM_TS_ITR0) || (InputTrigger == TIM_TS_ITR1) ||
mbed_official 133:d4dda5c437f0 1508 (InputTrigger == TIM_TS_ITR2) || (InputTrigger == TIM_TS_ITR3))
mbed_official 133:d4dda5c437f0 1509 {
mbed_official 133:d4dda5c437f0 1510 /* Select the Input trigger */
mbed_official 133:d4dda5c437f0 1511 htim->Instance->SMCR &= ~TIM_SMCR_TS;
mbed_official 133:d4dda5c437f0 1512 htim->Instance->SMCR |= InputTrigger;
mbed_official 133:d4dda5c437f0 1513 }
mbed_official 133:d4dda5c437f0 1514
mbed_official 133:d4dda5c437f0 1515 /* Select the Capture Compare preload feature */
mbed_official 133:d4dda5c437f0 1516 htim->Instance->CR2 |= TIM_CR2_CCPC;
mbed_official 133:d4dda5c437f0 1517 /* Select the Commutation event source */
mbed_official 133:d4dda5c437f0 1518 htim->Instance->CR2 &= ~TIM_CR2_CCUS;
mbed_official 133:d4dda5c437f0 1519 htim->Instance->CR2 |= CommutationSource;
mbed_official 133:d4dda5c437f0 1520
mbed_official 133:d4dda5c437f0 1521 /* Enable the Commutation Interrupt Request */
mbed_official 133:d4dda5c437f0 1522 __HAL_TIM_ENABLE_IT(htim, TIM_IT_COM);
mbed_official 133:d4dda5c437f0 1523
mbed_official 133:d4dda5c437f0 1524 __HAL_UNLOCK(htim);
mbed_official 133:d4dda5c437f0 1525
mbed_official 133:d4dda5c437f0 1526 return HAL_OK;
mbed_official 133:d4dda5c437f0 1527 }
mbed_official 133:d4dda5c437f0 1528
mbed_official 133:d4dda5c437f0 1529 /**
mbed_official 133:d4dda5c437f0 1530 * @brief Configure the TIM commutation event sequence with DMA.
mbed_official 242:7074e42da0b2 1531 * @note This function is mandatory to use the commutation event in order to
mbed_official 133:d4dda5c437f0 1532 * update the configuration at each commutation detection on the TRGI input of the Timer,
mbed_official 133:d4dda5c437f0 1533 * the typical use of this feature is with the use of another Timer(interface Timer)
mbed_official 133:d4dda5c437f0 1534 * configured in Hall sensor interface, this interface Timer will generate the
mbed_official 133:d4dda5c437f0 1535 * commutation at its TRGO output (connected to Timer used in this function) each time
mbed_official 133:d4dda5c437f0 1536 * the TI1 of the Interface Timer detect a commutation at its input TI1.
mbed_official 133:d4dda5c437f0 1537 * @note: The user should configure the DMA in his own software, in This function only the COMDE bit is set
mbed_official 242:7074e42da0b2 1538 * @param htim: pointer to a TIM_HandleTypeDef structure that contains
mbed_official 242:7074e42da0b2 1539 * the configuration information for TIM module.
mbed_official 242:7074e42da0b2 1540 * @param InputTrigger: the Internal trigger corresponding to the Timer Interfacing with the Hall sensor.
mbed_official 133:d4dda5c437f0 1541 * This parameter can be one of the following values:
mbed_official 242:7074e42da0b2 1542 * TIM_TS_ITR0 /
mbed_official 242:7074e42da0b2 1543 * TIM_TS_ITR1 /
mbed_official 242:7074e42da0b2 1544 * TIM_TS_ITR2 /
mbed_official 242:7074e42da0b2 1545 * TIM_TS_ITR3 /
mbed_official 242:7074e42da0b2 1546 * TIM_TS_NONE
mbed_official 242:7074e42da0b2 1547 * @param CommutationSource: the Commutation Event source.
mbed_official 133:d4dda5c437f0 1548 * This parameter can be one of the following values:
mbed_official 133:d4dda5c437f0 1549 * @arg TIM_COMMUTATION_TRGI: Commutation source is the TRGI of the Interface Timer
mbed_official 133:d4dda5c437f0 1550 * @arg TIM_COMMUTATION_SOFTWARE: Commutation source is set by software using the COMG bit
mbed_official 133:d4dda5c437f0 1551 * @retval HAL status
mbed_official 133:d4dda5c437f0 1552 */
mbed_official 133:d4dda5c437f0 1553 HAL_StatusTypeDef HAL_TIMEx_ConfigCommutationEvent_DMA(TIM_HandleTypeDef *htim, uint32_t InputTrigger, uint32_t CommutationSource)
mbed_official 133:d4dda5c437f0 1554 {
mbed_official 133:d4dda5c437f0 1555 /* Check the parameters */
mbed_official 133:d4dda5c437f0 1556 assert_param(IS_TIM_ADVANCED_INSTANCE(htim->Instance));
mbed_official 133:d4dda5c437f0 1557 assert_param(IS_TIM_INTERNAL_TRIGGEREVENT_SELECTION(InputTrigger));
mbed_official 133:d4dda5c437f0 1558
mbed_official 133:d4dda5c437f0 1559 __HAL_LOCK(htim);
mbed_official 133:d4dda5c437f0 1560
mbed_official 133:d4dda5c437f0 1561 if ((InputTrigger == TIM_TS_ITR0) || (InputTrigger == TIM_TS_ITR1) ||
mbed_official 133:d4dda5c437f0 1562 (InputTrigger == TIM_TS_ITR2) || (InputTrigger == TIM_TS_ITR3))
mbed_official 133:d4dda5c437f0 1563 {
mbed_official 133:d4dda5c437f0 1564 /* Select the Input trigger */
mbed_official 133:d4dda5c437f0 1565 htim->Instance->SMCR &= ~TIM_SMCR_TS;
mbed_official 133:d4dda5c437f0 1566 htim->Instance->SMCR |= InputTrigger;
mbed_official 133:d4dda5c437f0 1567 }
mbed_official 133:d4dda5c437f0 1568
mbed_official 133:d4dda5c437f0 1569 /* Select the Capture Compare preload feature */
mbed_official 133:d4dda5c437f0 1570 htim->Instance->CR2 |= TIM_CR2_CCPC;
mbed_official 133:d4dda5c437f0 1571 /* Select the Commutation event source */
mbed_official 133:d4dda5c437f0 1572 htim->Instance->CR2 &= ~TIM_CR2_CCUS;
mbed_official 133:d4dda5c437f0 1573 htim->Instance->CR2 |= CommutationSource;
mbed_official 133:d4dda5c437f0 1574
mbed_official 133:d4dda5c437f0 1575 /* Enable the Commutation DMA Request */
mbed_official 133:d4dda5c437f0 1576 /* Set the DMA Commutation Callback */
mbed_official 133:d4dda5c437f0 1577 htim->hdma[TIM_DMA_ID_COMMUTATION]->XferCpltCallback = HAL_TIMEx_DMACommutationCplt;
mbed_official 133:d4dda5c437f0 1578 /* Set the DMA error callback */
mbed_official 133:d4dda5c437f0 1579 htim->hdma[TIM_DMA_ID_COMMUTATION]->XferErrorCallback = HAL_TIM_DMAError;
mbed_official 133:d4dda5c437f0 1580
mbed_official 133:d4dda5c437f0 1581 /* Enable the Commutation DMA Request */
mbed_official 133:d4dda5c437f0 1582 __HAL_TIM_ENABLE_DMA(htim, TIM_DMA_COM);
mbed_official 133:d4dda5c437f0 1583
mbed_official 133:d4dda5c437f0 1584 __HAL_UNLOCK(htim);
mbed_official 133:d4dda5c437f0 1585
mbed_official 133:d4dda5c437f0 1586 return HAL_OK;
mbed_official 133:d4dda5c437f0 1587 }
mbed_official 133:d4dda5c437f0 1588
mbed_official 133:d4dda5c437f0 1589 /**
mbed_official 133:d4dda5c437f0 1590 * @brief Configures the TIM in master mode.
mbed_official 242:7074e42da0b2 1591 * @param htim: pointer to a TIM_HandleTypeDef structure that contains
mbed_official 242:7074e42da0b2 1592 * the configuration information for TIM module.
mbed_official 133:d4dda5c437f0 1593 * @param sMasterConfig: pointer to a TIM_MasterConfigTypeDef structure that
mbed_official 133:d4dda5c437f0 1594 * contains the selected trigger output (TRGO) and the Master/Slave
mbed_official 133:d4dda5c437f0 1595 * mode.
mbed_official 133:d4dda5c437f0 1596 * @retval HAL status
mbed_official 133:d4dda5c437f0 1597 */
mbed_official 133:d4dda5c437f0 1598 HAL_StatusTypeDef HAL_TIMEx_MasterConfigSynchronization(TIM_HandleTypeDef *htim, TIM_MasterConfigTypeDef * sMasterConfig)
mbed_official 133:d4dda5c437f0 1599 {
mbed_official 133:d4dda5c437f0 1600 /* Check the parameters */
mbed_official 133:d4dda5c437f0 1601 assert_param(IS_TIM_MASTER_INSTANCE(htim->Instance));
mbed_official 133:d4dda5c437f0 1602 assert_param(IS_TIM_TRGO_SOURCE(sMasterConfig->MasterOutputTrigger));
mbed_official 133:d4dda5c437f0 1603 assert_param(IS_TIM_MSM_STATE(sMasterConfig->MasterSlaveMode));
mbed_official 133:d4dda5c437f0 1604
mbed_official 133:d4dda5c437f0 1605 __HAL_LOCK(htim);
mbed_official 133:d4dda5c437f0 1606
mbed_official 133:d4dda5c437f0 1607 htim->State = HAL_TIM_STATE_BUSY;
mbed_official 133:d4dda5c437f0 1608
mbed_official 133:d4dda5c437f0 1609 /* Reset the MMS Bits */
mbed_official 133:d4dda5c437f0 1610 htim->Instance->CR2 &= ~TIM_CR2_MMS;
mbed_official 133:d4dda5c437f0 1611 /* Select the TRGO source */
mbed_official 133:d4dda5c437f0 1612 htim->Instance->CR2 |= sMasterConfig->MasterOutputTrigger;
mbed_official 133:d4dda5c437f0 1613
mbed_official 133:d4dda5c437f0 1614 /* Reset the MSM Bit */
mbed_official 133:d4dda5c437f0 1615 htim->Instance->SMCR &= ~TIM_SMCR_MSM;
mbed_official 133:d4dda5c437f0 1616 /* Set or Reset the MSM Bit */
mbed_official 133:d4dda5c437f0 1617 htim->Instance->SMCR |= sMasterConfig->MasterSlaveMode;
mbed_official 133:d4dda5c437f0 1618
mbed_official 133:d4dda5c437f0 1619 htim->State = HAL_TIM_STATE_READY;
mbed_official 133:d4dda5c437f0 1620
mbed_official 133:d4dda5c437f0 1621 __HAL_UNLOCK(htim);
mbed_official 133:d4dda5c437f0 1622
mbed_official 133:d4dda5c437f0 1623 return HAL_OK;
mbed_official 133:d4dda5c437f0 1624 }
mbed_official 133:d4dda5c437f0 1625
mbed_official 133:d4dda5c437f0 1626 /**
mbed_official 133:d4dda5c437f0 1627 * @brief Configures the Break feature, dead time, Lock level, OSSI/OSSR State
mbed_official 133:d4dda5c437f0 1628 * and the AOE(automatic output enable).
mbed_official 242:7074e42da0b2 1629 * @param htim: pointer to a TIM_HandleTypeDef structure that contains
mbed_official 242:7074e42da0b2 1630 * the configuration information for TIM module.
mbed_official 133:d4dda5c437f0 1631 * @param sBreakDeadTimeConfig: pointer to a TIM_ConfigBreakDeadConfig_TypeDef structure that
mbed_official 133:d4dda5c437f0 1632 * contains the BDTR Register configuration information for the TIM peripheral.
mbed_official 133:d4dda5c437f0 1633 * @retval HAL status
mbed_official 133:d4dda5c437f0 1634 */
mbed_official 133:d4dda5c437f0 1635 HAL_StatusTypeDef HAL_TIMEx_ConfigBreakDeadTime(TIM_HandleTypeDef *htim,
mbed_official 133:d4dda5c437f0 1636 TIM_BreakDeadTimeConfigTypeDef * sBreakDeadTimeConfig)
mbed_official 133:d4dda5c437f0 1637 {
mbed_official 133:d4dda5c437f0 1638 /* Check the parameters */
mbed_official 133:d4dda5c437f0 1639 assert_param(IS_TIM_CC4_INSTANCE(htim->Instance));
mbed_official 133:d4dda5c437f0 1640 assert_param(IS_TIM_OSSR_STATE(sBreakDeadTimeConfig->OffStateRunMode));
mbed_official 133:d4dda5c437f0 1641 assert_param(IS_TIM_OSSI_STATE(sBreakDeadTimeConfig->OffStateIDLEMode));
mbed_official 133:d4dda5c437f0 1642 assert_param(IS_TIM_LOCK_LEVEL(sBreakDeadTimeConfig->LockLevel));
mbed_official 133:d4dda5c437f0 1643 assert_param(IS_TIM_BREAK_STATE(sBreakDeadTimeConfig->BreakState));
mbed_official 133:d4dda5c437f0 1644 assert_param(IS_TIM_BREAK_POLARITY(sBreakDeadTimeConfig->BreakPolarity));
mbed_official 133:d4dda5c437f0 1645 assert_param(IS_TIM_AUTOMATIC_OUTPUT_STATE(sBreakDeadTimeConfig->AutomaticOutput));
mbed_official 133:d4dda5c437f0 1646
mbed_official 133:d4dda5c437f0 1647 /* Process Locked */
mbed_official 133:d4dda5c437f0 1648 __HAL_LOCK(htim);
mbed_official 133:d4dda5c437f0 1649
mbed_official 133:d4dda5c437f0 1650 htim->State = HAL_TIM_STATE_BUSY;
mbed_official 133:d4dda5c437f0 1651
mbed_official 133:d4dda5c437f0 1652 /* Set the Lock level, the Break enable Bit and the Polarity, the OSSR State,
mbed_official 133:d4dda5c437f0 1653 the OSSI State, the dead time value and the Automatic Output Enable Bit */
mbed_official 133:d4dda5c437f0 1654 htim->Instance->BDTR = (uint32_t)sBreakDeadTimeConfig->OffStateRunMode |
mbed_official 133:d4dda5c437f0 1655 sBreakDeadTimeConfig->OffStateIDLEMode |
mbed_official 133:d4dda5c437f0 1656 sBreakDeadTimeConfig->LockLevel |
mbed_official 133:d4dda5c437f0 1657 sBreakDeadTimeConfig->DeadTime |
mbed_official 133:d4dda5c437f0 1658 sBreakDeadTimeConfig->BreakState |
mbed_official 133:d4dda5c437f0 1659 sBreakDeadTimeConfig->BreakPolarity |
mbed_official 133:d4dda5c437f0 1660 sBreakDeadTimeConfig->AutomaticOutput;
mbed_official 133:d4dda5c437f0 1661
mbed_official 133:d4dda5c437f0 1662
mbed_official 133:d4dda5c437f0 1663 htim->State = HAL_TIM_STATE_READY;
mbed_official 133:d4dda5c437f0 1664
mbed_official 133:d4dda5c437f0 1665 __HAL_UNLOCK(htim);
mbed_official 133:d4dda5c437f0 1666
mbed_official 133:d4dda5c437f0 1667 return HAL_OK;
mbed_official 133:d4dda5c437f0 1668 }
mbed_official 133:d4dda5c437f0 1669
mbed_official 133:d4dda5c437f0 1670 /**
mbed_official 133:d4dda5c437f0 1671 * @brief Configures the TIM2, TIM5 and TIM11 Remapping input capabilities.
mbed_official 242:7074e42da0b2 1672 * @param htim: pointer to a TIM_HandleTypeDef structure that contains
mbed_official 242:7074e42da0b2 1673 * the configuration information for TIM module..
mbed_official 133:d4dda5c437f0 1674 * @param TIM_Remap: specifies the TIM input remapping source.
mbed_official 133:d4dda5c437f0 1675 * This parameter can be one of the following values:
mbed_official 133:d4dda5c437f0 1676 * @arg TIM_TIM2_TIM8_TRGO: TIM2 ITR1 input is connected to TIM8 Trigger output(default)
mbed_official 133:d4dda5c437f0 1677 * @arg TIM_TIM2_ETH_PTP: TIM2 ITR1 input is connected to ETH PTP trogger output.
mbed_official 133:d4dda5c437f0 1678 * @arg TIM_TIM2_USBFS_SOF: TIM2 ITR1 input is connected to USB FS SOF.
mbed_official 133:d4dda5c437f0 1679 * @arg TIM_TIM2_USBHS_SOF: TIM2 ITR1 input is connected to USB HS SOF.
mbed_official 133:d4dda5c437f0 1680 * @arg TIM_TIM5_GPIO: TIM5 CH4 input is connected to dedicated Timer pin(default)
mbed_official 133:d4dda5c437f0 1681 * @arg TIM_TIM5_LSI: TIM5 CH4 input is connected to LSI clock.
mbed_official 133:d4dda5c437f0 1682 * @arg TIM_TIM5_LSE: TIM5 CH4 input is connected to LSE clock.
mbed_official 133:d4dda5c437f0 1683 * @arg TIM_TIM5_RTC: TIM5 CH4 input is connected to RTC Output event.
mbed_official 133:d4dda5c437f0 1684 * @arg TIM_TIM11_GPIO: TIM11 CH4 input is connected to dedicated Timer pin(default)
mbed_official 133:d4dda5c437f0 1685 * @arg TIM_TIM11_HSE: TIM11 CH4 input is connected to HSE_RTC clock
mbed_official 133:d4dda5c437f0 1686 * (HSE divided by a programmable prescaler)
mbed_official 133:d4dda5c437f0 1687 * @retval HAL status
mbed_official 133:d4dda5c437f0 1688 */
mbed_official 133:d4dda5c437f0 1689 HAL_StatusTypeDef HAL_TIMEx_RemapConfig(TIM_HandleTypeDef *htim, uint32_t Remap)
mbed_official 133:d4dda5c437f0 1690 {
mbed_official 133:d4dda5c437f0 1691 __HAL_LOCK(htim);
mbed_official 133:d4dda5c437f0 1692
mbed_official 133:d4dda5c437f0 1693 /* Check parameters */
mbed_official 133:d4dda5c437f0 1694 assert_param(IS_TIM_REMAP_INSTANCE(htim->Instance));
mbed_official 133:d4dda5c437f0 1695 assert_param(IS_TIM_REMAP(Remap));
mbed_official 133:d4dda5c437f0 1696
mbed_official 133:d4dda5c437f0 1697 /* Set the Timer remapping configuration */
mbed_official 133:d4dda5c437f0 1698 htim->Instance->OR = Remap;
mbed_official 133:d4dda5c437f0 1699
mbed_official 133:d4dda5c437f0 1700 htim->State = HAL_TIM_STATE_READY;
mbed_official 133:d4dda5c437f0 1701
mbed_official 133:d4dda5c437f0 1702 __HAL_UNLOCK(htim);
mbed_official 133:d4dda5c437f0 1703
mbed_official 133:d4dda5c437f0 1704 return HAL_OK;
mbed_official 133:d4dda5c437f0 1705 }
mbed_official 133:d4dda5c437f0 1706
mbed_official 133:d4dda5c437f0 1707 /**
mbed_official 133:d4dda5c437f0 1708 * @}
mbed_official 133:d4dda5c437f0 1709 */
mbed_official 133:d4dda5c437f0 1710
mbed_official 133:d4dda5c437f0 1711 /** @defgroup TIMEx_Group6 Extension Callbacks functions
mbed_official 133:d4dda5c437f0 1712 * @brief Extension Callbacks functions
mbed_official 133:d4dda5c437f0 1713 *
mbed_official 133:d4dda5c437f0 1714 @verbatim
mbed_official 133:d4dda5c437f0 1715 ==============================================================================
mbed_official 133:d4dda5c437f0 1716 ##### Extension Callbacks functions #####
mbed_official 133:d4dda5c437f0 1717 ==============================================================================
mbed_official 133:d4dda5c437f0 1718 [..]
mbed_official 133:d4dda5c437f0 1719 This section provides Extension TIM callback functions:
mbed_official 133:d4dda5c437f0 1720 (+) Timer Commutation callback
mbed_official 133:d4dda5c437f0 1721 (+) Timer Break callback
mbed_official 133:d4dda5c437f0 1722
mbed_official 133:d4dda5c437f0 1723 @endverbatim
mbed_official 133:d4dda5c437f0 1724 * @{
mbed_official 133:d4dda5c437f0 1725 */
mbed_official 133:d4dda5c437f0 1726
mbed_official 133:d4dda5c437f0 1727 /**
mbed_official 133:d4dda5c437f0 1728 * @brief Hall commutation changed callback in non blocking mode
mbed_official 242:7074e42da0b2 1729 * @param htim: pointer to a TIM_HandleTypeDef structure that contains
mbed_official 242:7074e42da0b2 1730 * the configuration information for TIM module.
mbed_official 133:d4dda5c437f0 1731 * @retval None
mbed_official 133:d4dda5c437f0 1732 */
mbed_official 133:d4dda5c437f0 1733 __weak void HAL_TIMEx_CommutationCallback(TIM_HandleTypeDef *htim)
mbed_official 133:d4dda5c437f0 1734 {
mbed_official 133:d4dda5c437f0 1735 /* NOTE : This function Should not be modified, when the callback is needed,
mbed_official 133:d4dda5c437f0 1736 the HAL_TIMEx_CommutationCallback could be implemented in the user file
mbed_official 133:d4dda5c437f0 1737 */
mbed_official 133:d4dda5c437f0 1738 }
mbed_official 133:d4dda5c437f0 1739
mbed_official 133:d4dda5c437f0 1740 /**
mbed_official 133:d4dda5c437f0 1741 * @brief Hall Break detection callback in non blocking mode
mbed_official 242:7074e42da0b2 1742 * @param htim: pointer to a TIM_HandleTypeDef structure that contains
mbed_official 242:7074e42da0b2 1743 * the configuration information for TIM module.
mbed_official 133:d4dda5c437f0 1744 * @retval None
mbed_official 133:d4dda5c437f0 1745 */
mbed_official 133:d4dda5c437f0 1746 __weak void HAL_TIMEx_BreakCallback(TIM_HandleTypeDef *htim)
mbed_official 133:d4dda5c437f0 1747 {
mbed_official 133:d4dda5c437f0 1748 /* NOTE : This function Should not be modified, when the callback is needed,
mbed_official 133:d4dda5c437f0 1749 the HAL_TIMEx_BreakCallback could be implemented in the user file
mbed_official 133:d4dda5c437f0 1750 */
mbed_official 133:d4dda5c437f0 1751 }
mbed_official 133:d4dda5c437f0 1752
mbed_official 133:d4dda5c437f0 1753 /**
mbed_official 133:d4dda5c437f0 1754 * @}
mbed_official 133:d4dda5c437f0 1755 */
mbed_official 133:d4dda5c437f0 1756
mbed_official 133:d4dda5c437f0 1757 /** @defgroup TIMEx_Group7 Extension Peripheral State functions
mbed_official 133:d4dda5c437f0 1758 * @brief Extension Peripheral State functions
mbed_official 133:d4dda5c437f0 1759 *
mbed_official 133:d4dda5c437f0 1760 @verbatim
mbed_official 133:d4dda5c437f0 1761 ==============================================================================
mbed_official 133:d4dda5c437f0 1762 ##### Extension Peripheral State functions #####
mbed_official 133:d4dda5c437f0 1763 ==============================================================================
mbed_official 133:d4dda5c437f0 1764 [..]
mbed_official 242:7074e42da0b2 1765 This subsection permits to get in run-time the status of the peripheral
mbed_official 133:d4dda5c437f0 1766 and the data flow.
mbed_official 133:d4dda5c437f0 1767
mbed_official 133:d4dda5c437f0 1768 @endverbatim
mbed_official 133:d4dda5c437f0 1769 * @{
mbed_official 133:d4dda5c437f0 1770 */
mbed_official 133:d4dda5c437f0 1771
mbed_official 133:d4dda5c437f0 1772 /**
mbed_official 133:d4dda5c437f0 1773 * @brief Return the TIM Hall Sensor interface state
mbed_official 242:7074e42da0b2 1774 * @param htim: pointer to a TIM_HandleTypeDef structure that contains
mbed_official 242:7074e42da0b2 1775 * the configuration information for TIM module.
mbed_official 133:d4dda5c437f0 1776 * @retval HAL state
mbed_official 133:d4dda5c437f0 1777 */
mbed_official 133:d4dda5c437f0 1778 HAL_TIM_StateTypeDef HAL_TIMEx_HallSensor_GetState(TIM_HandleTypeDef *htim)
mbed_official 133:d4dda5c437f0 1779 {
mbed_official 133:d4dda5c437f0 1780 return htim->State;
mbed_official 133:d4dda5c437f0 1781 }
mbed_official 133:d4dda5c437f0 1782
mbed_official 133:d4dda5c437f0 1783 /**
mbed_official 133:d4dda5c437f0 1784 * @}
mbed_official 133:d4dda5c437f0 1785 */
mbed_official 133:d4dda5c437f0 1786
mbed_official 133:d4dda5c437f0 1787 /**
mbed_official 133:d4dda5c437f0 1788 * @brief TIM DMA Commutation callback.
mbed_official 242:7074e42da0b2 1789 * @param hdma: pointer to a DMA_HandleTypeDef structure that contains
mbed_official 242:7074e42da0b2 1790 * the configuration information for the specified DMA module.
mbed_official 133:d4dda5c437f0 1791 * @retval None
mbed_official 133:d4dda5c437f0 1792 */
mbed_official 133:d4dda5c437f0 1793 void HAL_TIMEx_DMACommutationCplt(DMA_HandleTypeDef *hdma)
mbed_official 133:d4dda5c437f0 1794 {
mbed_official 133:d4dda5c437f0 1795 TIM_HandleTypeDef* htim = ( TIM_HandleTypeDef* )((DMA_HandleTypeDef* )hdma)->Parent;
mbed_official 133:d4dda5c437f0 1796
mbed_official 133:d4dda5c437f0 1797 htim->State= HAL_TIM_STATE_READY;
mbed_official 133:d4dda5c437f0 1798
mbed_official 133:d4dda5c437f0 1799 HAL_TIMEx_CommutationCallback(htim);
mbed_official 133:d4dda5c437f0 1800 }
mbed_official 133:d4dda5c437f0 1801
mbed_official 133:d4dda5c437f0 1802 /**
mbed_official 133:d4dda5c437f0 1803 * @brief Enables or disables the TIM Capture Compare Channel xN.
mbed_official 133:d4dda5c437f0 1804 * @param TIMx to select the TIM peripheral
mbed_official 133:d4dda5c437f0 1805 * @param Channel: specifies the TIM Channel
mbed_official 133:d4dda5c437f0 1806 * This parameter can be one of the following values:
mbed_official 133:d4dda5c437f0 1807 * @arg TIM_Channel_1: TIM Channel 1
mbed_official 133:d4dda5c437f0 1808 * @arg TIM_Channel_2: TIM Channel 2
mbed_official 133:d4dda5c437f0 1809 * @arg TIM_Channel_3: TIM Channel 3
mbed_official 133:d4dda5c437f0 1810 * @param ChannelNState: specifies the TIM Channel CCxNE bit new state.
mbed_official 133:d4dda5c437f0 1811 * This parameter can be: TIM_CCxN_ENABLE or TIM_CCxN_Disable.
mbed_official 133:d4dda5c437f0 1812 * @retval None
mbed_official 133:d4dda5c437f0 1813 */
mbed_official 133:d4dda5c437f0 1814 static void TIM_CCxNChannelCmd(TIM_TypeDef* TIMx, uint32_t Channel, uint32_t ChannelNState)
mbed_official 133:d4dda5c437f0 1815 {
mbed_official 133:d4dda5c437f0 1816 uint32_t tmp = 0;
mbed_official 133:d4dda5c437f0 1817
mbed_official 133:d4dda5c437f0 1818 /* Check the parameters */
mbed_official 133:d4dda5c437f0 1819 assert_param(IS_TIM_CC4_INSTANCE(TIMx));
mbed_official 133:d4dda5c437f0 1820 assert_param(IS_TIM_COMPLEMENTARY_CHANNELS(Channel));
mbed_official 133:d4dda5c437f0 1821
mbed_official 133:d4dda5c437f0 1822 tmp = TIM_CCER_CC1NE << Channel;
mbed_official 133:d4dda5c437f0 1823
mbed_official 133:d4dda5c437f0 1824 /* Reset the CCxNE Bit */
mbed_official 133:d4dda5c437f0 1825 TIMx->CCER &= ~tmp;
mbed_official 133:d4dda5c437f0 1826
mbed_official 133:d4dda5c437f0 1827 /* Set or reset the CCxNE Bit */
mbed_official 133:d4dda5c437f0 1828 TIMx->CCER |= (uint32_t)(ChannelNState << Channel);
mbed_official 133:d4dda5c437f0 1829 }
mbed_official 133:d4dda5c437f0 1830
mbed_official 133:d4dda5c437f0 1831 /**
mbed_official 133:d4dda5c437f0 1832 * @}
mbed_official 133:d4dda5c437f0 1833 */
mbed_official 133:d4dda5c437f0 1834
mbed_official 133:d4dda5c437f0 1835 #endif /* HAL_TIM_MODULE_ENABLED */
mbed_official 133:d4dda5c437f0 1836 /**
mbed_official 133:d4dda5c437f0 1837 * @}
mbed_official 133:d4dda5c437f0 1838 */
mbed_official 133:d4dda5c437f0 1839
mbed_official 133:d4dda5c437f0 1840 /**
mbed_official 133:d4dda5c437f0 1841 * @}
mbed_official 133:d4dda5c437f0 1842 */
mbed_official 133:d4dda5c437f0 1843 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/