This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

关于C6748内部函数问题



比如说下面定时器的初始化函数,其内部的TimerConfigure、TimerPeriodSet之类的内部函数的配置或者编写方法在C6748的文档里找不到,在哪可以找到,这样有助于更快的学会C6748的操作

void TimerInit(unsigned int period)
{
TimerConfigure(SOC_TMR_2_REGS, TMR_CFG_64BIT_CLK_INT);

TimerPeriodSet(SOC_TMR_2_REGS, TMR_TIMER12, period);

TimerPeriodSet(SOC_TMR_2_REGS, TMR_TIMER34, TMR_PERIOD_MSB32);

TimerEnable(SOC_TMR_2_REGS, TMR_TIMER12, TMR_ENABLE_CONT);
}