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.

146 lines
5.6KB

  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 <inttypes.h>
  33. #if (F_CPU >= 20000000) && (defined(USB_SERIAL) || defined(USB_SERIAL_HID))
  34. // C language implementation
  35. #ifdef __cplusplus
  36. extern "C" {
  37. #endif
  38. int usb_serial_getchar(void);
  39. int usb_serial_peekchar(void);
  40. int usb_serial_available(void);
  41. int usb_serial_read(void *buffer, uint32_t size);
  42. void usb_serial_flush_input(void);
  43. int usb_serial_putchar(uint8_t c);
  44. int usb_serial_write(const void *buffer, uint32_t size);
  45. int usb_serial_write_buffer_free(void);
  46. void usb_serial_flush_output(void);
  47. extern uint32_t usb_cdc_line_coding[2];
  48. extern volatile uint8_t usb_cdc_line_rtsdtr;
  49. extern volatile uint8_t usb_cdc_transmit_flush_timer;
  50. extern volatile uint8_t usb_configuration;
  51. #ifdef __cplusplus
  52. }
  53. #endif
  54. #define USB_SERIAL_DTR 0x01
  55. #define USB_SERIAL_RTS 0x02
  56. // C++ interface
  57. #ifdef __cplusplus
  58. #include "Stream.h"
  59. class usb_serial_class : public Stream
  60. {
  61. public:
  62. void begin(long) { /* TODO: call a function that tries to wait for enumeration */ };
  63. void end() { /* TODO: flush output and shut down USB port */ };
  64. virtual int available() { return usb_serial_available(); }
  65. virtual int read() { return usb_serial_getchar(); }
  66. virtual int peek() { return usb_serial_peekchar(); }
  67. virtual void flush() { usb_serial_flush_output(); } // TODO: actually wait for data to leave USB...
  68. virtual size_t write(uint8_t c) { return usb_serial_putchar(c); }
  69. virtual size_t write(const uint8_t *buffer, size_t size) { return usb_serial_write(buffer, size); }
  70. size_t write(unsigned long n) { return write((uint8_t)n); }
  71. size_t write(long n) { return write((uint8_t)n); }
  72. size_t write(unsigned int n) { return write((uint8_t)n); }
  73. size_t write(int n) { return write((uint8_t)n); }
  74. int availableForWrite() { return usb_serial_write_buffer_free(); }
  75. using Print::write;
  76. void send_now(void) { usb_serial_flush_output(); }
  77. uint32_t baud(void) { return usb_cdc_line_coding[0]; }
  78. uint8_t stopbits(void) { uint8_t b = usb_cdc_line_coding[1]; if (!b) b = 1; return b; }
  79. uint8_t paritytype(void) { return usb_cdc_line_coding[1] >> 8; } // 0=none, 1=odd, 2=even
  80. uint8_t numbits(void) { return usb_cdc_line_coding[1] >> 16; }
  81. uint8_t dtr(void) { return (usb_cdc_line_rtsdtr & USB_SERIAL_DTR) ? 1 : 0; }
  82. uint8_t rts(void) { return (usb_cdc_line_rtsdtr & USB_SERIAL_RTS) ? 1 : 0; }
  83. operator bool() { return usb_configuration && (usb_cdc_line_rtsdtr & (USB_SERIAL_DTR | USB_SERIAL_RTS)); }
  84. size_t readBytes(char *buffer, size_t length) {
  85. size_t count=0;
  86. unsigned long startMillis = millis();
  87. do {
  88. count += usb_serial_read(buffer + count, length - count);
  89. if (count >= length) return count;
  90. } while(millis() - startMillis < _timeout);
  91. setReadError();
  92. return count;
  93. }
  94. };
  95. extern usb_serial_class Serial;
  96. extern void serialEvent(void);
  97. #endif // __cplusplus
  98. #elif (F_CPU < 20000000) && (defined(USB_SERIAL) || defined(USB_SERIAL_HID))
  99. // Allow Arduino programs using Serial to compile, but Serial will do nothing.
  100. #ifdef __cplusplus
  101. #include "Stream.h"
  102. class usb_serial_class : public Stream
  103. {
  104. public:
  105. void begin(long) { };
  106. void end() { };
  107. virtual int available() { return 0; }
  108. virtual int read() { return -1; }
  109. virtual int peek() { return -1; }
  110. virtual void flush() { }
  111. virtual size_t write(uint8_t c) { return 1; }
  112. virtual size_t write(const uint8_t *buffer, size_t size) { return size; }
  113. size_t write(unsigned long n) { return 1; }
  114. size_t write(long n) { return 1; }
  115. size_t write(unsigned int n) { return 1; }
  116. size_t write(int n) { return 1; }
  117. int availableForWrite() { return 0; }
  118. using Print::write;
  119. void send_now(void) { }
  120. uint32_t baud(void) { return 0; }
  121. uint8_t stopbits(void) { return 1; }
  122. uint8_t paritytype(void) { return 0; }
  123. uint8_t numbits(void) { return 8; }
  124. uint8_t dtr(void) { return 1; }
  125. uint8_t rts(void) { return 1; }
  126. operator bool() { return true; }
  127. };
  128. extern usb_serial_class Serial;
  129. extern void serialEvent(void);
  130. #endif // __cplusplus
  131. #endif // F_CPU && USB_SERIAL || USB_SERIAL_HID
  132. #endif // USBserial_h_