Hi
When we instantiate the clock module for a C6472:
var ti_sysbios_knl_Clock = xdc.useModule('ti.sysbios.knl.Clock');
What physical timers are being used? (i.e. local timer 0 for core 0, local timer 1 for core 1, etc)
If I dynamically create a timer using
TimerHandle = Timer_create(Timer_ANY, gapFillTimerIsr, &timerParams, &eb);
How can I create it such that the timer only fires on core 0 and does not interfere with the timer used by the clock module used by the RTOS?
Or to put it another way, how can I let the RTOS decide which timer is best?
One other question, is there an API that the clock module has for me to determine what clocks are used?
Same question for the timer module?
(I've read the C:\Program Files\Texas Instruments\bios_6_31_04_27\docs\cdoc\index.html information with no luck in finding my answers)
And another question. If a person uses a mix of CSL and BIOS functions to configure timers, what CSL can one use to determine which timer the BIOS is already using?
Cheers