Tool/software: TI C/C++ Compiler
Hi:
SDK:7.0.0
BIOS:bios_6_82_01_19
I reference to this article:
e2e.ti.com/.../898076
But, why when I create a timer in MCU1_0 as follows, the frequency of the first timer is 250MHz, and the frequency of the second timer is 19.2MHz?
TimerP_Params timerParams;
TimerP_Handle handle;
TimerP_Params_init(&timerParams);
timerParams.runMode = OTOTIMER_RUNMODE_CONTINUOUS;
timerParams.startMode = OTOTIMER_STARTMODE_USER;
timerParams.periodType = OTOTIMER_PERIODTYPE_MICROSECS;
timerParams.period = 1000;
timerParams.arg = params->arg;
timerParams.intfreqLo = 250000000;
timerParams.intfreqHi = 0;
timerParams.extfreqLo = 250000000;
timerParams.extfreqHi = 0;
handle = TimerP_create(id, (TimerP_Fxn)tickFxn, &timerParams);