您的位置 首页 电路

【STM32 Cotex-M3处理器系列编程】定时器输出PWM波

使用定时器TIM4的3通道CH3输出占空比为25%的PWM波includestm32f10xhintmain(void){SystemInit();配置IO口RCC_APB2PeriphCl

//运用定时器TIM4的3通道CH3输出占空比为25%的PWM波

#include “stm32f10x.h”
int main(void)
{
// SystemInit();
//装备IO口
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB | RCC_APB2Periph_GPIOD | RCC_APB2Periph_GPIOE,ENABLE);//IO口使能设置
GPIO_InitTypeDef GPIO_InitStructure; //界说结构体
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_8; //TIM3的CH3衔接PB8管脚
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;//复用推挽输出
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOB, &GPIO_InitStructure);
//定时器2
RCC_APB1PeriphClockCmd(RCC_APB1Periph_TIM4,ENABLE);//装备时钟
TIM_TimeBaseInitTypeDef TIM_TimeBaseStructure;
TIM_TimeBaseStructure.TIM_Period=10000; //1s
TIM_TimeBaseStructure.TIM_Prescaler=7199; //720分频
TIM_TimeBaseStructure.TIM_ClockDivision=0;
TIM_TimeBaseStructure.TIM_CounterMode=TIM_CounterMode_Up;//向上计数
TIM_TimeBaseInit(TIM4,&TIM_TimeBaseStructure);
TIM_OCInitTypeDef TIM_OCInitStructure;
TIM_OCInitStructure.TIM_OCMode = TIM_OCMode_PWM1;//PWM1形式1
TIM_OCInitStructure.TIM_OutputState = TIM_OutputState_Enable;//比较输出使能
TIM_OCInitStructure.TIM_Pulse = 2500; //设置占空比
TIM_OCInitStructure.TIM_OCPolarity = TIM_OCPolarity_High; //输出比较极性高
TIM_OC3Init(TIM4, & TIM_OCInitStructure); //初始化TIM4的CH3通道
TIM_OC3PreloadConfig(TIM4, TIM_OCPreload_Enable); //使能TIM4在CH3通道CCR3上的预装载寄存器
TIM_ARRPreloadConfig(TIM4, ENABLE);//使能TIM4在CH3通道ARR3上的预装载寄存器
TIM_Cmd(TIM4,ENABLE);//使能定时器4
while(1);
}
//以下是报错函数
#ifdef USE_FULL_ASSERT
void assert_failed(uint8_t* file, uint32_t line)
{
while (1)
{
}
}
#endif

声明:本文内容来自网络转载或用户投稿,文章版权归原作者和原出处所有。文中观点,不代表本站立场。若有侵权请联系本站删除(kf@86ic.com)https://www.86ic.net/fangan/dianlu/257087.html

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部