Serial driver in MQX 4.1.1 is located at c:\Freescale\Freescale_MQX_4_1\mqx\source\io\serial\
Serial driver in KSDK 1.1 is located at c:\Freescale\KSDK_1.1.0\platform\drivers\src\uart\
Code related to hardware flow control in MQX 4.1.1 serial driver could be detected by occurrence of IO_SERIAL_HW_FLOW_CONTROL macro.
RTS (Request to Send) and CTS (Clear to Send) signals: These two lines allow the receiver and the transmitter to alert each other to their state. A transmitter raises its RTS line, which causes an interrupt on the receiver, i.e - hey can I send some data?. If the receiver is in a position to receive the data it will assert its CTS line, i.e - yes you can start sending.
In fact, you can use also any IO pins for handling RTS,CTS pins instead of hardware feature in UART module.
I hope it helps you.
Have a great day,
RadekS
-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------