Timers Interrupts on TI TMS320F28069:
I am using three timers interrupt routines (Timer 0,1,2). Timer1 and Timer2 is my concern.
Timer1 runs once a second for 2 milliseconds (execute a long routine).
Timer 2 runs every 60 micro seconds for 20 micro seconds (execute a short routine).
The question; Is there a way for Timer2 to interrupt Timer1 so that Timer2 can always run every 60 micro seconds without missing any interrupts?
Currently, when Timer1 is running, Timer2 has to wait till timer1 finishes its 2 milliseconds code execution.
Thanks for any help