I am trying to enable the interrupt to fire on the Rx line of the LPUART0. I have enabled the LPUART0 Module as well as the clock source in SIM I have configured my pin and am able to use a polling communication successfully. I have enabled the RIE bit in the CTRL register and have created the function
void LPUART0_IRQHandler()
{
//IRQ code
}
What else and i missing to get this interrupt to fire.
Thank you for you help