Hi Teckna,
Not 100% certain of an answer.
A clue might be in the MQXIOUG.pdf:
C:\Freescale\Freescale MQX 3.8\doc\mqx\MQXIOUG.pdf
5.6 I/O Open Flags
This section describes the flagvalues you can pass when you call_io_fopen()for a particular
interrupt-driven or polled serial-device driver. They are defined in serial.h.
Command Description
IO_SERIAL_RAW_IO No processing of I/O done.
IO_SERIAL_XON_XOFF Software flow control enabled.
IO_SERIAL_TRANSLATION Translation of:
outgoing \n to CRLF
incoming CR to \n
incoming backspace outputs backspace
space backspace and drops the input.
IO_SERIAL_ECHO Echoes incoming characters.
IO_SERIAL_HW_FLOW_CONTROL Enables hardware flow control (RTS/CTS)
where available.
IO_SERIAL_NON_BLOCKING Open the serial driver in non blocking mode.
In this mode the _io_read() function doesn’t
wait till the receive buffer is full, but it
immediately returns received characters
and number of received characters.
IO_SERIAL_HW_485_FLOW_CONTROL Enables hardware support for RS485 if it is
available on target processor. Target HW
automatically asserts RTS signal before
transmit message and deasserts it after
transmission is done.
Regards,
David