ttycat.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * ttycat.c - serial port test program;
  11. *
  12. * write one or more files to a serial device;
  13. *
  14. *--------------------------------------------------------------------*/
  15. /*====================================================================*
  16. * system header files;
  17. *--------------------------------------------------------------------*/
  18. #include <stdlib.h>
  19. #include <limits.h>
  20. #include <memory.h>
  21. #include <signal.h>
  22. #include <termios.h>
  23. #include <unistd.h>
  24. /*====================================================================*
  25. * custom header files;
  26. *--------------------------------------------------------------------*/
  27. #include "../tools/getoptv.h"
  28. #include "../tools/putoptv.h"
  29. #include "../tools/number.h"
  30. #include "../tools/error.h"
  31. #include "../tools/files.h"
  32. #include "../serial/serial.h"
  33. /*====================================================================*
  34. * custom source files;
  35. *--------------------------------------------------------------------*/
  36. #ifndef MAKEFILE
  37. #include "../tools/getoptv.c"
  38. #include "../tools/putoptv.c"
  39. #include "../tools/version.c"
  40. #include "../tools/efreopen.c"
  41. #include "../tools/uintspec.c"
  42. #include "../tools/todigit.c"
  43. #include "../tools/error.c"
  44. #endif
  45. /*====================================================================*
  46. * program warnings;
  47. *--------------------------------------------------------------------*/
  48. #if defined (WIN32)
  49. #error "This program does not support Windows platforms"
  50. #endif
  51. /*====================================================================*
  52. *
  53. * signed copy (signed ifd, signed ofd, void * memory, signed extent)
  54. *
  55. * copy ifd to ofd using a buffer of specified size;
  56. *
  57. *--------------------------------------------------------------------*/
  58. static signed copy (signed ifd, signed ofd, void * memory, signed extent)
  59. {
  60. while ((extent = read (ifd, memory, extent)) > 0)
  61. {
  62. if (write (ofd, memory, extent) < extent)
  63. {
  64. return (- 1);
  65. }
  66. }
  67. return (0);
  68. }
  69. /*====================================================================*
  70. *
  71. * int main (int argc, char const * argv []);
  72. *
  73. *--------------------------------------------------------------------*/
  74. int main (int argc, char const * argv [])
  75. {
  76. static char const * optv [] =
  77. {
  78. "s:",
  79. PUTOPTV_S_FUNNEL,
  80. "copy one or more files to a serial device",
  81. "s n\tline speed is (n) [115200]",
  82. (char const *) (0)
  83. };
  84. struct termios restore;
  85. struct termios current;
  86. speed_t speed = B115200;
  87. byte buffer [512];
  88. signed c;
  89. while (~ (c = getoptv (argc, argv, optv)))
  90. {
  91. switch (c)
  92. {
  93. case 's':
  94. if (baudrate (uintspec (optarg, 0, UINT_MAX), & speed))
  95. {
  96. error (1, 0, "could not set baud rate");
  97. }
  98. break;
  99. default:
  100. break;
  101. }
  102. }
  103. argc -= optind;
  104. argv += optind;
  105. if (! isatty (STDOUT_FILENO))
  106. {
  107. error (1, ENOTSUP, "stdout must be a serial line device");
  108. }
  109. tcflush (STDOUT_FILENO, TCIFLUSH);
  110. tcgetattr (STDOUT_FILENO, & restore);
  111. memset (& current, 0, sizeof (current));
  112. current.c_cflag = speed | CS8 | CLOCAL | CREAD;
  113. current.c_iflag = IGNPAR;
  114. current.c_oflag = 0;
  115. current.c_lflag = 0;
  116. current.c_cc [VTIME] = 0;
  117. current.c_cc [VMIN] = 5;
  118. tcsetattr (STDOUT_FILENO, TCSANOW, & current);
  119. if (! argc)
  120. {
  121. copy (STDIN_FILENO, STDOUT_FILENO, buffer, sizeof (buffer));
  122. }
  123. while ((argc) && (* argv))
  124. {
  125. if (efreopen (* argv, "rb", stdin))
  126. {
  127. copy (STDIN_FILENO, STDOUT_FILENO, buffer, sizeof (buffer));
  128. }
  129. argc--;
  130. argv++;
  131. }
  132. tcsetattr (STDOUT_FILENO, TCSANOW, & restore);
  133. exit (0);
  134. }