using the TM4C1294NCPDT -
I have to configure a GPIO pin interrupt as the highest priority.
I have an ADC working with an interrupt that I put at lowest priority : ADCSequenceConfigure(ADC0_BASE, PD_SAMPLE_SEQ, ADC_TRIGGER_TIMER, 3);
I configured the GPIO interrupt with 0 priority (highest): IntPrioritySet(INT_QCW_PORT, 0x00);
it is important that the GPIO interrupt will be called also from a running interrupt (ADC or UART) but although the configured priorities,
On the scope I dont see the ADC stopping and giving the CPU over to the highest priority.
Do I have to configure some nested interrupt state?
Maccabi