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.

AWR1843: bios_6_73_01_01该如何怎么配置Timer的使用

Part Number: AWR1843
Other Parts Discussed in Thread: SYSBIOS

各位好!

    项目中需要使用timer,配置如下:

Timer_Params timerParams;
Error_Block eb;
UInt key;
Error_init(&eb);
Timer_Params_init(&timerParams);
timerParams.period = 1000; /* 1 ms */
key = Hwi_disable();
Timer_create(1, SBL_TimerFxn, &timerParams, &eb);
Hwi_restore(key);

如上代码,在bios_6_53_02_00版本的配置上运行良好,但是基于bios_6_73_01_01版本上使用,执行Timer_create会报abort,如下:

请问基于bios_6_73_01_01版本,使用timer,是否有特殊的配置或者其他需要注意的地方?