原创 使用STM32 Timer的Gate模式来精确控制脉冲个数

2009-12-3 22:08 11510 6 8 分类: MCU/ 嵌入式

策略:


用到了Timer Master Slave中的Gate模式
比如TIM1输出PWM, 频率为F
可以用TIM2通过Gate来控制TIM1的输出
将TIM2预频设为1/(F*2),则TIM2的Period 就是 脉冲个数*2 - 1

/*           1     2     3     4     5     6     7     8     9
             __    __    __    __    __    __    __    __    __           
            |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |            
TIM1:    ___|  |__|  |__|  |__|  |__|  |__|  |__|  |__|  |__|  |____________________
          ->| Period1|<-
             1) 2) 3) 4) 5) 6) 7) 8) 9) 10)11)12)13)14)15)16)17)
             __________________________________________________  
            |                                                  |  
TIM2:    ___|                                                  |____________________
          ->|  |<--- Pres2 = Period1/2
            |<------------  Period2 =  N*2-1 = 17 ------------>|
 */


 


实现代码


软件:
IAR 4.42限制版
ST库    2.01
硬件:
万利199开发板 STM3210B-LK1
/*0001*/  /* Includes ------------------------------------------------------------------*/
/*0002*/  #include "stm32f10x_lib.h"
/*0003*/  
/*0004*/  /* Private typedef -----------------------------------------------------------*/
/*0005*/  /* Private define ------------------------------------------------------------*/
/*0006*/  /* Private macro -------------------------------------------------------------*/
/*0007*/  /* Private variables ---------------------------------------------------------*/
/*0008*/  ErrorStatus HSEStartUpStatus;
/*0009*/  
/*0010*/  /* Private function prototypes -----------------------------------------------*/
/*0011*/  void  RCC_Configuration(void);
/*0012*/  void  NVIC_Configuration(void);
/*0013*/  /* Private functions ---------------------------------------------------------*/
/*0014*/  
/*0015*/  #define   PWM_Period      120
/*0016*/  int main(void)
/*0017*/  {
/*0018*/    u16       waveNumber = 10;
/*0019*/    /* System Clocks Configuration */
/*0020*/    RCC_Configuration();
/*0021*/  
/*0022*/    /* Enable related peripheral clocks */
/*0023*/    RCC_APB2PeriphClockCmd(  RCC_APB2Periph_GPIOA,ENABLE);
/*0024*/    RCC_APB2PeriphClockCmd(  RCC_APB2Periph_GPIOB,ENABLE);
/*0025*/    RCC_APB2PeriphClockCmd(  RCC_APB2Periph_TIM1,ENABLE);
/*0026*/    RCC_APB1PeriphClockCmd(  RCC_APB1Periph_TIM3,ENABLE);
/*0027*/    
/*0028*/    /* Config IO for related timers */
/*0029*/    {
/*0030*/      GPIO_InitTypeDef GPIO_InitStructure;
/*0031*/      /* Timer1 Channel 2, PA9 */
/*0032*/      GPIO_InitStructure.GPIO_Pin =  GPIO_Pin_9;
/*0033*/      GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
/*0034*/      GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
/*0035*/      GPIO_Init(GPIOA, &GPIO_InitStructure);
/*0036*/      /* Timer3 Channel 4, PB1*/
/*0037*/      GPIO_InitStructure.GPIO_Pin =  GPIO_Pin_1;
/*0038*/      GPIO_Init(GPIOB, &GPIO_InitStructure);
/*0039*/    }
/*0040*/    
/* Setup Timer3 channel 4, Timer3 is master timer
|*0041*|       This timer is used to control the waveform count of timer1 */

/*0042*/    {
/*0043*/      TIM_TimeBaseInitTypeDef  TIM_TimeBaseStructure;
/*0044*/      TIM_OCInitTypeDef  TIM_OCInitStructure;
/*0045*/      TIM_DeInit(TIM3);
/*0046*/      TIM_TimeBaseStructInit(&TIM_TimeBaseStructure);
/*0047*/      TIM_OCStructInit(&TIM_OCInitStructure);
/*0048*/      TIM_TimeBaseStructure.TIM_Prescaler = PWM_Period/2 - 1;
/*0049*/      TIM_TimeBaseStructure.TIM_CounterMode = TIM_CounterMode_Up;
/*0050*/      TIM_TimeBaseStructure.TIM_Period = waveNumber*2;
/*0051*/      TIM_TimeBaseStructure.TIM_ClockDivision = TIM_CKD_DIV1;
/*0052*/      TIM_TimeBaseInit(TIM3,&TIM_TimeBaseStructure);
/*0053*/      
/*0054*/      /* Timer2 Channel 3 Configuration in PWM2 mode, this is used for enable Recive clcok */
/*0055*/      TIM_OCInitStructure.TIM_OCMode = TIM_OCMode_PWM1;
/*0056*/      TIM_OCInitStructure.TIM_OutputState = TIM_OutputState_Enable;
/*0057*/      TIM_OCInitStructure.TIM_Pulse = waveNumber*2 - 1;
/*0058*/      TIM_OCInitStructure.TIM_OCPolarity = TIM_OCPolarity_High;
/*0059*/      TIM_OC4Init(TIM3,&TIM_OCInitStructure);
/*0060*/      TIM_CtrlPWMOutputs(TIM3, ENABLE);
/*0061*/      TIM_SelectOnePulseMode(TIM3, TIM_OPMode_Single);
/*0062*/    }
/*0063*/    
/* Setup timer1 channel 2, Timer1 is slave timer 
|*0064*|       This timer is used to output waveforms */

/*0065*/    {
/*0066*/      TIM_TimeBaseInitTypeDef  TIM_TimeBaseStructure;
/*0067*/      TIM_OCInitTypeDef  TIM_OCInitStructure;
/*0068*/      TIM_DeInit(TIM1);
/*0069*/      TIM_TimeBaseStructInit(&TIM_TimeBaseStructure);
/*0070*/      TIM_OCStructInit(&TIM_OCInitStructure);
/*0071*/      TIM_TimeBaseStructure.TIM_Prescaler = 0;
/*0072*/      TIM_TimeBaseStructure.TIM_CounterMode = TIM_CounterMode_Up;
/*0073*/      TIM_TimeBaseStructure.TIM_Period = PWM_Period;
/*0074*/      TIM_TimeBaseStructure.TIM_ClockDivision = TIM_CKD_DIV1;
/*0075*/      TIM_TimeBaseInit(TIM1,&TIM_TimeBaseStructure);
/*0076*/      
/*0077*/      /* Timer2 Channel 3 Configuration in PWM2 mode, this is used for enable Recive clcok */
/*0078*/      TIM_OCInitStructure.TIM_OCMode = TIM_OCMode_PWM1;
/*0079*/      TIM_OCInitStructure.TIM_OutputState = TIM_OutputState_Enable;
/*0080*/      TIM_OCInitStructure.TIM_Pulse = PWM_Period/2;
/*0081*/      TIM_OCInitStructure.TIM_OCPolarity = TIM_OCPolarity_High;
/*0082*/      TIM_OC2Init(TIM1,&TIM_OCInitStructure);
/*0083*/      TIM_CtrlPWMOutputs(TIM1, ENABLE);
/*0084*/    }
/*0085*/    
/* Create relationship between timer1 and timer3, timer3 is master, timer1 is slave
|*0086*|      timer1 is work under gate control mode, and controled by timer3
|*0087*|      timer3's channel 4 is used as the control signal
|*0088*|     */

/*0089*/      /* Enable timer's master/slave work mode */
/*0090*/      TIM_SelectMasterSlaveMode(TIM3,TIM_MasterSlaveMode_Enable);
/*0091*/      TIM_SelectMasterSlaveMode(TIM1,TIM_MasterSlaveMode_Enable);
/*0092*/      /* timer3's channel 4 is used as the control signal */
/*0093*/      TIM_SelectOutputTrigger(TIM3,TIM_TRGOSource_OC4Ref );
/*0094*/      /* Check the master/slave is valid or not */
/*0095*/      
compile_assert((u16)GetInternalTrigger(TIM1,TIM3) != (u16)-1); 
/*0096*/      /* Config timer1's external clock */
/*0097*/      TIM_ITRxExternalClockConfig(TIM1, 
GetInternalTrigger(TIM1,TIM3));
/*0098*/      TIM_SelectSlaveMode(TIM1,TIM_SlaveMode_Gated);
/*0099*/      
/*0100*/    /* Enable the slave tiemr*/
/*0101*/    TIM_Cmd(TIM1,ENABLE);
/*0102*/    //SetupAlltimers();
/*0103*/    while(1){
/*0104*/      /* Check whether the previous action is done or not */
/*0105*/      if(!(TIM3->CR1 & 1)){
/*0106*/        TIM1->CNT = 0
/* It would be very perfect if gate mode can 
|*0107*|                          reset the slave timer automatically */

/*0108*/        TIM3->ARR = waveNumber*2;  /* Reload wave number*/
/*0109*/        TIM3->CCR4 = waveNumber*2 - 1;
/*0110*/        TIM3->CR1|=1/* Re-enable the timer */
/*0111*/        /* update waveform number */
/*0112*/        waveNumber++;
/*0113*/        if(waveNumber == 13){
/*0114*/          waveNumber = 10;
/*0115*/        }
/*0116*/      }
/*0117*/    }
/*0118*/  }
/*0119*/  
/*0120*/  
/*******************************************************************************
|*0121*|  * Function Name  : RCC_Configuration
|*0122*|  * Description    : Configures the different system clocks.
|*0123*|  * Input          : None
|*0124*|  * Output         : None
|*0125*|  * Return         : None
|*0126*|  *******************************************************************************/

/*0127*/  void RCC_Configuration(void)
/*0128*/  {
/*0129*/    /* RCC system reset(for debug purpose) */
/*0130*/    RCC_DeInit();
/*0131*/  
/*0132*/    /* Enable HSE */
/*0133*/    RCC_HSEConfig(RCC_HSE_ON);
/*0134*/  
/*0135*/    /* Wait till HSE is ready */
/*0136*/    HSEStartUpStatus = RCC_WaitForHSEStartUp();
/*0137*/  
/*0138*/    if(HSEStartUpStatus == SUCCESS)
/*0139*/    {
/*0140*/      /* Enable Prefetch Buffer */
/*0141*/      FLASH_PrefetchBufferCmd(FLASH_PrefetchBuffer_Enable);
/*0142*/  
/*0143*/      /* Flash 2 wait state */
/*0144*/      FLASH_SetLatency(FLASH_Latency_2);
/*0145*/   
/*0146*/      /* HCLK = SYSCLK */
/*0147*/      RCC_HCLKConfig(RCC_SYSCLK_Div1); 
/*0148*/    
/*0149*/      /* PCLK2 = HCLK */
/*0150*/      RCC_PCLK2Config(RCC_HCLK_Div1); 
/*0151*/  
/*0152*/      /* PCLK1 = HCLK/2 */
/*0153*/      RCC_PCLK1Config(RCC_HCLK_Div2);
/*0154*/  
/*0155*/      /* PLLCLK = 8MHz * 9 = 72 MHz */
/*0156*/      RCC_PLLConfig(RCC_PLLSource_HSE_Div1, RCC_PLLMul_9);
/*0157*/  
/*0158*/      /* Enable PLL */ 
/*0159*/      RCC_PLLCmd(ENABLE);
/*0160*/  
/*0161*/      /* Wait till PLL is ready */
/*0162*/      while(RCC_GetFlagStatus(RCC_FLAG_PLLRDY) == RESET)
/*0163*/      {
/*0164*/      }
/*0165*/  
/*0166*/      /* Select PLL as system clock source */
/*0167*/      RCC_SYSCLKConfig(RCC_SYSCLKSource_PLLCLK);
/*0168*/  
/*0169*/      /* Wait till PLL is used as system clock source */
/*0170*/      while(RCC_GetSYSCLKSource() != 0x08)
/*0171*/      {
/*0172*/      }
/*0173*/    }
/*0174*/  }


效果如下图


a43ec321-217b-425e-aea1-81a9be8175ce.jpg

文章评论2条评论)

登录后参与讨论

用户1732399 2014-1-13 11:56

compile_assert((u16)GetInternalTrigger(TIM1,TIM3) != (u16)-1); 这句怎么编译不能通过呢?

用户377235 2013-11-14 00:56

这个是否已经测试,可否向你请教一下!!
相关推荐阅读
用户236335 2011-05-16 17:36
[原创]操作DS18B20的程序(C写的 带ROMSearch和CRC校验)
调试环境:MPLAB 7.5PICC  8.05 PL1PIC16F88,DS18B20 两颗,晶振4MHz(如换其它晶振,需要更改WriteBit和ReadBit中的等待操作以及延时函数)我只有两颗...
用户236335 2011-04-08 09:17
[原创]用PIC10F200实现三色LED亮度调节
10F200资源:一个8位timer,一个WDT可以工作在 2.0~5.5V内置晶振,单一频率4MHz 精度1%三个IO,一个Input指令空间: 255目标:使用串口通讯方式,波特率38400,8位...
用户236335 2010-04-09 16:35
[原创]DIY一个多功能手柄
打造一个属于自己的多功能手柄多功能手柄的视频演示http://v.youku.com/v_show/id_XMTYyOTcwNjUy.html预览小结:芯片: STM32F103C8T6,MMA726...
用户236335 2010-04-09 14:12
[原创]STM32迷你OLed显示屏
之前买了几块128X64的OLed屏,用开发板驱动起来玩了一下,感觉显示效果还蛮不错的去赛格逛的时候又看到了这么一个小盒子,比划了一下觉得把这个屏放进去还能加点东西在上面盒子内部大小为44mm X 2...
用户236335 2010-04-07 23:28
FPM不能使用?(Foot Print Maker)别急,那是作者的小玩笑
用Candence来画PCB很不错,但是做封装很麻烦还好有人做了一个免费的小软件FPM(Foot Print Maker),用来生成封装很方便但是作者开了个小玩笑,0.0.8.0版本的从2010年4月...
用户236335 2010-03-28 15:57
[原创]用STM32 199元的开发板来玩俄罗斯方块
开发板是万利的那个带有ST-Link2的199开发板  STM3210B-LK1上面有一块STM32F103VBT6,这个片子有128K的Flash,20K的RAM开发板上面可以用到的资源·1 个LC...
我要评论
2
6
关闭 站长推荐上一条 /2 下一条