Hi @smitz96
No — the Flexcomm USART on LPC55S06 does not contain any hardware "character timeout" or programmable RX‑idle interrupt.
I think you can use USART + DMA + CTIMER for RX‑idle detection.
USART RX DMA continuously moves data from FIFO into a circular buffer.
CTIMER generates interrupt when no data arrives.
You configure a timer for 3.5 character times.
On every RX DMA event, you restart the CTIMER
If timer expires, it means:
No bytes for 3.5 chars Modbus frame end detected (EOF).
BR
Harry