Hello,
I was trying to configure RXIFLSEL and TXIFLSEL for TM4C123GH6PM UART0 as for 1/8 FIFO level (RXIFLSEL - 0x0 and TXIFLSEL - 0x04 respectively)
According to TM4C123GH6PM datasheet
0x0 RX FIFO ≥ ⅛ full
0x4 TX FIFO ≤ ⅛ empty
Will it trigger an interrupt for the following conditions
a) The transmitter buffer goes from 1 to 0 characters
b) The receiver buffer goes from 5 to 6 characters
c) Will it keep on generating interrupts on RX_FIFO empty util we mask it?
Answers to the above mentioned questions will help me in writing a software FIFO using UART0 interrupts