This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TM4C1290NCPDT: UART Interrupts not working.

Part Number: TM4C1290NCPDT


    UARTConfigSetExpClk(UART0_BASE, GetClkSpeed(), 9600,
             ( UART_CONFIG_WLEN_8 | UART_CONFIG_STOP_ONE | UART_CONFIG_PAR_NONE ));
    UARTIntRegister(UART0_BASE, Debug_Uart_Interrupt);                          // Register Interrupt Handler.
    UARTEnable(UART0_BASE);
    UARTIntEnable(UART0_BASE, UART_INT_RX | UART_INT_TX | UART_INT_OE | UART_INT_FE );

But Debut_Uart_Interrupt() never gets called.  Polling characters works just fine.

Thanks, Doug