新闻  |   论坛  |   博客  |   在线研讨会
R8C\2K 2L定时器B的定时模式初始化设置
renesasrulz | 2009-12-26 12:10:27    阅读:1257   发布文章

原文:R8C\2K 2L定时器B的定时模式初始化设置

/************************************************************************
*函数原型: Timer_RB_Init
*功能 : 初始化RB
************************************************************************/
void Timer_RB_Init(void)
{
 tstart_trbcr = 0;     /* Stop Timer RB operation */
 while(tcstf_trbcr != 0);
 trbic = 0x00;      /* Disable Timer RB Interrupt */
 tstop_trbcr = 1;     /* The TRBPRE and TRBPR registers are initialized */
          /* The TSTART and TCSTF bits in the TRBCR register are initialized too. */
/****************************************************************/
 /* Period between underflows : 20MHz * f2 * 200 * 50 = 1ms */
 trbpre = 200-1;      /* Set (200 - 1) in TRBPRE register */
 trbpr = 125-1;      /* Set (50 - 1) in TRBPR register */
/****************************************************************/
 topl_trbioc = 0;     /* Set to "0" in timer mode */
 tocnt_trbioc = 0;     /* Set to "0" in timer mode */
 inostg_trbioc = 0;     /* Set to "0" in timer mode */
 inoseg_trbioc = 0;     /* Set to "0" in timer mode */
 tmod0_trbmr = 0;     /* Set to "00" in timer mode */
 tmod1_trbmr = 0;
 twrc_trbmr = 0;      /* Write to reload register and counter */
 tck0_trbmr = 1;                     /* Select "f2" in Count Source */
 tck1_trbmr = 1;
 tckcut_trbmr = 0;     /* Provides count source */
 trbic=1;              /*中断级别*/
 tstart_trbcr = 1;     /* Start Timer RB operation */
 while(tcstf_trbcr != 1);
}

*博客内容为网友个人发布,仅代表博主个人观点,如有侵权请联系工作人员删除。

参与讨论
登录后参与讨论
来自瑞萨单片机论坛(www.renesas-mcu.com)的经典文章。仅供大家参考,版权归作者所有。
推荐文章
最近访客