stm32f407用定时器输出一定数目的PWM波

2019-07-20 17:34发布


void LED_INIT(void)
{
        GPIO_InitTypeDef GPIO_InitStrue;
        RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOF,ENABLE);
       
        GPIO_InitStrue.GPIO_Mode=GPIO_Mode_OUT;
        GPIO_InitStrue.GPIO_OType=GPIO_OType_PP;
        GPIO_InitStrue.GPIO_Pin=GPIO_Pin_9 | GPIO_Pin_10;
        GPIO_InitStrue.GPIO_PuPd=GPIO_PuPd_UP;
        GPIO_InitStrue.GPIO_Speed=GPIO_Speed_100MHz;
        GPIO_Init(GPIOF,&GPIO_InitStrue);
       
        GPIO_SetBits(GPIOF,GPIO_Pin_9 | GPIO_Pin_10 );
}






void tim14_init(u16 arr,u16 psc)
{
       
  GPIO_InitTypeDef GPIO_InitStrue;
        TIM_TimeBaseInitTypeDef TIM_TimeBaseInitStruc;
        TIM_OCInitTypeDef  TIM_OCInitStructR;
        NVIC_InitTypeDef  NVIC_InitStrucure;
        RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOF,ENABLE);
        RCC_APB1PeriphClockCmd(RCC_APB1Periph_TIM14,ENABLE);
       
        GPIO_InitStrue.GPIO_Pin=GPIO_Pin_9;
        GPIO_InitStrue.GPIO_Mode=GPIO_Mode_AF;
        GPIO_InitStrue.GPIO_OType=GPIO_OType_PP;
        GPIO_InitStrue.GPIO_PuPd=GPIO_PuPd_UP;
        GPIO_InitStrue.GPIO_Speed=GPIO_Speed_100MHz;
        GPIO_Init(GPIOF,&GPIO_InitStrue);
        GPIO_PinAFConfig(GPIOF,GPIO_PinSource9,GPIO_AF_TIM14);
       
        TIM_TimeBaseInitStruc.TIM_Period=arr;
        TIM_TimeBaseInitStruc.TIM_Prescaler=psc;
        TIM_TimeBaseInitStruc.TIM_ClockDivision=TIM_CKD_DIV1;
        TIM_TimeBaseInitStruc.TIM_CounterMode=TIM_CounterMode_Up;
        TIM_TimeBaseInit(TIM14,&TIM_TimeBaseInitStruc);
        TIM_ITConfig(TIM14,TIM_IT_Update,ENABLE);
       
       
        TIM_OCInitStructR.TIM_OCMode=TIM_OCMode_PWM1;
        TIM_OCInitStructR.TIM_OCPolarity=TIM_OCPolarity_Low;
        TIM_OCInitStructR.TIM_OutputState=TIM_OutputState_Enable;
        TIM_OCInitStructR.TIM_Pulse=300;
        TIM_OC1Init(TIM14,&TIM_OCInitStructR);
        TIM_Cmd(TIM14,ENABLE);
       
        NVIC_InitStrucure.NVIC_IRQChannel=TIM8_TRG_COM_TIM14_IRQn;
        NVIC_InitStrucure.NVIC_IRQChannelCmd=ENABLE;
        NVIC_InitStrucure.NVIC_IRQChannelPreemptionPriority=1;
        NVIC_InitStrucure.NVIC_IRQChannelSubPriority=1;
        NVIC_Init(&NVIC_InitStrucure);//ÖD¶ÏóÅÏ輶ÅäÖÃ
               
       
}

void TIM8_TRG_COM_TIM14_IRQHandler(void)
{   static u16 i=0;
        if(TIM_GetITStatus(TIM14,TIM_IT_Update)==SET) //òç3öÖD¶Ï
        {
                                  i++;
                if(i==9)
{
  LED0=1;
        TIM_Cmd(TIM14,DISABLE);
}
        TIM_ClearITPendingBit(TIM14,TIM_IT_Update);  //Çå3yÖD¶Ï±ê־λ
}

}


int main (void)
{
        delay_init(168);
  NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2);
        LED_INIT();         
        tim14_init(5000-1,8400-1);
}


采用TIM14产生确定个数的PWM波  思路是用笨办法计数器每一次溢出事件发生中断后累计 停止计时器 但是,实现不了,大神帮忙看看哪里存在问题

友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。