Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

usb_serial.h 5.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. /* Teensyduino Core Library
  2. * http://www.pjrc.com/teensy/
  3. * Copyright (c) 2013 PJRC.COM, LLC.
  4. *
  5. * Permission is hereby granted, free of charge, to any person obtaining
  6. * a copy of this software and associated documentation files (the
  7. * "Software"), to deal in the Software without restriction, including
  8. * without limitation the rights to use, copy, modify, merge, publish,
  9. * distribute, sublicense, and/or sell copies of the Software, and to
  10. * permit persons to whom the Software is furnished to do so, subject to
  11. * the following conditions:
  12. *
  13. * 1. The above copyright notice and this permission notice shall be
  14. * included in all copies or substantial portions of the Software.
  15. *
  16. * 2. If the Software is incorporated into a build system that allows
  17. * selection among a list of target devices, then similar target
  18. * devices manufactured by PJRC.COM must be included in the list of
  19. * target devices and selectable in the same manner.
  20. *
  21. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  22. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  23. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  24. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  25. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  26. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  27. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  28. * SOFTWARE.
  29. */
  30. #ifndef USBserial_h_
  31. #define USBserial_h_
  32. #include "usb_desc.h"
  33. #if (defined(CDC_STATUS_INTERFACE) && defined(CDC_DATA_INTERFACE)) || defined(USB_DISABLED)
  34. #include <inttypes.h>
  35. #if F_CPU >= 20000000 && !defined(USB_DISABLED)
  36. // C language implementation
  37. #ifdef __cplusplus
  38. extern "C" {
  39. #endif
  40. int usb_serial_getchar(void);
  41. int usb_serial_peekchar(void);
  42. int usb_serial_available(void);
  43. int usb_serial_read(void *buffer, uint32_t size);
  44. void usb_serial_flush_input(void);
  45. int usb_serial_putchar(uint8_t c);
  46. int usb_serial_write(const void *buffer, uint32_t size);
  47. int usb_serial_write_buffer_free(void);
  48. void usb_serial_flush_output(void);
  49. extern uint32_t usb_cdc_line_coding[2];
  50. extern volatile uint8_t usb_cdc_line_rtsdtr;
  51. extern volatile uint8_t usb_cdc_transmit_flush_timer;
  52. extern volatile uint8_t usb_configuration;
  53. #ifdef __cplusplus
  54. }
  55. #endif
  56. #define USB_SERIAL_DTR 0x01
  57. #define USB_SERIAL_RTS 0x02
  58. // C++ interface
  59. #ifdef __cplusplus
  60. #include "Stream.h"
  61. class usb_serial_class : public Stream
  62. {
  63. public:
  64. void begin(long) { /* TODO: call a function that tries to wait for enumeration */ };
  65. void end() { /* TODO: flush output and shut down USB port */ };
  66. virtual int available() { return usb_serial_available(); }
  67. virtual int read() { return usb_serial_getchar(); }
  68. virtual int peek() { return usb_serial_peekchar(); }
  69. virtual void flush() { usb_serial_flush_output(); } // TODO: actually wait for data to leave USB...
  70. virtual size_t write(uint8_t c) { return usb_serial_putchar(c); }
  71. virtual size_t write(const uint8_t *buffer, size_t size) { return usb_serial_write(buffer, size); }
  72. size_t write(unsigned long n) { return write((uint8_t)n); }
  73. size_t write(long n) { return write((uint8_t)n); }
  74. size_t write(unsigned int n) { return write((uint8_t)n); }
  75. size_t write(int n) { return write((uint8_t)n); }
  76. int availableForWrite() { return usb_serial_write_buffer_free(); }
  77. using Print::write;
  78. void send_now(void) { usb_serial_flush_output(); }
  79. uint32_t baud(void) { return usb_cdc_line_coding[0]; }
  80. uint8_t stopbits(void) { uint8_t b = usb_cdc_line_coding[1]; if (!b) b = 1; return b; }
  81. uint8_t paritytype(void) { return usb_cdc_line_coding[1] >> 8; } // 0=none, 1=odd, 2=even
  82. uint8_t numbits(void) { return usb_cdc_line_coding[1] >> 16; }
  83. uint8_t dtr(void) { return (usb_cdc_line_rtsdtr & USB_SERIAL_DTR) ? 1 : 0; }
  84. uint8_t rts(void) { return (usb_cdc_line_rtsdtr & USB_SERIAL_RTS) ? 1 : 0; }
  85. operator bool() { return usb_configuration && (usb_cdc_line_rtsdtr & (USB_SERIAL_DTR | USB_SERIAL_RTS)); }
  86. size_t readBytes(char *buffer, size_t length) {
  87. size_t count=0;
  88. unsigned long startMillis = millis();
  89. do {
  90. count += usb_serial_read(buffer + count, length - count);
  91. if (count >= length) return count;
  92. } while(millis() - startMillis < _timeout);
  93. setReadError();
  94. return count;
  95. }
  96. };
  97. extern usb_serial_class Serial;
  98. extern void serialEvent(void);
  99. #endif // __cplusplus
  100. #else // F_CPU < 20000000
  101. // Allow Arduino programs using Serial to compile, but Serial will do nothing.
  102. #ifdef __cplusplus
  103. #include "Stream.h"
  104. class usb_serial_class : public Stream
  105. {
  106. public:
  107. void begin(long) { };
  108. void end() { };
  109. virtual int available() { return 0; }
  110. virtual int read() { return -1; }
  111. virtual int peek() { return -1; }
  112. virtual void flush() { }
  113. virtual size_t write(uint8_t c) { return 1; }
  114. virtual size_t write(const uint8_t *buffer, size_t size) { return size; }
  115. size_t write(unsigned long n) { return 1; }
  116. size_t write(long n) { return 1; }
  117. size_t write(unsigned int n) { return 1; }
  118. size_t write(int n) { return 1; }
  119. int availableForWrite() { return 0; }
  120. using Print::write;
  121. void send_now(void) { }
  122. uint32_t baud(void) { return 0; }
  123. uint8_t stopbits(void) { return 1; }
  124. uint8_t paritytype(void) { return 0; }
  125. uint8_t numbits(void) { return 8; }
  126. uint8_t dtr(void) { return 1; }
  127. uint8_t rts(void) { return 1; }
  128. operator bool() { return true; }
  129. };
  130. extern usb_serial_class Serial;
  131. extern void serialEvent(void);
  132. #endif // __cplusplus
  133. #endif // F_CPU
  134. #endif // CDC_STATUS_INTERFACE && CDC_DATA_INTERFACE
  135. #endif // USBserial_h_