I'm trying to read in a 45 Byte message with SCI FIFO. I have configured the SCI FIFO Receive (SCIFFRX) Register as follows:
SciaRegs.SCIFFRX.all=0x2141;
I am only reading in one byte at a time because the FIFO can only read 16 Bytes at a time. However, since I am only reading one byte at a time, I am only catching 2 Bytes of the 45 Byte message. Is there anyway to receive a 45 Byte message without missing a Byte?