/**
******************************************************************************
* @file stm32f1xx_hal_tim.c
* @author MCD Application Team
* @brief TIM HAL module driver.
* This file provides firmware functions to manage the following
* functionalities of the Timer (TIM) peripheral:
* + TIM Time Base Initialization
* + TIM Time Base Start
* + TIM Time Base Start Interruption
* + TIM Time Base Start DMA
* + TIM Output Compare/PWM Initialization
* + TIM Output Compare/PWM Channel Configuration
* + TIM Output Compare/PWM Start
* + TIM Output Compare/PWM Start Interruption
* + TIM Output Compare/PWM Start DMA
* + TIM Input Capture Initialization
* + TIM Input Capture Channel Configuration
* + TIM Input Capture Start
* + TIM Input Capture Start Interruption
* + TIM Input Capture Start DMA
* + TIM One Pulse Initialization
* + TIM One Pulse Channel Configuration
* + TIM One Pulse Start
* + TIM Encoder Interface Initialization
* + TIM Encoder Interface Start
* + TIM Encoder Interface Start Interruption
* + TIM Encoder Interface Start DMA
* + Commutation Event configuration with Interruption and DMA
* + TIM OCRef clear configuration
* + TIM External Clock configuration
@verbatim
==============================================================================
##### TIMER Generic features #####
==============================================================================
[..] The Timer features include:
(#) 16-bit up, down, up/down auto-reload counter.
(#) 16-bit programmable prescaler allowing dividing (also on the fly) the
counter clock frequency either by any factor between 1 and 65536.
(#) Up to 4 independent channels 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.
(#) Supports incremental encoder for positioning purposes
##### How to use this driver #####
==============================================================================
[..]
(#) Initialize the TIM low level resources by implementing the following functions
depending on the selected feature:
(++) Time Base : HAL_TIM_Base_MspInit()
(++) Input Capture : HAL_TIM_IC_MspInit()
(++) Output Compare : HAL_TIM_OC_MspInit()
(++) PWM generation : HAL_TIM_PWM_MspInit()
(++) One-pulse mode output : HAL_TIM_OnePulse_MspInit()
(++) Encoder mode output : HAL_TIM_Encoder_MspInit()
(#) Initialize the TIM low level resources :
(##) Enable the TIM interface clock using __HAL_RCC_TIMx_CLK_ENABLE();
(##) TIM pins configuration
(+++) Enable the clock for the TIM GPIOs using the following function:
__HAL_RCC_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_TIM_Base_Init: to use the Timer to generate a simple time base
(++) HAL_TIM_OC_Init and HAL_TIM_OC_ConfigChannel: to use the Timer to generate an
Output Compare signal.
(++) HAL_TIM_PWM_Init and HAL_TIM_PWM_ConfigChannel: to use the Timer to generate a
PWM signal.
(++) HAL_TIM_IC_Init and HAL_TIM_IC_ConfigChannel: to use the Timer to measure an
external signal.
(++) HAL_TIM_OnePulse_Init and HAL_TIM_OnePulse_ConfigChannel: to use the Timer
in One Pulse Mode.
(++) HAL_TIM_Encoder_Init: to use the Timer Encoder Interface.
(#) Activate the TIM peripheral using one of the start functions depending from the feature used:
(++) Time Base : HAL_TIM_Base_Start(), HAL_TIM_Base_Start_DMA(), HAL_TIM_Base_Start_IT()
(++) Input Capture : HAL_TIM_IC_Start(), HAL_TIM_IC_Start_DMA(), HAL_TIM_IC_Start_IT()
(++) Output Compare : HAL_TIM_OC_Start(), HAL_TIM_OC_Start_DMA(), HAL_TIM_OC_Start_IT()
(++) PWM generation : HAL_TIM_PWM_Start(), HAL_TIM_PWM_Start_DMA(), HAL_TIM_PWM_Start_IT()
(++) One-pulse mode output : HAL_TIM_OnePulse_Start(), HAL_TIM_OnePulse_Start_IT()
(++) Encoder mode output : HAL_TIM_Encoder_Start(), HAL_TIM_Encoder_Start_DMA(), HAL_TIM_Encoder_Start_IT().
(#) The DMA Burst is managed with the two following functions:
HAL_TIM_DMABurst_WriteStart()
HAL_TIM_DMABurst_ReadStart()
*** Callback registration ***
=============================================
[..]
The compilation define USE_HAL_TIM_REGISTER_CALLBACKS when set to 1
allows the user to configure dynamically the driver callbacks.
[..]
Use Function @ref HAL_TIM_RegisterCallback() to register a callback.
@ref HAL_TIM_RegisterCallback() takes as parameters the HAL peripheral handle,
the Callback ID and a pointer to the user callback function.
[..]
Use function @ref HAL_TIM_UnRegisterCallback() to reset a callback to the default
weak function.
@ref HAL_TIM_UnRegisterCallback takes as parameters the HAL peripheral handle,
and the Callback ID.
[..]
These functions allow to register/unregister following callbacks:
(+) Base_MspInitCallback : TIM Base Msp Init Callback.
(+) Base_MspDeInitCallback : TIM Base Msp DeInit Callback.
(+) IC_MspInitCallback : TIM IC Msp Init Callback.
(+) IC_MspDeInitCallback : TIM IC Msp DeInit Callback.
(+) OC_MspInitCallback : TIM OC Msp Init Callback.
(+) OC_MspDeInitCallback : TIM OC Msp DeInit Callback.
(+) PWM_MspInitCallback : TIM PWM Msp Init Callback.
(+) PWM_MspDeInitCallback : TIM PWM Msp DeInit Callback.
(+) OnePulse_MspInitCallback : TIM One Pulse Msp Init Callback.
(+) OnePulse_MspDeInitCallback : TIM One Pulse Msp DeInit Callback.
(+) Encoder_MspInitCallback : TIM Encoder Msp Init Callback.
(+) Encoder_MspDeInitCallback : TIM Encoder Msp DeInit Callback.
(+) HallSensor_MspInitCallback : TIM Hall Sensor Msp Init Callback.
(+) HallSensor_MspDeInitCallback : TIM Hall Sensor Msp DeInit Callback.
(+) PeriodElapsedCallback : TIM Period Elapsed Callback.
(+) PeriodElapsedHalfCpltCallback : TIM Period Elapsed half complete Callback.
(+) TriggerCallback : TIM Trigger Callback.
(+) TriggerHalfCpltCallback : TIM Trigger half complete Callback.
(+) IC_CaptureCallback : TIM Input Capture Callback.
(+) IC_CaptureHalfCpltCallback : TIM Input Capture half complete Callback.
(+) OC_DelayElapsedCallback : TIM Output Compare Delay Elapsed Callback.
(+) PWM_PulseFinishedCallback : TIM PWM Pulse Finished Callback.
(+) PWM_PulseFinishedHalfCpltCallback : TIM PWM Pulse Finished half complete Callback.
(+) ErrorCallback : TIM Error Callback.
(+) CommutationCallback : TIM Commutation Callback.
(+) CommutationHalfCpltCallback : TIM Commutation half complete Callback.
(+) Bre
没有合适的资源?快使用搜索试试~ 我知道了~
基于stm32f103zet6单片机工程全部资料+详细文档+源码.zip
共95个文件
h:44个
su:19个
c:19个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
0 下载量 17 浏览量
2024-12-21
12:13:16
上传
评论
收藏 567KB ZIP 举报
温馨提示
【资源说明】 基于stm32f103zet6单片机工程全部资料+详细文档+源码.zip 【备注】 1、该项目是个人高分项目源码,已获导师指导认可通过,答辩评审分达到95分 2、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请放心下载使用! 3、本项目适合计算机相关专业(人工智能、通信工程、自动化、电子信息、物联网等)的在校学生、老师或者企业员工下载使用,也可作为毕业设计、课程设计、作业、项目初期立项演示等,当然也适合小白学习进阶。 4、如果基础还行,可以在此代码基础上进行修改,以实现其他功能,也可直接用于毕设、课设、作业等。 欢迎下载,沟通交流,互相学习,共同进步!
资源推荐
资源详情
资源评论
收起资源包目录
基于stm32f103zet6单片机工程全部资料+详细文档+源码.zip (95个子文件)
CSDN
软件
STM32F103ZEPro-master
STM32F103ZET6
STM32F103ZET6.ioc 4KB
Drivers
CMSIS
Include
core_armv8mbl.h 94KB
core_cm1.h 41KB
core_cm0plus.h 48KB
cmsis_armcc.h 27KB
core_cm0.h 40KB
cmsis_version.h 2KB
mpu_armv8.h 10KB
core_cm4.h 119KB
core_sc300.h 106KB
cmsis_iccarm.h 27KB
core_cm3.h 107KB
core_armv8mml.h 162KB
mpu_armv7.h 11KB
cmsis_gcc.h 59KB
core_cm23.h 100KB
core_cm7.h 142KB
core_sc000.h 45KB
core_cm33.h 169KB
tz_context.h 3KB
cmsis_compiler.h 9KB
cmsis_armclang.h 53KB
Device
ST
STM32F1xx
Include
stm32f103xe.h 940KB
stm32f1xx.h 7KB
system_stm32f1xx.h 2KB
STM32F1xx_HAL_Driver
Src
stm32f1xx_hal_exti.c 15KB
stm32f1xx_hal_flash_ex.c 35KB
stm32f1xx_hal_dma.c 27KB
stm32f1xx_hal_pwr.c 20KB
stm32f1xx_hal_tim_ex.c 62KB
stm32f1xx_hal_rcc.c 48KB
stm32f1xx_hal_tim.c 207KB
stm32f1xx_hal_gpio.c 20KB
stm32f1xx_hal_rcc_ex.c 29KB
stm32f1xx_hal_cortex.c 18KB
stm32f1xx_hal_gpio_ex.c 4KB
stm32f1xx_hal.c 20KB
stm32f1xx_hal_flash.c 29KB
Inc
stm32f1xx_hal_flash.h 9KB
stm32f1xx_hal_gpio_ex.h 35KB
stm32f1xx_hal_pwr.h 11KB
stm32f1xx_hal_gpio.h 11KB
stm32f1xx_hal_def.h 7KB
stm32f1xx_hal_tim.h 111KB
Legacy
stm32_hal_legacy.h 196KB
stm32f1xx_hal_rcc_ex.h 97KB
stm32f1xx_hal_flash_ex.h 35KB
stm32f1xx_hal_dma_ex.h 12KB
stm32f1xx_hal_rcc.h 65KB
stm32f1xx_hal.h 11KB
stm32f1xx_hal_dma.h 17KB
stm32f1xx_hal_cortex.h 17KB
stm32f1xx_hal_tim_ex.h 9KB
stm32f1xx_hal_exti.h 12KB
.cproject 41KB
.settings
language.settings.xml 2KB
com.atollic.truestudio.debug.hardware_device.prefs 209B
org.eclipse.cdt.managedbuilder.core.prefs 1KB
STM32F103ZET6.elf.launch 7KB
Src
system_stm32f1xx.c 14KB
syscalls.c 4KB
stm32f1xx_hal_msp.c 2KB
stm32f1xx_it.c 5KB
gpio.c 3KB
main.c 5KB
STM32F103ZE_FLASH.ld 4KB
.mxproject 6KB
Inc
gpio.h 1KB
main.h 2KB
stm32f1xx_hal_conf.h 15KB
stm32f1xx_it.h 2KB
.project 2KB
startup
startup_stm32f103xe.s 12KB
Debug
Drivers
STM32F1xx_HAL_Driver
Src
stm32f1xx_hal_tim_ex.su 0B
stm32f1xx_hal_gpio.su 442B
stm32f1xx_hal_flash_ex.su 568B
stm32f1xx_hal_pwr.su 1KB
stm32f1xx_hal.su 1KB
stm32f1xx_hal_cortex.su 918B
stm32f1xx_hal_gpio_ex.su 194B
stm32f1xx_hal_tim.su 0B
stm32f1xx_hal_rcc_ex.su 200B
stm32f1xx_hal_flash.su 777B
stm32f1xx_hal_rcc.su 795B
stm32f1xx_hal_exti.su 531B
stm32f1xx_hal_dma.su 654B
STM32F103ZET6.hex 9KB
STM32F103ZET6.map 64KB
Src
stm32f1xx_hal_msp.su 46B
stm32f1xx_it.su 411B
syscalls.su 641B
main.su 104B
system_stm32f1xx.su 101B
gpio.su 35B
STM32F103ZET6.list 79KB
共 95 条
- 1
资源评论
Yuki-^_^
- 粉丝: 3101
- 资源: 2837
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 新建 Microsoft Word 文档
- (176102016)MATLAB代码:考虑灵活性供需不确定性的储能参与电网调峰优化配置 关键词:储能优化配置 电网调峰 风电场景生成 灵活性供需不
- SINAMICS S120驱动第三方直线永磁同步电机系列视频-配置和优化.mp4
- (175601006)51单片机交通信号灯系统设计
- Starter SINAMICS S120驱动第三方直线永磁同步电机系列视频-调试演示.mp4
- (174755032)抽烟、烟雾检测voc数据集
- 基于滑膜控制的差动制动防侧翻稳定性控制,上层通过滑膜控制产生期望的横摆力矩,下层根据对应的paper实现对应的制动力矩分配,实现车辆的防侧翻稳定性控制,通过通过carsim和simulink联合仿真
- 伺服系统基于陷波滤波器双惯量伺服系统机械谐振抑制matlab Simulink仿真 1.模型简介 模型为基于陷波滤波器的双惯量伺服系统机械谐振抑制仿真,采用Matlab R2018a Simul
- (175989002)DDR4 JESD79-4C.pdf
- lanchaoHunanHoutaiQiantai
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功