I am using the f28027 micro.
I am very keen to know if it is possible to use ADCINT2 interrupt and CPU1timer interrupt at the same program. Also if it is possible to be a conflict between those interrupts at the core and if so what is the priority.
Both interrupts are remaped to ISR functions
EALLOW;
PieVectTable.ADCINT2 = &adc_isr;
PieVectTable.TINT1 = &cpu_timer1_isr;
EDIS;