I am looking for a way to use UART input to command the normal execution of my program. I want the program to operate normally, but be "listening" for UART input data.
Is there a way to trigger an RX interrupt without calling sciReceive()? I have figured out that it is possible to check sciIsRxReady() prior to calling an sciReceive() method, but I am searching for a way to trigger the RX interrupt when input is received in the terminal, rather than looping and checking a flag to determine if an input has been received.
Is this possible? Or will I have to constantly check the sciIsRxReady flag to determine something has been received in the UART?