Part Number: TM4C123GH6PM
Currently I'm working on the TM4C123GH6PMI controller. I'm working on the project in which
i am expecting the data at the (UART1) port from the other processor, in which data is time and status.
So time will be send by the processor at every second and the status will be send at every 4 seconds, also whenever the
data arriving at the UART1 port, of the controller by using interrupt I'm receiving. After receiving data
i want to send the data to the LCD panel so cannot afford loosing data while handling two interrupts at a time.
Lets consider following scenario,
1st second -> date
2nd second -> date
3rd second -> date
4th second -> date
5th second -> date,status
in this scenario on the fifth second I'm receiving the both the interrupts at a time on the same port (UART1).
so my question is how i can receive both the interrupts at a time without loosing any data??