Tool/software:
Hi Team,
I want to use UART receive data in interrupt mode (block mode not required), but all interrupt and DMA based example in existing SDK are blocked the process by
SemaphoreP_pend(&gUartReadDoneSem, SystemP_WAIT_FOREVER) this API,
So want to know how achieve my requirements,
1. Interrupt on every receive byte
2. How to implement logic to receive unknown receive data length
3. if Rx fifo threshold is set to 8 and User send 5 bytes only, then how to get these 5 bytes

