Hello,
There are three CPU timers in the device, SYS/BIOS uses the TIMER2 for tick which leaves two timers ( 0 and 1 ).
I need to configure one timer:
#include <ti/sysbios/family/c28/Timer.h> Timer_Params timerParams;
After compilation I get this Error:
'Timer_Params' is ambiguous '
Candidates are:
ti_sysbios_family_c28_Timer_Params()
ti_sysbios_family_c28_Timer_Params(const ti_sysbios_family_c28_Timer_Params &)
'
When I try to do Open Declation:
C:\ti\bios_6_76_04_02\packages\ti\sysbios\hal\Timer.h C:\ti\bios_6_76_04_02\packages\ti\sysbios\family\c28\Timer.h
So it looks like compiler could not resolve which header to use.
Any ideas why ?