serial.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * serial.h - Qualcomm Atheros Serial Line Definitions and declarations;
  11. *
  12. * Contributor(s):
  13. * Charles Maier <cmaier@qca.qualcomm.com>
  14. *
  15. *--------------------------------------------------------------------*/
  16. #ifndef SERIAL_HEADER
  17. #define SERIAL_HEADER
  18. /*====================================================================*
  19. * system header files;
  20. *--------------------------------------------------------------------*/
  21. #include <ctype.h>
  22. #ifndef WIN32
  23. #include <termios.h>
  24. #endif
  25. /*====================================================================*
  26. * custom header files;
  27. *--------------------------------------------------------------------*/
  28. #include "../tools/types.h"
  29. /*====================================================================*
  30. *
  31. *--------------------------------------------------------------------*/
  32. #if defined (WIN32)
  33. # define DEVICE "com1:"
  34. # define PAUSE(x) Sleep (x)
  35. #else
  36. # define DEVICE "/dev/ttyUSB0"
  37. # define PAUSE(x) usleep ((x)*1000)
  38. #endif
  39. /*====================================================================*
  40. *
  41. *--------------------------------------------------------------------*/
  42. #define UART_MODE 0
  43. #define UART_BAUDRATE 115200
  44. #define UART_DATABITS 8
  45. #define UART_STOPBITS 1
  46. #define UART_PARITY 0
  47. #define UART_FLOWCTRL 0
  48. #define UART_BUFFERSIZE 4096
  49. #define UART_BLOCKSIZE 512
  50. #define UART_PORT "PLCUART"
  51. /*====================================================================*
  52. * Atheros Serial Line Command flags;
  53. *--------------------------------------------------------------------*/
  54. #define UART_SILENCE (1 << 0)
  55. #define UART_VERBOSE (1 << 1)
  56. #define UART_DEFAULT (1 << 2)
  57. #define UART_COMMAND (1 << 3)
  58. #define UART_WAKE (1 << 4)
  59. #define UART_RESPOND (1 << 5)
  60. #define UART_ATRV (1 << 6)
  61. #define UART_ATRPM (1 << 7)
  62. #define UART_ATSK1 (1 << 8)
  63. #define UART_ATSK2 (1 << 9)
  64. #define UART_ATZ (1 << 10)
  65. #define UART_ATDST1 (1 << 11)
  66. #define UART_ATDST2 (1 << 12)
  67. #define UART_ATNI (1 << 13)
  68. #define UART_ATFD (1 << 14)
  69. #define UART_ATPS (1 << 15)
  70. #define UART_ATO (1 << 16)
  71. #define UART_ATHSC (1 << 17)
  72. #define UART_ATRP (1 << 18)
  73. #define UART_ATWPF1 (1 << 19)
  74. #define UART_ATWPF2 (1 << 20)
  75. #define UART_ATWNV (1 << 21)
  76. #define UART_ATBSZ1 (1 << 22)
  77. #define UART_ATBSZ2 (1 << 23)
  78. #define UART_ATTO (1 << 24)
  79. #define UART_ATBR (1 << 25)
  80. #define UART_ATM (1 << 26)
  81. /*====================================================================*
  82. *
  83. * struct command;
  84. *
  85. * structure containing serial command buffer and two pointers; the
  86. * buffer is used for both transmit and receive and shared by most
  87. * function below;
  88. *
  89. *--------------------------------------------------------------------*/
  90. typedef struct command
  91. {
  92. char buffer [UART_BUFFERSIZE];
  93. unsigned length;
  94. unsigned offset;
  95. }
  96. COMMAND;
  97. /*====================================================================*
  98. *
  99. *--------------------------------------------------------------------*/
  100. #ifndef WIN32
  101. signed baudrate (unsigned rate, speed_t * speed);
  102. #endif
  103. void openport (struct _file_ * port, flag_t mode);
  104. void closeport (struct _file_ * port);
  105. /*====================================================================*
  106. * serial command line buffer functions;
  107. *--------------------------------------------------------------------*/
  108. void clearcommand ();
  109. void sendcommand (struct _file_ * port, flag_t flags);
  110. void readcommand (struct _file_ * port, flag_t flags);
  111. void insert (char c);
  112. size_t readframe (signed fd, void * memory, size_t extent);
  113. void decode (void const * memory, size_t extent);
  114. void encode (void * memory, size_t extent);
  115. void string (char * string);
  116. uint64_t hextoint (unsigned bytes);
  117. void mustbe (char c); ;
  118. /*====================================================================*
  119. *
  120. *--------------------------------------------------------------------*/
  121. #endif