Some devices take undesired actions when RTS and

DTR are asserted. Some development boards for example will reset on DTR,
and some radio interfaces will transmit on RTS.

This patch allows "stty -f /dev/ttyu9.init -rtsdtr" to prevent
RTS and DTR from being asserted on open(), allowing these devices
to be used without problems.

Reviewed by:    imp
Differential Revision:  https://reviews.freebsd.org/D20031
This commit is contained in:
shurd 2019-06-12 18:07:04 +00:00 committed by Sebastian Huber
parent 6bd0b9ed27
commit 17baf5e390
1 changed files with 2 additions and 1 deletions

View File

@ -29,7 +29,7 @@
* SUCH DAMAGE.
*
* @(#)termios.h 8.3 (Berkeley) 3/28/94
* $FreeBSD: head/sys/sys/_termios.h 326023 2017-11-20 19:43:44Z pfg $
* $FreeBSD: head/sys/sys/_termios.h 348999 2019-06-12 18:07:04Z shurd $
*/
#ifndef _SYS__TERMIOS_H_
@ -143,6 +143,7 @@
#define CDTR_IFLOW 0x00040000 /* DTR flow control of input */
#define CDSR_OFLOW 0x00080000 /* DSR flow control of output */
#define CCAR_OFLOW 0x00100000 /* DCD flow control of output */
#define CNO_RTSDTR 0x00200000 /* Do not assert RTS or DTR automatically */
#endif