#include #include #include #include #include int main() { int fd; struct termios tio; fd = open("/dev/ttyS0", O_RDWR | O_NOCTTY); printf("returned %d!\n", fd); cfmakeraw(&tio); tcsetattr(fd, TCSANOW, &tio); }