diff options
Diffstat (limited to 'Documentation/serial')
-rw-r--r-- | Documentation/serial/serial-rs485.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Documentation/serial/serial-rs485.txt b/Documentation/serial/serial-rs485.txt index a4932387bbfb..c8878f821d1e 100644 --- a/Documentation/serial/serial-rs485.txt +++ b/Documentation/serial/serial-rs485.txt | |||
@@ -104,6 +104,9 @@ | |||
104 | rs485conf.flags |= SER_RS485_RTS_AFTER_SEND; | 104 | rs485conf.flags |= SER_RS485_RTS_AFTER_SEND; |
105 | rs485conf.delay_rts_after_send = ...; | 105 | rs485conf.delay_rts_after_send = ...; |
106 | 106 | ||
107 | /* Set this flag if you want to receive data even whilst sending data */ | ||
108 | rs485conf.flags |= SER_RS485_RX_DURING_TX; | ||
109 | |||
107 | if (ioctl (fd, TIOCSRS485, &rs485conf) < 0) { | 110 | if (ioctl (fd, TIOCSRS485, &rs485conf) < 0) { |
108 | /* Error handling. See errno. */ | 111 | /* Error handling. See errno. */ |
109 | } | 112 | } |