PWM发脉冲,怎么精确控制发脉冲的个数呢?

2019-07-21 09:01发布

STM32的PWM发送脉冲,周期和脉宽都可调了,但是现在不知道如何精确的控制所发的脉冲个数。
具体要求就是在一段时间内大概50ms内发送5000-1W个脉冲  个数要很精确,误差2个以内可以接受
该怎么控制呢?
1.接上一个外部中断口,在中断中计数
2.用一个定时器 对发脉冲的时间进行控制

各位大侠还有什么好的办法吗?求解啊!
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
49条回答
翱翔云端的鸟
1楼-- · 2019-07-23 17:47
一主二从的方式
翱翔云端的鸟
2楼-- · 2019-07-23 22:37
回复【18楼】没时间先生1214:
---------------------------------
看我的代码试试!
整鼓猩
3楼-- · 2019-07-24 03:56
 精彩回答 2  元偷偷看……
整鼓猩
4楼-- · 2019-07-24 08:59
回复【21楼】翱翔云端的鸟:
---------------------------------
#define PrescalerValue  57
#define PWM_Preload  36

/* rivate functions ---------------------------------------------------------*/

void TIM1_Configuration(void)
{
  TIM_TimeBaseInitTypeDef  TIM_TimeBaseStructure;
  TIM_OCInitTypeDef  TIM_OCInitStructure; 
  GPIO_InitTypeDef GPIO_InitStructure;
       
  /* TIM1 clock enable */
  RCC_APB2PeriphClockCmd(RCC_APB2Periph_TIM1, ENABLE);

  /*GPIOA Configuration: TIM1 channel 1,remap to A.8 */
  GPIO_InitStructure.GPIO_Pin =  GPIO_Pin_8;
  GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
  GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;

  GPIO_Init(GPIOA, &GPIO_InitStructure);  

  /* 配置定时器定时周期,计数模式为向上 */
  TIM_TimeBaseStructure.TIM_Period = (u32)PrescalerValue;
  TIM_TimeBaseStructure.TIM_Prescaler = 0;
  TIM_TimeBaseStructure.TIM_ClockDivision = 0;
  TIM_TimeBaseStructure.TIM_CounterMode = TIM_CounterMode_Up;
  
  TIM_UpdateRequestConfig(TIM1,TIM_UpdateSource_Regular); /*Source of update is only counter overflow/underflow*/
  TIM_TimeBaseInit(TIM1, &TIM_TimeBaseStructure);
       

  /* Output Compare Toggle Mode configuration */
  TIM_OCInitStructure.TIM_OCMode = TIM_OCMode_PWM1;
  TIM_OCInitStructure.TIM_OutputState = TIM_OutputState_Enable;
  TIM_OCInitStructure.TIM_OutputNState = TIM_OutputNState_Disable;
  TIM_OCInitStructure.TIM_Pulse = WM_Preload;
  TIM_OCInitStructure.TIM_OCPolarity = TIM_OCPolarity_High;
  TIM_OCInitStructure.TIM_OCNPolarity = TIM_OCNPolarity_Low;
  TIM_OCInitStructure.TIM_OCIdleState = TIM_OCIdleState_Reset;
  TIM_OCInitStructure.TIM_OCNIdleState = TIM_OCIdleState_Reset;

  TIM_OC1Init(TIM1, &TIM_OCInitStructure);  
  TIM_OC1PreloadConfig(TIM1, TIM_OCPreload_Disable);

  /* TIM1 Main Output Enable */
  TIM_CtrlPWMOutputs(TIM1, ENABLE);

  /* Master Mode selection. TIM1 sets update as trigger output, act as prescaler to count TIM2 */
  TIM_SelectOutputTrigger(TIM1, TIM_TRGOSource_Update);

  /* Slave Mode selection */
  TIM_SelectInputTrigger(TIM1, TIM_TS_ITR1); // from TIM2
  TIM_SelectSlaveMode(TIM1, TIM_SlaveMode_Gated); //gated by enable of TIM2  

  /* Update TIM1*/
  TIM_GenerateEvent(TIM1,TIM_EventSource_Update);
  
  /*enable TIM1*/
  TIM_Cmd(TIM1, ENABLE);  
}

/****------------------------------------------------------------------------------********/
void TIM2_Configuration(void)
{
  TIM_TimeBaseInitTypeDef  TIM_TimeBaseStructure;
  TIM_OCInitTypeDef  TIM_OCInitStructure; 
       
  /* TIM2 clock enable */
  RCC_APB1PeriphClockCmd(RCC_APB1Periph_TIM2, ENABLE);  

  /* 配置定时器定时周期,计数模式为向上 */
  TIM_TimeBaseStructure.TIM_Period = 10000;
  TIM_TimeBaseStructure.TIM_Prescaler = 0;
  TIM_TimeBaseStructure.TIM_ClockDivision = 0;
  TIM_TimeBaseStructure.TIM_CounterMode = TIM_CounterMode_Up;
  
  TIM_UpdateRequestConfig(TIM2,TIM_UpdateSource_Regular); /*Source of update is only counter overflow/underflow*/
  TIM_TimeBaseInit(TIM2, &TIM_TimeBaseStructure);    

  /* Master Mode selection. TIM2 sets Enable as trigger output, for gating TIM1 */
  TIM_SelectOutputTrigger(TIM2, TIM_TRGOSource_Enable);

  /* Slave Mode selection */
  TIM_SelectInputTrigger(TIM2, TIM_TS_ITR0); // from TIM1
  TIM_SelectSlaveMode(TIM2, TIM_SlaveMode_External1); //clocked by update of TIM1

   /* One ulse Mode selection ,TIM2 stop when overflow ocuur*/
  TIM_SelectOnePulseMode(TIM2, TIM_OPMode_Single);

  /* Update TIM2*/
  TIM_GenerateEvent(TIM2,TIM_EventSource_Update);

  /* TIM2 IT enable */
  TIM_ITConfig(TIM2, TIM_IT_Update , ENABLE);   
}

启动PWM则是:
TIM_SetAutoreload(TIM2,N-1);   //N为预设PWM个数
TIM_GenerateEvent(TIM2,TIM_EventSource_Update);
TIM_Cmd(TIM2, ENABLE);  
没时间先生1214
5楼-- · 2019-07-24 14:50
回复【21楼】翱翔云端的鸟:
---------------------------------
谢谢楼主
Faraday
6楼-- · 2019-07-24 16:38
感谢楼主,我是用pwm控制步进滑台做机床的   试了好多种方法,脉冲个数不准 ,误差大得很,走着走着就飞了。正在测试楼主的方法 ,希望多交流。(我需要三路可独立精准控制频率和脉冲个数的PWM)

一周热门 更多>