Rudiments
serialportprofileincludes.h
1// Copyright (c) 1999-2018 David Muse
2// See the COPYING file for more information.
3
4#include <rudiments/object.h>
5
6#ifdef RUDIMENTS_HAVE_TERMIOS_H
7 #include <termios.h>
8#else
9 #define NCCS 32
10 struct termios {
11 uint32_t c_iflag;
12 uint32_t c_oflag;
13 uint32_t c_cflag;
14 uint32_t c_lflag;
15 byte_t c_cc[NCCS];
16 };
17#endif
18
Definition avltree.h:11
Definition serialportprofileincludes.h:10