/**
******************************************************************************
* @file stm32f4xx_tim.c
* @author MCD Application Team
* @version V1.4.0
* @date 04-August-2014
* @brief This file provides firmware functions to manage the following
* functionalities of the TIM peripheral:
* + TimeBase management
* + Output Compare management
* + Input Capture management
* + Advanced-control timers (TIM1 and TIM8) specific features
* + Interrupts, DMA and flags management
* + Clocks management
* + Synchronization management
* + Specific interface management
* + Specific remapping management
*
@verbatim
===============================================================================
##### How to use this driver #####
===============================================================================
[..]
This driver provides functions to configure and program the TIM
of all STM32F4xx devices.
These functions are split in 9 groups:
(#) TIM TimeBase management: this group includes all needed functions
to configure the TM Timebase unit:
(++) Set/Get Prescaler
(++) Set/Get Autoreload
(++) Counter modes configuration
(++) Set Clock division
(++) Select the One Pulse mode
(++) Update Request Configuration
(++) Update Disable Configuration
(++) Auto-Preload Configuration
(++) Enable/Disable the counter
(#) TIM Output Compare management: this group includes all needed
functions to configure the Capture/Compare unit used in Output
compare mode:
(++) Configure each channel, independently, in Output Compare mode
(++) Select the output compare modes
(++) Select the Polarities of each channel
(++) Set/Get the Capture/Compare register values
(++) Select the Output Compare Fast mode
(++) Select the Output Compare Forced mode
(++) Output Compare-Preload Configuration
(++) Clear Output Compare Reference
(++) Select the OCREF Clear signal
(++) Enable/Disable the Capture/Compare Channels
(#) TIM Input Capture management: this group includes all needed
functions to configure the Capture/Compare unit used in
Input Capture mode:
(++) Configure each channel in input capture mode
(++) Configure Channel1/2 in PWM Input mode
(++) Set the Input Capture Prescaler
(++) Get the Capture/Compare values
(#) Advanced-control timers (TIM1 and TIM8) specific features
(++) Configures the Break input, dead time, Lock level, the OSSI,
the OSSR State and the AOE(automatic output enable)
(++) Enable/Disable the TIM peripheral Main Outputs
(++) Select the Commutation event
(++) Set/Reset the Capture Compare Preload Control bit
(#) TIM interrupts, DMA and flags management
(++) Enable/Disable interrupt sources
(++) Get flags status
(++) Clear flags/ Pending bits
(++) Enable/Disable DMA requests
(++) Configure DMA burst mode
(++) Select CaptureCompare DMA request
(#) TIM clocks management: this group includes all needed functions
to configure the clock controller unit:
(++) Select internal/External clock
(++) Select the external clock mode: ETR(Mode1/Mode2), TIx or ITRx
(#) TIM synchronization management: this group includes all needed
functions to configure the Synchronization unit:
(++) Select Input Trigger
(++) Select Output Trigger
(++) Select Master Slave Mode
(++) ETR Configuration when used as external trigger
(#) TIM specific interface management, this group includes all
needed functions to use the specific TIM interface:
(++) Encoder Interface Configuration
(++) Select Hall Sensor
(#) TIM specific remapping management includes the Remapping
configuration of specific timers
@endverbatim
******************************************************************************
* @attention
*
* <h2><center>© COPYRIGHT 2014 STMicroelectronics</center></h2>
*
* Licensed under MCD-ST Liberty SW License Agreement V2, (the "License");
* You may not use this file except in compliance with the License.
* You may obtain a copy of the License at:
*
* http://www.st.com/software_license_agreement_liberty_v2
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
******************************************************************************
*/
/* Includes ------------------------------------------------------------------*/
#include "stm32f4xx_tim.h"
#include "stm32f4xx_rcc.h"
/** @addtogroup STM32F4xx_StdPeriph_Driver
* @{
*/
/** @defgroup TIM
* @brief TIM driver modules
* @{
*/
/* Private typedef -----------------------------------------------------------*/
/* Private define ------------------------------------------------------------*/
/* ---------------------- TIM registers bit mask ------------------------ */
#define SMCR_ETR_MASK ((uint16_t)0x00FF)
#define CCMR_OFFSET ((uint16_t)0x0018)
#define CCER_CCE_SET ((uint16_t)0x0001)
#define CCER_CCNE_SET ((uint16_t)0x0004)
#define CCMR_OC13M_MASK ((uint16_t)0xFF8F)
#define CCMR_OC24M_MASK ((uint16_t)0x8FFF)
/* Private macro -------------------------------------------------------------*/
/* Private variables ---------------------------------------------------------*/
/* Private function prototypes -----------------------------------------------*/
static void TI1_Config(TIM_TypeDef* TIMx, uint16_t TIM_ICPolarity, uint16_t TIM_ICSelection,
uint16_t TIM_ICFilter);
static void TI2_Config(TIM_TypeDef* TIMx, uint16_t TIM_ICPolarity, uint16_t TIM_ICSelection,
uint16_t TIM_ICFilter);
static void TI3_Config(TIM_TypeDef* TIMx, uint16_t TIM_ICPolarity, uint16_t TIM_ICSelection,
uint16_t TIM_ICFilter);
static void TI4_Config(TIM_TypeDef* TIMx, uint16_t TIM_ICPolarity, uint16_t TIM_ICSelection,
uint16_t TIM_ICFilter);
/* Private functions ---------------------------------------------------------*/
/** @defgroup TIM_Private_Functions
* @{
*/
/** @defgroup TIM_Group1 TimeBase management functions
* @brief TimeBase management functions
*
@verbatim
===============================================================================
##### TimeBase management functions #####
===============================================================================
##### TIM Driver: how to use it in Timing(Time base) Mode #####
===============================================================================
[..]
To use the Timer in Timing(Time base) mode, the following steps are mandatory:
(#) Enable TIM clock using RCC_APBxPeriphClockCmd(RCC_APBxPeriph_TIMx, ENABLE) function
(#) Fill the TIM_TimeBaseInitStruct with the desired parameters.
(#) Call TIM_TimeBaseInit(TIMx, &TIM_TimeBaseInitStruct) to configure the Time Base unit
with the corresponding configuration
(#) Enable the NVIC if you ne
没有合适的资源?快使用搜索试试~ 我知道了~
基于STM32-F407ZG的工程+源代码+文档说明01-LED-寄存器01-LED-库函数01-LED-位操作02-蜂鸣器03
共2000个文件
h:425个
c:424个
o:337个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
0 下载量 58 浏览量
2023-12-02
20:30:48
上传
评论
收藏 81.07MB ZIP 举报
温馨提示
01_LED_寄存器01_LED_库函数01_LED_位操作02_蜂鸣器03_按键输入04_串口05_外部中断实验06_独立看门狗 ## 项目备注 1、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请放心下载使用! 2、本项目适合计算机相关专业(如计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载学习,也适合小白学习进阶,当然也可作为毕设项目、课程设计、作业、项目初期立项演示等。 3、如果基础还行,也可在此代码基础上进行修改,以实现其他功能,也可用于毕设、课设、作业等。 下载后请首先打开README.md文件(如有),仅供学习参考, 切勿用于商业用途。
资源推荐
资源详情
资源评论
收起资源包目录
基于STM32-F407ZG的工程+源代码+文档说明01-LED-寄存器01-LED-库函数01-LED-位操作02-蜂鸣器03 (2000个子文件)
Template.axf 562KB
Template.axf 556KB
KEY.axf 523KB
KEY.axf 324KB
Template.axf 306KB
KEY.axf 295KB
Template.axf 284KB
Template.axf 282KB
Template.axf 281KB
Template.axf 267KB
keilkilll.bat 372B
keilkilll.bat 372B
keilkilll.bat 372B
stm32f4xx_tim.c 119KB
stm32f4xx_tim.c 119KB
stm32f4xx_tim.c 119KB
stm32f4xx_tim.c 119KB
stm32f4xx_tim.c 119KB
stm32f4xx_tim.c 119KB
stm32f4xx_tim.c 119KB
stm32f4xx_tim.c 119KB
stm32f4xx_tim.c 119KB
stm32f10x_tim.c 104KB
stm32f4xx_rtc.c 98KB
stm32f4xx_rtc.c 98KB
stm32f4xx_rtc.c 98KB
stm32f4xx_rtc.c 98KB
stm32f4xx_rtc.c 98KB
stm32f4xx_rtc.c 98KB
stm32f4xx_rtc.c 98KB
stm32f4xx_rtc.c 98KB
stm32f4xx_rtc.c 98KB
stm32f4xx_rcc.c 94KB
stm32f4xx_rcc.c 94KB
stm32f4xx_rcc.c 94KB
stm32f4xx_rcc.c 94KB
stm32f4xx_rcc.c 94KB
stm32f4xx_rcc.c 94KB
stm32f4xx_rcc.c 94KB
stm32f4xx_rcc.c 94KB
stm32f4xx_rcc.c 94KB
stm32f4xx_adc.c 66KB
stm32f4xx_adc.c 66KB
stm32f4xx_adc.c 66KB
stm32f4xx_adc.c 66KB
stm32f4xx_adc.c 66KB
stm32f4xx_adc.c 66KB
stm32f4xx_adc.c 66KB
stm32f4xx_adc.c 66KB
stm32f4xx_adc.c 66KB
stm32f4xx_flash.c 60KB
stm32f4xx_flash.c 60KB
stm32f4xx_flash.c 60KB
stm32f4xx_flash.c 60KB
stm32f4xx_flash.c 60KB
stm32f4xx_flash.c 60KB
stm32f4xx_flash.c 60KB
stm32f4xx_flash.c 60KB
stm32f4xx_flash.c 60KB
stm32f10x_flash.c 59KB
stm32f4xx_can.c 57KB
stm32f4xx_can.c 57KB
stm32f4xx_can.c 57KB
stm32f4xx_can.c 57KB
stm32f4xx_can.c 57KB
stm32f4xx_can.c 57KB
stm32f4xx_can.c 57KB
stm32f4xx_can.c 57KB
stm32f4xx_can.c 57KB
stm32f4xx_usart.c 55KB
stm32f4xx_usart.c 55KB
stm32f4xx_usart.c 55KB
stm32f4xx_usart.c 55KB
stm32f4xx_usart.c 55KB
stm32f4xx_usart.c 55KB
stm32f4xx_usart.c 55KB
stm32f4xx_usart.c 55KB
stm32f4xx_usart.c 55KB
stm32f4xx_cryp_aes.c 55KB
stm32f4xx_cryp_aes.c 55KB
stm32f4xx_cryp_aes.c 55KB
stm32f4xx_cryp_aes.c 55KB
stm32f4xx_cryp_aes.c 55KB
stm32f4xx_cryp_aes.c 55KB
stm32f4xx_cryp_aes.c 55KB
stm32f4xx_cryp_aes.c 55KB
stm32f4xx_cryp_aes.c 55KB
stm32f4xx_fmc.c 54KB
stm32f4xx_fmc.c 54KB
stm32f4xx_fmc.c 54KB
stm32f4xx_fmc.c 54KB
stm32f4xx_fmc.c 54KB
stm32f4xx_fmc.c 54KB
stm32f4xx_fmc.c 54KB
stm32f4xx_fmc.c 54KB
stm32f4xx_fmc.c 54KB
stm32f4xx_i2c.c 52KB
stm32f4xx_i2c.c 52KB
stm32f4xx_i2c.c 52KB
stm32f4xx_i2c.c 52KB
共 2000 条
- 1
- 2
- 3
- 4
- 5
- 6
- 20
资源评论
奋斗奋斗再奋斗的ajie
- 粉丝: 1199
- 资源: 2908
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功