Prusa MINI Firmware overview
stm32f4xx_hal_tim_ex.c File Reference

TIM HAL module driver. This file provides firmware functions to manage the following functionalities of the Timer extension peripheral: More...

#include "stm32f4xx_hal.h"

Detailed Description

TIM HAL module driver. This file provides firmware functions to manage the following functionalities of the Timer extension peripheral:

Author
MCD Application Team
  • Time Hall Sensor Interface Initialization
  • Time Hall Sensor Interface Start
  • Time Complementary signal bread and dead time configuration
  • Time Master and Slave synchronization configuration
    ==============================================================================
                        ##### TIMER Extended features #####
    ==============================================================================
    [..]
      The Timer Extension features include:
      (#) Complementary outputs with programmable dead-time for :
          (++) Input Capture
          (++) Output Compare
          (++) PWM generation (Edge and Center-aligned Mode)
          (++) One-pulse mode output
      (#) Synchronization circuit to control the timer with external signals and to
          interconnect several timers together.
      (#) Break input to put the timer output signals in reset state or in a known state.
      (#) Supports incremental (quadrature) encoder and hall-sensor circuitry for
          positioning purposes
    
                          ##### How to use this driver #####
    ==============================================================================
    [..]
       (#) Initialize the TIM low level resources by implementing the following functions
           depending from feature used :
             (++) Complementary Output Compare : HAL_TIM_OC_MspInit()
             (++) Complementary PWM generation : HAL_TIM_PWM_MspInit()
             (++) Complementary One-pulse mode output : HAL_TIM_OnePulse_MspInit()
             (++) Hall Sensor output : HAL_TIM_HallSensor_MspInit()
    
       (#) Initialize the TIM low level resources :
          (##) Enable the TIM interface clock using __TIMx_CLK_ENABLE();
          (##) TIM pins configuration
              (+++) Enable the clock for the TIM GPIOs using the following function:
                   __GPIOx_CLK_ENABLE();
              (+++) Configure these TIM pins in Alternate function mode using HAL_GPIO_Init();
    
       (#) The external Clock can be configured, if needed (the default clock is the
           internal clock from the APBx), using the following function:
           HAL_TIM_ConfigClockSource, the clock configuration should be done before
           any start function.
    
      (#) Configure the TIM in the desired functioning mode using one of the
          initialization function of this driver:
          (++) HAL_TIMEx_HallSensor_Init and HAL_TIMEx_ConfigCommutationEvent: to use the
               Timer Hall Sensor Interface and the commutation event with the corresponding
               Interrupt and DMA request if needed (Note that One Timer is used to interface
               with the Hall sensor Interface and another Timer should be used to use
               the commutation event).
    
      (#) Activate the TIM peripheral using one of the start functions:
             (++) Complementary Output Compare : HAL_TIMEx_OCN_Start(), HAL_TIMEx_OCN_Start_DMA(), HAL_TIMEx_OC_Start_IT()
             (++) Complementary PWM generation : HAL_TIMEx_PWMN_Start(), HAL_TIMEx_PWMN_Start_DMA(), HAL_TIMEx_PWMN_Start_IT()
             (++) Complementary One-pulse mode output : HAL_TIMEx_OnePulseN_Start(), HAL_TIMEx_OnePulseN_Start_IT()
             (++) Hall Sensor output : HAL_TIMEx_HallSensor_Start(), HAL_TIMEx_HallSensor_Start_DMA(), HAL_TIMEx_HallSensor_Start_IT().
Attention

© COPYRIGHT(c) 2017 STMicroelectronics

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
  3. Neither the name of STMicroelectronics nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.