注册 登录
电子工程世界-论坛 返回首页 EEWORLD首页 频道 EE大学堂 下载中心 Datasheet 专题
Justice_Gao的个人空间 https://home.eeworld.com.cn/space-uid-784175.html [收藏] [复制] [分享] [RSS]
日志

【GD32F350开发分享二】定时器T0中断:内部高速时钟源

已有 1914 次阅读2018-9-27 22:25 |个人分类:GD32系列学习



GD32F350定时器有TIMER0~TIMER5,绝对够用,我是用的是TIMER0,向上计数模式
在这种模式,计数器的计数方向是向上计数。计数器从0开始向上连续计数到自动加载值(定 义在TIMERx_CAR寄存器中),一旦计数器计数到自动加载值,会重新从0开始向上计数。如果 设置了重复计数器,在(TIMERx_CREP+1)次上溢后产生更新事件,否则在每次上溢时都会产 生更新事件。在向上计数模式中,TIMERx_CTL0寄存器中的计数方向控制位DIR应该被设置成 0。
当通过TIMERx_SWEVG寄存器的UPG位置1来设置更新事件时,计数值会被清0,并产生更新 事件。
如果TIMERx_CTL0寄存器的UPDIS置1,则禁止更新事件。
当发生更新事件时,所有的寄存器(重复计数器,自动重载寄存器,预分频寄存器)都将被更新。
下面这些图给出了一些例子,当TIMERx_CAR=0x63时,计数器在不同预分频因子下的行为。


  1. void nvic_config(void)
  2. {
  3.     nvic_priority_group_set(NVIC_PRIGROUP_PRE2_SUB2);
  4.     nvic_irq_enable(TIMER0_BRK_UP_TRG_COM_IRQn, 0, 1);
  5. }
  6. /*!
  7.     \brief      configure the TIMER peripheral
  8.     \param[in]  none
  9.     \param[out] none
  10.     \retval     none
  11.   */
  12. void timer_config(void)
  13. {
  14.     /* -----------------------------------------------------------------------
  15.     TIMER0 configuration:
  16.     generate 3 complementary PWM signal.
  17.     TIMER0CLK is fixed to systemcoreclock, the TIMER0 prescaler is equal to 84(GD32F330)
  18.     or 107(GD32F350) so the TIMER0 counter clock used is 1MHz.
  19.     insert a dead time equal to 1us
  20.     configure the break feature, active at high level, and using the automatic
  21.     output enable feature.
  22.     use the locking parameters level0.
  23.     ----------------------------------------------------------------------- */
  24.     timer_parameter_struct timer_initpara;


  25.     rcu_periph_clock_enable(RCU_TIMER0);

  26.     timer_deinit(TIMER0);

  27.     timer_initpara.prescaler         = 4000/50-1;
  28.     timer_initpara.alignedmode       = TIMER_COUNTER_EDGE;
  29.     timer_initpara.counterdirection  = TIMER_COUNTER_UP;
  30.     timer_initpara.period            = 270/5;
  31.     timer_initpara.clockdivision     = TIMER_CKDIV_DIV1;
  32. //    timer_initpara.repetitioncounter = 0;
  33.     timer_init(TIMER0,&timer_initpara);

  34.     /* TIMER0 channel control update interrupt enable */
  35.     timer_interrupt_enable(TIMER0,TIMER_INT_UP);

  36.     /* TIMER0 counter enable */
  37.     timer_enable(TIMER0);
  38. }
复制代码

采用内部时钟源108MHz,定时4ms,定时中断如下
  1. extern uint16_t Timer_Count;
  2. extern bool Timer_flag;
  3. void TIMER0_BRK_UP_TRG_COM_IRQHandler(void)
  4. {

  5.     timer_interrupt_flag_clear(TIMER0, TIMER_INT_FLAG_UP);
  6.                 Timer_Count++;
  7.                 if(Timer_Count==1)
  8.                 {
  9.                         Timer_Count = 0;
  10.                         Timer_flag = 1;
  11. //                        printf("Timer0\n");
  12.                 }


  13. }
复制代码




使用内部时钟源,时间久了,时间会便宜一点,下次我自己焊接外部晶振8MHz,获取高精度的定时器,敬请期待

本文来自论坛,点击查看完整帖子内容。

评论 (0 个评论)

facelist doodle 涂鸦板

您需要登录后才可以评论 登录 | 注册

热门文章