Hello Wayne,
Please try installing the UART4 interrupt with the next code:
_int_install_isr(UART4_RX_TX_IRQn, UART4_RX_TX_IRQHandler, 0);
There should be a file generated by Processor Expert called uartCom1.c (or the name you gave to the component). The ISR "UART4_RX_TX_IRQHandler" is already declared in this file, so you just need to install it under MQX with the code above.
This needs to be done with all the peripheral interrupts you use, specifying the IRQ number and the ISR function.
Then in this case for UART, in the file Events.c you will have a callback function. Place your own code there.
:smileyinfo: A different approach is to tell the fsl_uart component to install the ISR for you. Just change the name, since it complains about the ISR being used by MQX. I am not sure if this is a bogus error, I will continue to investigate:

If you still have problems please let us know.
Regards!,
Jorge Gonzalez
-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------