serial.c 4.3 KB

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