serial.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. #include <string.h>
  2. #include <stdlib.h>
  3. #include <stdarg.h>
  4. #include <errno.h>
  5. #include <unistd.h>
  6. #include <termios.h>
  7. #include <fcntl.h>
  8. #include <sys/ioctl.h>
  9. #include <sys/time.h>
  10. #include <sys/select.h>
  11. #include <serial.h>
  12. #include <sprog.h>
  13. int serial_setbaud_termios(struct termios *t, int baud);
  14. int serial_select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout);
  15. /* supported baud codes to use with cfsetispeed, cfsetospeed - keep sorted! */
  16. const struct baud_code baud_codes[] = {
  17. {50, B50},
  18. {75, B75},
  19. {110, B110},
  20. {134, B134},
  21. {150, B150},
  22. {200, B200},
  23. {300, B300},
  24. {600, B600},
  25. {1200, B1200},
  26. {1800, B1800},
  27. {2400, B2400},
  28. {4800, B4800},
  29. {9600, B9600},
  30. {19200, B19200},
  31. {38400, B38400},
  32. {57600, B57600},
  33. {115200, B115200},
  34. {230400, B230400},
  35. {-1, 0}
  36. };
  37. int serial_open(struct serial_device *port, const char *path, int baud) {
  38. struct termios attr;
  39. int fd;
  40. fd = open(path, O_RDWR);
  41. if(fd<0) {
  42. sprog_error("Unable to open serial port %s: %s\n", path, strerror(errno));
  43. exit(1);
  44. }
  45. tcgetattr(fd, &attr);
  46. /* 8 data bits, 1 stop bit, no parity */
  47. attr.c_iflag = IGNBRK;
  48. attr.c_oflag &= ~(OPOST | OLCUC | ONOCR | ONLRET | ONLCR);
  49. attr.c_cflag = CS8 | CREAD | CLOCAL;
  50. attr.c_lflag = ICANON;
  51. serial_setbaud_termios(&attr, baud);
  52. tcsetattr(fd, TCSANOW, &attr);
  53. port->fd = fd;
  54. return fd;
  55. }
  56. void serial_close(struct serial_device *port) {
  57. close(port->fd);
  58. }
  59. int serial_setbaud(struct serial_device *port, int baud) {
  60. struct termios attr;
  61. tcgetattr(port->fd, &attr);
  62. baud = serial_setbaud_termios(&attr, baud);
  63. tcsetattr(port->fd, TCSANOW, &attr);
  64. return baud;
  65. }
  66. int serial_setbaud_termios(struct termios *t, int baud) {
  67. int i;
  68. int baudcode;
  69. /* find the corresponding baud code */
  70. for(i=0; baud_codes[i].baud>0; i++) {
  71. if(baud_codes[i].baud == baud)
  72. break;
  73. if(baud_codes[i].baud > baud) {
  74. if(i>0) i--;
  75. break;
  76. }
  77. }
  78. /* if the selected baud rate is greater than any of available rates, set the highest one */
  79. if(baud_codes[i].baud<=0) i--;
  80. if(baud_codes[i].baud != baud)
  81. sprog_error("Unsupported baud rate %d, using the nearest value %d\n", baud, baud_codes[i].baud);
  82. baudcode = baud_codes[i].code;
  83. cfsetispeed(t, baudcode);
  84. cfsetospeed(t, baudcode);
  85. return baud_codes[i].baud;
  86. }
  87. void serial_setline(struct serial_device *port, int line, int state) {
  88. int bits;
  89. int mask;
  90. if(line==SERIAL_DTR)
  91. mask = TIOCM_DTR;
  92. else
  93. mask = TIOCM_RTS;
  94. ioctl(port->fd, TIOCMGET, &bits);
  95. if(state)
  96. bits |= mask;
  97. else
  98. bits &= ~mask;
  99. ioctl(port->fd, TIOCMSET, &bits);
  100. }
  101. void serial_write(struct serial_device *port, const char *text) {
  102. int i;
  103. int b;
  104. int bytes;
  105. bytes = strlen(text);
  106. i = 0;
  107. while(bytes-i>0) {
  108. b = write(port->fd, &text[i], bytes-i);
  109. if(b<0) {
  110. sprog_error("Error while writing to the serial port: %s\n", strerror(errno));
  111. break;
  112. }
  113. i += b;
  114. }
  115. }
  116. int serial_read(struct serial_device *port, char *buf, int len, int timeout) {
  117. int bytes;
  118. fd_set readset;
  119. struct timeval tval;
  120. FD_ZERO(&readset);
  121. FD_SET(port->fd, &readset);
  122. tval.tv_sec = timeout/1000;
  123. tval.tv_usec = (timeout % 1000) * 1000;
  124. bytes = 0;
  125. while((serial_select(port->fd+1, &readset, NULL, NULL, &tval)>0) && (len-bytes)>0) {
  126. if(FD_ISSET(port->fd, &readset))
  127. bytes += read(port->fd, &buf[bytes], len-bytes);
  128. }
  129. return bytes;
  130. }
  131. int serial_select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout) {
  132. int res;
  133. /* Linux automatically subtracts the time elapsed on awaiting
  134. * for an event when calling select(), The following code unifices
  135. * the behaviour under different implementations of UNIX.
  136. */
  137. #ifndef __linux__
  138. struct timeval start_time
  139. struct timeval cur_time;
  140. long int remaining;
  141. gettimeofday(&start_time, NULL);
  142. res = pselect(nfds, readfds, writefds, exceptfds, timeout, NULL)
  143. gettimeofday(&cur_time, NULL);
  144. remaining = (timeout->tv_sec - (cur_time.tv_sec - start_time.tv_sec))*1000000 + timeout->tv_usec - (cur_time.tv_usec - start_time.tv_usec);
  145. if(remaining<0) remaining = 0;
  146. timeout.tv_sec = remaining/1000000;
  147. timeout.tv_usec = remmaining%1000000;
  148. #else
  149. res = select(nfds, readfds, writefds, exceptfds, timeout);
  150. #endif
  151. return res;
  152. }