Hi,
I'm using C6678 EVM (TMX320C6678L)
Currently only core0 is running, I'm trying to use 2 timers: number 0 and number 8 (in future each core will use timers 0+core_num and 8+core_num)
The core that is executed is as following:
CSL_tmrInit(NULL);
timer_handler[0] = CSL_tmrOpen(&timer_obj[0], CSL_TMR_0, NULL, &timer_status);
timer_handler[1] = CSL_tmrOpen(&timer_obj[1], CSL_TMR_8, NULL, &timer_status);
After this code is executed, timer_handler[0] get a legal value, but timer_handler[1] equals NULL and timer_status equals -1
I tried also using different timer id for the second timer, all numbers between 0-7 works fine, but any id that is between 8-15 causes this problem
Can anyone help me?
Thanks,
Oleg Fomenko