123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360 |
- /**
- ******************************************************************************
- * @file stm32f7xx_hal_tim_ex.h
- * @author MCD Application Team
- * @brief Header file of TIM HAL Extended module.
- ******************************************************************************
- * @attention
- *
- * Copyright (c) 2017 STMicroelectronics.
- * All rights reserved.
- *
- * This software is licensed under terms that can be found in the LICENSE file
- * in the root directory of this software component.
- * If no LICENSE file comes with this software, it is provided AS-IS.
- *
- ******************************************************************************
- */
- /* Define to prevent recursive inclusion -------------------------------------*/
- #ifndef STM32F7xx_HAL_TIM_EX_H
- #define STM32F7xx_HAL_TIM_EX_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- /* Includes ------------------------------------------------------------------*/
- #include "stm32f7xx_hal_def.h"
- /** @addtogroup STM32F7xx_HAL_Driver
- * @{
- */
- /** @addtogroup TIMEx
- * @{
- */
- /* Exported types ------------------------------------------------------------*/
- /** @defgroup TIMEx_Exported_Types TIM Extended Exported Types
- * @{
- */
- /**
- * @brief TIM Hall sensor Configuration Structure definition
- */
- typedef struct
- {
- uint32_t IC1Polarity; /*!< Specifies the active edge of the input signal.
- This parameter can be a value of @ref TIM_Input_Capture_Polarity */
- uint32_t IC1Prescaler; /*!< Specifies the Input Capture Prescaler.
- This parameter can be a value of @ref TIM_Input_Capture_Prescaler */
- uint32_t IC1Filter; /*!< Specifies the input capture filter.
- This parameter can be a number between Min_Data = 0x0 and Max_Data = 0xF */
- uint32_t Commutation_Delay; /*!< Specifies the pulse value to be loaded into the Capture Compare Register.
- This parameter can be a number between Min_Data = 0x0000 and Max_Data = 0xFFFF */
- } TIM_HallSensor_InitTypeDef;
- #if defined(TIM_BREAK_INPUT_SUPPORT)
- /**
- * @brief TIM Break/Break2 input configuration
- */
- typedef struct
- {
- uint32_t Source; /*!< Specifies the source of the timer break input.
- This parameter can be a value of @ref TIMEx_Break_Input_Source */
- uint32_t Enable; /*!< Specifies whether or not the break input source is enabled.
- This parameter can be a value of @ref TIMEx_Break_Input_Source_Enable */
- uint32_t Polarity; /*!< Specifies the break input source polarity.
- This parameter can be a value of @ref TIMEx_Break_Input_Source_Polarity
- Not relevant when analog watchdog output of the DFSDM1 used as break input source */
- } TIMEx_BreakInputConfigTypeDef;
- #endif /* TIM_BREAK_INPUT_SUPPORT */
- /**
- * @}
- */
- /* End of exported types -----------------------------------------------------*/
- /* Exported constants --------------------------------------------------------*/
- /** @defgroup TIMEx_Exported_Constants TIM Extended Exported Constants
- * @{
- */
- /** @defgroup TIMEx_Remap TIM Extended Remapping
- * @{
- */
- #define TIM_TIM2_TIM8_TRGO (0x00000000U)
- #define TIM_TIM2_ETH_PTP (0x00000400U)
- #define TIM_TIM2_USBFS_SOF (0x00000800U)
- #define TIM_TIM2_USBHS_SOF (0x00000C00U)
- #define TIM_TIM5_GPIO (0x00000000U)
- #define TIM_TIM5_LSI (0x00000040U)
- #define TIM_TIM5_LSE (0x00000080U)
- #define TIM_TIM5_RTC (0x000000C0U)
- #define TIM_TIM11_GPIO (0x00000000U)
- #define TIM_TIM11_SPDIFRX (0x00000001U)
- #define TIM_TIM11_HSE (0x00000002U)
- #define TIM_TIM11_MCO1 (0x00000003U)
- /**
- * @}
- */
- #if defined(TIM_BREAK_INPUT_SUPPORT)
- /** @defgroup TIMEx_Break_Input TIM Extended Break input
- * @{
- */
- #define TIM_BREAKINPUT_BRK 0x00000001U /*!< Timer break input */
- #define TIM_BREAKINPUT_BRK2 0x00000002U /*!< Timer break2 input */
- /**
- * @}
- */
- /** @defgroup TIMEx_Break_Input_Source TIM Extended Break input source
- * @{
- */
- #define TIM_BREAKINPUTSOURCE_BKIN (0x00000001U) /* !< An external source (GPIO) is connected to the BKIN pin */
- #define TIM_BREAKINPUTSOURCE_DFSDM1 (0x00000008U) /* !< The analog watchdog output of the DFSDM1 peripheral is connected to the break input */
- /**
- * @}
- */
- /** @defgroup TIMEx_Break_Input_Source_Enable TIM Extended Break input source enabling
- * @{
- */
- #define TIM_BREAKINPUTSOURCE_DISABLE 0x00000000U /*!< Break input source is disabled */
- #define TIM_BREAKINPUTSOURCE_ENABLE 0x00000001U /*!< Break input source is enabled */
- /**
- * @}
- */
- /** @defgroup TIMEx_Break_Input_Source_Polarity TIM Extended Break input polarity
- * @{
- */
- #define TIM_BREAKINPUTSOURCE_POLARITY_LOW 0x00000001U /*!< Break input source is active low */
- #define TIM_BREAKINPUTSOURCE_POLARITY_HIGH 0x00000000U /*!< Break input source is active_high */
- /**
- * @}
- */
- #endif /* TIM_BREAK_INPUT_SUPPORT */
- /**
- * @}
- */
- /* End of exported constants -------------------------------------------------*/
- /* Exported macro ------------------------------------------------------------*/
- /** @defgroup TIMEx_Exported_Macros TIM Extended Exported Macros
- * @{
- */
- /**
- * @}
- */
- /* End of exported macro -----------------------------------------------------*/
- /* Private macro -------------------------------------------------------------*/
- /** @defgroup TIMEx_Private_Macros TIM Extended Private Macros
- * @{
- */
- #define IS_TIM_REMAP(__TIM_REMAP__) (((__TIM_REMAP__) == TIM_TIM2_TIM8_TRGO)||\
- ((__TIM_REMAP__) == TIM_TIM2_ETH_PTP) ||\
- ((__TIM_REMAP__) == TIM_TIM2_USBFS_SOF)||\
- ((__TIM_REMAP__) == TIM_TIM2_USBHS_SOF)||\
- ((__TIM_REMAP__) == TIM_TIM5_GPIO) ||\
- ((__TIM_REMAP__) == TIM_TIM5_LSI) ||\
- ((__TIM_REMAP__) == TIM_TIM5_LSE) ||\
- ((__TIM_REMAP__) == TIM_TIM5_RTC) ||\
- ((__TIM_REMAP__) == TIM_TIM11_GPIO) ||\
- ((__TIM_REMAP__) == TIM_TIM11_SPDIFRX) ||\
- ((__TIM_REMAP__) == TIM_TIM11_HSE) ||\
- ((__TIM_REMAP__) == TIM_TIM11_MCO1))
- #if defined(TIM_BREAK_INPUT_SUPPORT)
- #define IS_TIM_BREAKINPUT(__BREAKINPUT__) (((__BREAKINPUT__) == TIM_BREAKINPUT_BRK) || \
- ((__BREAKINPUT__) == TIM_BREAKINPUT_BRK2))
- #define IS_TIM_BREAKINPUTSOURCE(__SOURCE__) (((__SOURCE__) == TIM_BREAKINPUTSOURCE_BKIN) || \
- ((__SOURCE__) == TIM_BREAKINPUTSOURCE_DFSDM))
- #define IS_TIM_BREAKINPUTSOURCE_STATE(__STATE__) (((__STATE__) == TIM_BREAKINPUTSOURCE_DISABLE) || \
- ((__STATE__) == TIM_BREAKINPUTSOURCE_ENABLE))
- #define IS_TIM_BREAKINPUTSOURCE_POLARITY(__POLARITY__) (((__POLARITY__) == TIM_BREAKINPUTSOURCE_POLARITY_LOW) || \
- ((__POLARITY__) == TIM_BREAKINPUTSOURCE_POLARITY_HIGH))
- #endif /* TIM_BREAK_INPUT_SUPPORT */
- /**
- * @}
- */
- /* End of private macro ------------------------------------------------------*/
- /* Exported functions --------------------------------------------------------*/
- /** @addtogroup TIMEx_Exported_Functions TIM Extended Exported Functions
- * @{
- */
- /** @addtogroup TIMEx_Exported_Functions_Group1 Extended Timer Hall Sensor functions
- * @brief Timer Hall Sensor functions
- * @{
- */
- /* Timer Hall Sensor functions **********************************************/
- HAL_StatusTypeDef HAL_TIMEx_HallSensor_Init(TIM_HandleTypeDef *htim, const TIM_HallSensor_InitTypeDef *sConfig);
- HAL_StatusTypeDef HAL_TIMEx_HallSensor_DeInit(TIM_HandleTypeDef *htim);
- void HAL_TIMEx_HallSensor_MspInit(TIM_HandleTypeDef *htim);
- void HAL_TIMEx_HallSensor_MspDeInit(TIM_HandleTypeDef *htim);
- /* Blocking mode: Polling */
- HAL_StatusTypeDef HAL_TIMEx_HallSensor_Start(TIM_HandleTypeDef *htim);
- HAL_StatusTypeDef HAL_TIMEx_HallSensor_Stop(TIM_HandleTypeDef *htim);
- /* Non-Blocking mode: Interrupt */
- HAL_StatusTypeDef HAL_TIMEx_HallSensor_Start_IT(TIM_HandleTypeDef *htim);
- HAL_StatusTypeDef HAL_TIMEx_HallSensor_Stop_IT(TIM_HandleTypeDef *htim);
- /* Non-Blocking mode: DMA */
- HAL_StatusTypeDef HAL_TIMEx_HallSensor_Start_DMA(TIM_HandleTypeDef *htim, uint32_t *pData, uint16_t Length);
- HAL_StatusTypeDef HAL_TIMEx_HallSensor_Stop_DMA(TIM_HandleTypeDef *htim);
- /**
- * @}
- */
- /** @addtogroup TIMEx_Exported_Functions_Group2 Extended Timer Complementary Output Compare functions
- * @brief Timer Complementary Output Compare functions
- * @{
- */
- /* Timer Complementary Output Compare functions *****************************/
- /* Blocking mode: Polling */
- HAL_StatusTypeDef HAL_TIMEx_OCN_Start(TIM_HandleTypeDef *htim, uint32_t Channel);
- HAL_StatusTypeDef HAL_TIMEx_OCN_Stop(TIM_HandleTypeDef *htim, uint32_t Channel);
- /* Non-Blocking mode: Interrupt */
- HAL_StatusTypeDef HAL_TIMEx_OCN_Start_IT(TIM_HandleTypeDef *htim, uint32_t Channel);
- HAL_StatusTypeDef HAL_TIMEx_OCN_Stop_IT(TIM_HandleTypeDef *htim, uint32_t Channel);
- /* Non-Blocking mode: DMA */
- HAL_StatusTypeDef HAL_TIMEx_OCN_Start_DMA(TIM_HandleTypeDef *htim, uint32_t Channel, const uint32_t *pData,
- uint16_t Length);
- HAL_StatusTypeDef HAL_TIMEx_OCN_Stop_DMA(TIM_HandleTypeDef *htim, uint32_t Channel);
- /**
- * @}
- */
- /** @addtogroup TIMEx_Exported_Functions_Group3 Extended Timer Complementary PWM functions
- * @brief Timer Complementary PWM functions
- * @{
- */
- /* Timer Complementary PWM functions ****************************************/
- /* Blocking mode: Polling */
- HAL_StatusTypeDef HAL_TIMEx_PWMN_Start(TIM_HandleTypeDef *htim, uint32_t Channel);
- HAL_StatusTypeDef HAL_TIMEx_PWMN_Stop(TIM_HandleTypeDef *htim, uint32_t Channel);
- /* Non-Blocking mode: Interrupt */
- HAL_StatusTypeDef HAL_TIMEx_PWMN_Start_IT(TIM_HandleTypeDef *htim, uint32_t Channel);
- HAL_StatusTypeDef HAL_TIMEx_PWMN_Stop_IT(TIM_HandleTypeDef *htim, uint32_t Channel);
- /* Non-Blocking mode: DMA */
- HAL_StatusTypeDef HAL_TIMEx_PWMN_Start_DMA(TIM_HandleTypeDef *htim, uint32_t Channel, const uint32_t *pData,
- uint16_t Length);
- HAL_StatusTypeDef HAL_TIMEx_PWMN_Stop_DMA(TIM_HandleTypeDef *htim, uint32_t Channel);
- /**
- * @}
- */
- /** @addtogroup TIMEx_Exported_Functions_Group4 Extended Timer Complementary One Pulse functions
- * @brief Timer Complementary One Pulse functions
- * @{
- */
- /* Timer Complementary One Pulse functions **********************************/
- /* Blocking mode: Polling */
- HAL_StatusTypeDef HAL_TIMEx_OnePulseN_Start(TIM_HandleTypeDef *htim, uint32_t OutputChannel);
- HAL_StatusTypeDef HAL_TIMEx_OnePulseN_Stop(TIM_HandleTypeDef *htim, uint32_t OutputChannel);
- /* Non-Blocking mode: Interrupt */
- HAL_StatusTypeDef HAL_TIMEx_OnePulseN_Start_IT(TIM_HandleTypeDef *htim, uint32_t OutputChannel);
- HAL_StatusTypeDef HAL_TIMEx_OnePulseN_Stop_IT(TIM_HandleTypeDef *htim, uint32_t OutputChannel);
- /**
- * @}
- */
- /** @addtogroup TIMEx_Exported_Functions_Group5 Extended Peripheral Control functions
- * @brief Peripheral Control functions
- * @{
- */
- /* Extended Control functions ************************************************/
- HAL_StatusTypeDef HAL_TIMEx_ConfigCommutEvent(TIM_HandleTypeDef *htim, uint32_t InputTrigger,
- uint32_t CommutationSource);
- HAL_StatusTypeDef HAL_TIMEx_ConfigCommutEvent_IT(TIM_HandleTypeDef *htim, uint32_t InputTrigger,
- uint32_t CommutationSource);
- HAL_StatusTypeDef HAL_TIMEx_ConfigCommutEvent_DMA(TIM_HandleTypeDef *htim, uint32_t InputTrigger,
- uint32_t CommutationSource);
- HAL_StatusTypeDef HAL_TIMEx_MasterConfigSynchronization(TIM_HandleTypeDef *htim,
- const TIM_MasterConfigTypeDef *sMasterConfig);
- HAL_StatusTypeDef HAL_TIMEx_ConfigBreakDeadTime(TIM_HandleTypeDef *htim,
- const TIM_BreakDeadTimeConfigTypeDef *sBreakDeadTimeConfig);
- #if defined(TIM_BREAK_INPUT_SUPPORT)
- HAL_StatusTypeDef HAL_TIMEx_ConfigBreakInput(TIM_HandleTypeDef *htim, uint32_t BreakInput,
- const TIMEx_BreakInputConfigTypeDef *sBreakInputConfig);
- #endif /* TIM_BREAK_INPUT_SUPPORT */
- HAL_StatusTypeDef HAL_TIMEx_GroupChannel5(TIM_HandleTypeDef *htim, uint32_t Channels);
- HAL_StatusTypeDef HAL_TIMEx_RemapConfig(TIM_HandleTypeDef *htim, uint32_t Remap);
- /**
- * @}
- */
- /** @addtogroup TIMEx_Exported_Functions_Group6 Extended Callbacks functions
- * @brief Extended Callbacks functions
- * @{
- */
- /* Extended Callback **********************************************************/
- void HAL_TIMEx_CommutCallback(TIM_HandleTypeDef *htim);
- void HAL_TIMEx_CommutHalfCpltCallback(TIM_HandleTypeDef *htim);
- void HAL_TIMEx_BreakCallback(TIM_HandleTypeDef *htim);
- void HAL_TIMEx_Break2Callback(TIM_HandleTypeDef *htim);
- /**
- * @}
- */
- /** @addtogroup TIMEx_Exported_Functions_Group7 Extended Peripheral State functions
- * @brief Extended Peripheral State functions
- * @{
- */
- /* Extended Peripheral State functions ***************************************/
- HAL_TIM_StateTypeDef HAL_TIMEx_HallSensor_GetState(const TIM_HandleTypeDef *htim);
- HAL_TIM_ChannelStateTypeDef HAL_TIMEx_GetChannelNState(const TIM_HandleTypeDef *htim, uint32_t ChannelN);
- /**
- * @}
- */
- /**
- * @}
- */
- /* End of exported functions -------------------------------------------------*/
- /* Private functions----------------------------------------------------------*/
- /** @addtogroup TIMEx_Private_Functions TIM Extended Private Functions
- * @{
- */
- void TIMEx_DMACommutationCplt(DMA_HandleTypeDef *hdma);
- void TIMEx_DMACommutationHalfCplt(DMA_HandleTypeDef *hdma);
- /**
- * @}
- */
- /* End of private functions --------------------------------------------------*/
- /**
- * @}
- */
- /**
- * @}
- */
- #ifdef __cplusplus
- }
- #endif
- #endif /* STM32F7xx_HAL_TIM_EX_H */
|