X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=linux_termios.c;h=5343e6e8268f15253aa82fb2f6983b76427591f5;hb=b87deb7c70b739ffac312112950c4481f6f4666d;hp=874889aba4641c7ed268923f1eeb32d4908b5d47;hpb=40978c2b4182d09b197a0218cc107e49509747ad;p=libserialport.git diff --git a/linux_termios.c b/linux_termios.c index 874889a..5343e6e 100644 --- a/linux_termios.c +++ b/linux_termios.c @@ -17,6 +17,24 @@ * along with this program. If not, see . */ +/* + * At the time of writing, glibc does not support the Linux kernel interfaces + * for setting non-standard baud rates and flow control. We therefore have to + * prepare the correct ioctls ourselves, for which we need the declarations in + * linux/termios.h. + * + * We can't include linux/termios.h in serialport.c however, because its + * contents conflict with the termios.h provided by glibc. So this file exists + * to isolate the bits of code which use the kernel termios declarations. + * + * The details vary by architecture. Some architectures have c_ispeed/c_ospeed + * in struct termios, accessed with TCSETS/TCGETS. Others have these fields in + * struct termios2, accessed with TCSETS2/TCGETS2. Some architectures have the + * TCSETX/TCGETX ioctls used with struct termiox, others do not. + */ + +#ifdef __linux__ + #include #include "linux_termios.h" @@ -81,8 +99,8 @@ int get_termiox_size(void) int get_termiox_flow(void *data) { struct termiox *termx = (struct termiox *) data; - int flags = 0; + if (termx->x_cflag & RTSXOFF) flags |= RTS_FLOW; if (termx->x_cflag & CTSXON) @@ -111,3 +129,5 @@ void set_termiox_flow(void *data, int flags) termx->x_cflag |= DSRXON; } #endif + +#endif