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.
 
 
 
 
 

213 lines
5.0 KiB

  1. /*
  2. * wiringSerial.c:
  3. * Handle a serial port
  4. ***********************************************************************
  5. * This file is part of wiringPi:
  6. * https://projects.drogon.net/raspberry-pi/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 (char *device, 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 9600: myBaud = B9600 ; break ;
  59. case 19200: myBaud = B19200 ; break ;
  60. case 38400: myBaud = B38400 ; break ;
  61. case 57600: myBaud = B57600 ; break ;
  62. case 115200: myBaud = B115200 ; break ;
  63. case 230400: myBaud = B230400 ; break ;
  64. default:
  65. return -2 ;
  66. }
  67. if ((fd = open (device, O_RDWR | O_NOCTTY | O_NDELAY | O_NONBLOCK)) == -1)
  68. return -1 ;
  69. fcntl (fd, F_SETFL, O_RDWR) ;
  70. // Get and modify current options:
  71. tcgetattr (fd, &options) ;
  72. cfmakeraw (&options) ;
  73. cfsetispeed (&options, myBaud) ;
  74. cfsetospeed (&options, myBaud) ;
  75. options.c_cflag |= (CLOCAL | CREAD) ;
  76. options.c_cflag &= ~PARENB ;
  77. options.c_cflag &= ~CSTOPB ;
  78. options.c_cflag &= ~CSIZE ;
  79. options.c_cflag |= CS8 ;
  80. options.c_lflag &= ~(ICANON | ECHO | ECHOE | ISIG) ;
  81. options.c_oflag &= ~OPOST ;
  82. options.c_cc [VMIN] = 0 ;
  83. options.c_cc [VTIME] = 100 ; // Ten seconds (100 deciseconds)
  84. tcsetattr (fd, TCSANOW | TCSAFLUSH, &options) ;
  85. ioctl (fd, TIOCMGET, &status);
  86. status |= TIOCM_DTR ;
  87. status |= TIOCM_RTS ;
  88. ioctl (fd, TIOCMSET, &status);
  89. usleep (10000) ; // 10mS
  90. return fd ;
  91. }
  92. /*
  93. * serialFlush:
  94. * Flush the serial buffers (both tx & rx)
  95. *********************************************************************************
  96. */
  97. void serialFlush (int fd)
  98. {
  99. tcflush (fd, TCIOFLUSH) ;
  100. }
  101. /*
  102. * serialClose:
  103. * Release the serial port
  104. *********************************************************************************
  105. */
  106. void serialClose (int fd)
  107. {
  108. close (fd) ;
  109. }
  110. /*
  111. * serialPutchar:
  112. * Send a single character to the serial port
  113. *********************************************************************************
  114. */
  115. void serialPutchar (int fd, unsigned char c)
  116. {
  117. write (fd, &c, 1) ;
  118. }
  119. /*
  120. * serialPuts:
  121. * Send a string to the serial port
  122. *********************************************************************************
  123. */
  124. void serialPuts (int fd, char *s)
  125. {
  126. write (fd, s, strlen (s)) ;
  127. }
  128. /*
  129. * serialPrintf:
  130. * Printf over Serial
  131. *********************************************************************************
  132. */
  133. void serialPrintf (int fd, char *message, ...)
  134. {
  135. va_list argp ;
  136. char buffer [1024] ;
  137. va_start (argp, message) ;
  138. vsnprintf (buffer, 1023, message, argp) ;
  139. va_end (argp) ;
  140. serialPuts (fd, buffer) ;
  141. }
  142. /*
  143. * serialDataAvail:
  144. * Return the number of bytes of data avalable to be read in the serial port
  145. *********************************************************************************
  146. */
  147. int serialDataAvail (int fd)
  148. {
  149. int result ;
  150. if (ioctl (fd, FIONREAD, &result) == -1)
  151. return -1 ;
  152. return result ;
  153. }
  154. /*
  155. * serialGetchar:
  156. * Get a single character from the serial device.
  157. * Note: Zero is a valid character and this function will time-out after
  158. * 10 seconds.
  159. *********************************************************************************
  160. */
  161. int serialGetchar (int fd)
  162. {
  163. uint8_t x ;
  164. if (read (fd, &x, 1) != 1)
  165. return -1 ;
  166. return ((int)x) & 0xFF ;
  167. }