stm103c8t6 tim1四个通道配置速度不一样(已解决)

本文介绍了一款芯片使用TIM1输出四路PWM信号时遇到的同步问题,即CH2、CH3、CH4在改变占空比时会比CH1有轻微延迟。通过调整寄存器配置解决了这一问题。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

    使用这款芯片利用TIM1输出四路PWM信号,在改变占空比的时候发现CH1速度正常,CH2,CH3,CH4会有少量延时才会生效。

目前没有找到问题所在原因,有大牛知道可以在下面回复下小弟。下面是代码。

void PWM4_Init(u32 arr,u32 psc)
{  
	
			
			
	
         GPIO_InitTypeDef GPIO_InitStructure;
        TIM_TimeBaseInitTypeDef  TIM_TimeBaseStructure;
        TIM_OCInitTypeDef  TIM_OCInitStructure;
       
        RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA|RCC_APB2Periph_TIM1|RCC_APB2Periph_AFIO , ENABLE);  //使能GPIO外设时钟使能
                                                                                     
                                                                             

   //设置该引脚为复用输出功能,输出TIM1 CH1的PWM脉冲波形
			GPIO_InitStructure.GPIO_Pin = GPIO_Pin_8|GPIO_Pin_9|GPIO_Pin_10|GPIO_Pin_11 ; //TIM_CH1
        GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;  //复用推挽输出
        GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
        GPIO_Init(GPIOA, &GPIO_InitStructure);


        TIM_TimeBaseStructure.TIM_Period = arr; //设置在下一个更新事件装入活动的自动重装载寄存器周期的值         80K
        TIM_TimeBaseStructure.TIM_Prescaler =psc; //设置用来作为TIMx时钟频率除数的预分频值  不分频
        TIM_TimeBaseStructure.TIM_ClockDivision =0; //设置时钟分割:TDTS = Tck_tim
        TIM_TimeBaseStructure.TIM_CounterMode = TIM_CounterMode_Up;  //TIM向上计数模式
        TIM_TimeBaseInit(TIM1, &TIM_TimeBaseStructure); //根据TIM_TimeBaseInitStruct中指定的参数初始化TIMx的时间基数单位
//TIM1通道一
        TIM_OCInitStructure.TIM_OCMode = TIM_OCMode_PWM2; //选择定时器模式:TIM脉冲宽度调制模式2
        TIM_OCInitStructure.TIM_OutputState = TIM_OutputState_Enable; //比较输出使能
        TIM_OCInitStructure.TIM_Pulse = 100;  /*占空长度 0 – 周期(max)*/
        TIM_OCInitStructure.TIM_OCPolarity = TIM_OCPolarity_Low; //输出极性:TIM输出比较极性高
        TIM_OC1Init(TIM1, &TIM_OCInitStructure);  //根据TIM_OCInitStruct中指定的参数初始化外设TIMx
//TIM1通道二
  TIM_OCInitStructure.TIM_OutputState =TIM_OutputState_Enable;
  TIM_OCInitStructure.TIM_Pulse = 100;		 /*占空长度 0 – 周期(max)*/
  TIM_OC2Init(TIM1, &TIM_OCInitStructure);
  TIM_OC2PreloadConfig(TIM1, TIM_OCPreload_Enable);
//TIM1通道三
  TIM_OCInitStructure.TIM_OutputState =TIM_OutputState_Enable;
  TIM_OCInitStructure.TIM_Pulse = 100;		 /*占空长度 0 – 周期(max)*/
  TIM_OC3Init(TIM1, &TIM_OCInitStructure);
  TIM_OC3PreloadConfig(TIM1, TIM_OCPreload_Enable);
//TIM1通道四
  TIM_OCInitStructure.TIM_OutputState =TIM_OutputState_Enable;
  TIM_OCInitStructure.TIM_Pulse = 100;	 /*占空长度 0 – 周期(max)*/
  TIM_OC4Init(TIM1, &TIM_OCInitStructure);
  TIM_OC4PreloadConfig(TIM1, TIM_OCPreload_Enable);

  TIM_CtrlPWMOutputs(TIM1,ENABLE);        //MOE 主输出使能        
  TIM_ARRPreloadConfig(TIM1, ENABLE); //使能TIMx在ARR上的预装载寄存器
        TIM_Cmd(TIM1, ENABLE);  //使能TIM1
}
		while(1)
	{
	//	LED0=!LED0;
	
	// TIM_Cmd(TIM1, DISABLE);  //使能TIM1	
	TIM1->CCR1=50;
	TIM1->CCR2=50;
	TIM1->CCR3=50;
	TIM1->CCR4=50;
	// TIM_Cmd(TIM1, ENABLE);  //使能TIM1	
		//delay_ms(1000);
		delay_ms(1000);
		delay_ms(1000);
	//TIM_Cmd(TIM1, DISABLE);  //使能TIM1
	TIM1->CCR1=250;
	TIM1->CCR2=250;
	TIM1->CCR3=250;
	TIM1->CCR4=250;
	//TIM_Cmd(TIM1, ENABLE);  //使能TIM1	

			//delay_ms(1000);
			delay_ms(1000);
			delay_ms(1000);
	}
	

主函数不断的更新占空比值。CH2,CH3,CH4比CH1生效慢,示波器看到的。


解决时间:18-5-14-----------------------------------------------------------------------------------------------------------------------------------
这个原因是因为库函数的原因,寄存器没有配置完整。


需要把CCMR1和CCMR2中的OC1PE,OC2PE,OC3PE,OC4PE变为1或者0,四个通道就会同步了。
0代表可随时写入寄存器值
TIM1->CCMR1&=0xF7F7; //关闭事件更新值
TIM1->CCMR2&=0xF7F7;
1代表有更新事件才更新寄存器值
        TIM1->CCMR1|=0x808; //开启事件更新值
TIM1->CCMR2|=0x808;


### STM32CubeMX Configuration for STM32F103C8T6 Project Template and Usage Guide #### Selecting the Microcontroller and Starting a New Project To begin configuring an STM32F103C8T6 project using STM32CubeMX, start by opening the software and selecting "ACCESS TO MCU SELECTOR". Choose the specific microcontroller model, which is STM32F103C8T6 in this case, followed by initiating a new engineering project[^1]. #### Setting Up System Parameters After choosing the correct microcontroller, proceed to configure system parameters including RCC (Reset and Clock Control). This involves setting up both external and internal oscillators based on application requirements. Additionally, select appropriate debugging modes under SYS settings as needed. #### Configuring Peripherals Peripheral configurations are crucial depending upon the intended functionality of the device. For instance: - **TIM4 Timer**: Set its frequency according to timing needs. - **USART Serial Communication Interface**: Configure UART pins like PA9 for TX and PA10 for RX if serial communication is required. - **Interrupts via NVIC**: Define interrupt priorities especially when multiple interrupts need handling simultaneously. For LED control specifically mentioned with PC13 and PC14 controlling LEDs while PA0 serves as input from KEY1 switch, these GPIO ports should be properly initialized within the peripheral setup phase[^5]. #### Managing Projects Specify paths along with naming conventions adhering strictly to English alphabets only during project creation stages. Ensure that KEIL MDK-ARM has been chosen correctly as the target IDE environment before proceeding further into code generation steps. #### Generating Source Code Finally, click “GENERATE CODE” after completing all necessary setups above; ensure saving changes made throughout this process regularly until completion[^4]. ```c // Example C function generated by STM32CubeMX showing basic initialization structure void MX_GPIO_Init(void){ __HAL_RCC_GPIOD_CLK_ENABLE(); /*Configure GPIO pin Output Level */ HAL_GPIO_WritePin(GPIOD, GPIO_PIN_12|GPIO_PIN_13|GPIO_PIN_14|GPIO_PIN_15, GPIO_PIN_RESET); /*Configure GPIO pins : PD12 PD13 PD14 PD15 */ GPIO_InitStruct.Pin = GPIO_PIN_12|GPIO_PIN_13|GPIO_PIN_14|GPIO_PIN_15; GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; GPIO_InitStruct.Pull = GPIO_NOPULL; GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW; HAL_GPIO_Init(GPIOD, &GPIO_InitStruct); } ``` --related questions-- 1. How does one modify clock sources or adjust their frequencies through STM32CubeMX? 2. What considerations must be taken when deciding between different types of peripherals such as ADC versus DAC? 3. Can you explain how to integrate FreeRTOS scheduling alongside hardware timer functionalities? 4. In what scenarios would it make sense to use DMA over standard polling methods for data transfer operations? 5. Is there any difference in configuring USART interfaces across various series of STM32 chips?
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值