aboutsummaryrefslogtreecommitdiff
path: root/nuttx/include/termios.h
diff options
context:
space:
mode:
authorpx4dev <px4@purgatory.org>2013-01-01 19:39:17 -0800
committerpx4dev <px4@purgatory.org>2013-01-01 19:39:17 -0800
commiteaf1d8063cc707b1041e8583663d9edd45f42c5d (patch)
tree0a813a8861af8b5f95c52a90b677d82f1d080308 /nuttx/include/termios.h
parentdc50d96b5d8042b6ffd54051f17cca0dc0dbb27d (diff)
downloadpx4-firmware-eaf1d8063cc707b1041e8583663d9edd45f42c5d.tar.gz
px4-firmware-eaf1d8063cc707b1041e8583663d9edd45f42c5d.tar.bz2
px4-firmware-eaf1d8063cc707b1041e8583663d9edd45f42c5d.zip
Build system updates to match the NuttX merge.
Diffstat (limited to 'nuttx/include/termios.h')
-rw-r--r--nuttx/include/termios.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/nuttx/include/termios.h b/nuttx/include/termios.h
index 2e1c38fc2..95b20a3d3 100644
--- a/nuttx/include/termios.h
+++ b/nuttx/include/termios.h
@@ -109,6 +109,9 @@
#define PARODD (1 << 5) /* Bit 5: Odd parity, else even */
#define HUPCL (1 << 6) /* Bit 6: Hang up on last close */
#define CLOCAL (1 << 7) /* Bit 7: Ignore modem status lines */
+#define CCTS_OFLOW (1 << 8) /* Bit 8: CTS flow control of output */
+#define CRTSCTS CCTS_OFLOW
+#define CRTS_IFLOW (1 << 9) /* Bit 9: RTS flow control of input */
/* Local Modes (c_lflag in the termios structure) */