You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

233 lines
5.9 KiB

  1. /*
  2. * wiringSerial.c:
  3. * Handle a serial port
  4. ***********************************************************************
  5. * This file is part of wiringPi:
  6. * https://github.com/WiringPi/WiringPi/
  7. *
  8. * wiringPi is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU Lesser General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * wiringPi is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public License
  19. * along with wiringPi. If not, see <http://www.gnu.org/licenses/>.
  20. ***********************************************************************
  21. */
  22. #include <stdio.h>
  23. #include <stdlib.h>
  24. #include <stdint.h>
  25. #include <stdarg.h>
  26. #include <string.h>
  27. #include <termios.h>
  28. #include <unistd.h>
  29. #include <fcntl.h>
  30. #include <sys/ioctl.h>
  31. #include <sys/types.h>
  32. #include <sys/stat.h>
  33. #include "wiringSerial.h"
  34. /*
  35. * serialOpen:
  36. * Open and initialise the serial port, setting all the right
  37. * port parameters - or as many as are required - hopefully!
  38. *********************************************************************************
  39. */
  40. int serialOpen (const char *device, const int baud)
  41. {
  42. struct termios options ;
  43. speed_t myBaud ;
  44. int status, fd ;
  45. switch (baud)
  46. {
  47. case 50: myBaud = B50 ; break ;
  48. case 75: myBaud = B75 ; break ;
  49. case 110: myBaud = B110 ; break ;
  50. case 134: myBaud = B134 ; break ;
  51. case 150: myBaud = B150 ; break ;
  52. case 200: myBaud = B200 ; break ;
  53. case 300: myBaud = B300 ; break ;
  54. case 600: myBaud = B600 ; break ;
  55. case 1200: myBaud = B1200 ; break ;
  56. case 1800: myBaud = B1800 ; break ;
  57. case 2400: myBaud = B2400 ; break ;
  58. case 4800: myBaud = B4800 ; break ;
  59. case 9600: myBaud = B9600 ; break ;
  60. case 19200: myBaud = B19200 ; break ;
  61. case 38400: myBaud = B38400 ; break ;
  62. case 57600: myBaud = B57600 ; break ;
  63. case 115200: myBaud = B115200 ; break ;
  64. case 230400: myBaud = B230400 ; break ;
  65. case 460800: myBaud = B460800 ; break ;
  66. case 500000: myBaud = B500000 ; break ;
  67. case 576000: myBaud = B576000 ; break ;
  68. case 921600: myBaud = B921600 ; break ;
  69. case 1000000: myBaud = B1000000 ; break ;
  70. case 1152000: myBaud = B1152000 ; break ;
  71. case 1500000: myBaud = B1500000 ; break ;
  72. case 2000000: myBaud = B2000000 ; break ;
  73. case 2500000: myBaud = B2500000 ; break ;
  74. case 3000000: myBaud = B3000000 ; break ;
  75. case 3500000: myBaud = B3500000 ; break ;
  76. case 4000000: myBaud = B4000000 ; break ;
  77. default:
  78. return -2 ;
  79. }
  80. if ((fd = open (device, O_RDWR | O_NOCTTY | O_NDELAY | O_NONBLOCK)) == -1)
  81. return -1 ;
  82. fcntl (fd, F_SETFL, O_RDWR) ;
  83. // Get and modify current options:
  84. tcgetattr (fd, &options) ;
  85. cfmakeraw (&options) ;
  86. cfsetispeed (&options, myBaud) ;
  87. cfsetospeed (&options, myBaud) ;
  88. options.c_cflag |= (CLOCAL | CREAD) ;
  89. options.c_cflag &= ~PARENB ;
  90. options.c_cflag &= ~CSTOPB ;
  91. options.c_cflag &= ~CSIZE ;
  92. options.c_cflag |= CS8 ;
  93. options.c_lflag &= ~(ICANON | ECHO | ECHOE | ISIG) ;
  94. options.c_oflag &= ~OPOST ;
  95. options.c_cc [VMIN] = 0 ;
  96. options.c_cc [VTIME] = 100 ; // Ten seconds (100 deciseconds)
  97. tcsetattr (fd, TCSANOW, &options) ;
  98. ioctl (fd, TIOCMGET, &status);
  99. status |= TIOCM_DTR ;
  100. status |= TIOCM_RTS ;
  101. ioctl (fd, TIOCMSET, &status);
  102. usleep (10000) ; // 10mS
  103. return fd ;
  104. }
  105. /*
  106. * serialFlush:
  107. * Flush the serial buffers (both tx & rx)
  108. *********************************************************************************
  109. */
  110. void serialFlush (const int fd)
  111. {
  112. tcflush (fd, TCIOFLUSH) ;
  113. }
  114. /*
  115. * serialClose:
  116. * Release the serial port
  117. *********************************************************************************
  118. */
  119. void serialClose (const int fd)
  120. {
  121. close (fd) ;
  122. }
  123. /*
  124. * serialPutchar:
  125. * Send a single character to the serial port
  126. *********************************************************************************
  127. */
  128. void serialPutchar(const int fd, const unsigned char c)
  129. {
  130. ssize_t bytes_written = write(fd, &c, 1);
  131. if (bytes_written != 1) {
  132. perror("Error writing to file descriptor");
  133. }
  134. }
  135. /*
  136. * serialPuts:
  137. * Send a string to the serial port
  138. *********************************************************************************
  139. */
  140. void serialPuts(const int fd, const char *s)
  141. {
  142. size_t len = strlen(s);
  143. ssize_t bytes_written = write(fd, s, len);
  144. if (bytes_written != (ssize_t)len) {
  145. perror("Error writing to file descriptor");
  146. }
  147. }
  148. /*
  149. * serialPrintf:
  150. * Printf over Serial
  151. *********************************************************************************
  152. */
  153. void serialPrintf (const int fd, const char *message, ...)
  154. {
  155. va_list argp ;
  156. char buffer [1024] ;
  157. va_start (argp, message) ;
  158. vsnprintf (buffer, 1023, message, argp) ;
  159. va_end (argp) ;
  160. serialPuts (fd, buffer) ;
  161. }
  162. /*
  163. * serialDataAvail:
  164. * Return the number of bytes of data avalable to be read in the serial port
  165. *********************************************************************************
  166. */
  167. int serialDataAvail (const int fd)
  168. {
  169. int result ;
  170. if (ioctl (fd, FIONREAD, &result) == -1)
  171. return -1 ;
  172. return result ;
  173. }
  174. /*
  175. * serialGetchar:
  176. * Get a single character from the serial device.
  177. * Note: Zero is a valid character and this function will time-out after
  178. * 10 seconds.
  179. *********************************************************************************
  180. */
  181. int serialGetchar (const int fd)
  182. {
  183. uint8_t x ;
  184. if (read (fd, &x, 1) != 1)
  185. return -1 ;
  186. return ((int)x) & 0xFF ;
  187. }