Hi There TI Mastermind
My application currently use 4 interrupts:
- ADCA1
- SCIA_RX
- CANA0
- Timer 0/1/2 (just one of them, not all three)
The idea in my system is, I have two converters (both MCU controlled, with controller inside ADCA1 interrupt) connected in cascaded manner.
CANA0 interrupt is used to communicate with external supervisory control
Between two MCU, UART will be used to update each other status.
The SCIA_RX interrupt is used to receive the data from other MCU, and CPU TIMER interrupt is used to send the data to other MCU at a fixed time interval.
At the moment, both SCIA_RX and CANA0 interrupts can be nested by ADCA1.
My question is: for the timer used to adjust the time interval to send the data to the other MCU, I want this timer to be nested with the ADCA1.
The thing is, TIMER0 is located at the same PIE group with ADCA1, thus it will also interrupt CANA0 and SCIA_RX interrupts. And I dont want this to happen.
Lets say, you suggest to use TIMER1 or TIMER2 insteady, but is this TIMER1 or TIMER2 can be nested by SCIA_RX or CAN_RX interrupt?
Any suggestion?
I hope I make my question clear.
Thanks,
Arief