Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

10 лет назад
10 лет назад
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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 USBseremu_h_
  31. #define USBseremu_h_
  32. #include "usb_desc.h"
  33. #if defined(SEREMU_INTERFACE)
  34. #include <inttypes.h>
  35. #if F_CPU >= 20000000
  36. // C language implementation
  37. #ifdef __cplusplus
  38. extern "C" {
  39. #endif
  40. int usb_seremu_getchar(void);
  41. int usb_seremu_peekchar(void);
  42. int usb_seremu_available(void);
  43. void usb_seremu_flush_input(void);
  44. int usb_seremu_putchar(uint8_t c);
  45. int usb_seremu_write(const void *buffer, uint32_t size);
  46. int usb_seremu_write_buffer_free(void);
  47. void usb_seremu_flush_output(void);
  48. void usb_seremu_flush_callback(void);
  49. extern volatile uint8_t usb_seremu_transmit_flush_timer;
  50. extern volatile uint8_t usb_configuration;
  51. #ifdef __cplusplus
  52. }
  53. #endif
  54. // C++ interface
  55. #ifdef __cplusplus
  56. #include "Stream.h"
  57. class usb_seremu_class : public Stream
  58. {
  59. public:
  60. constexpr usb_seremu_class() {}
  61. void begin(long) { /* TODO: call a function that tries to wait for enumeration */ };
  62. void end() { /* TODO: flush output and shut down USB port */ };
  63. virtual int available() { return usb_seremu_available(); }
  64. virtual int read() { return usb_seremu_getchar(); }
  65. virtual int peek() { return usb_seremu_peekchar(); }
  66. virtual void flush() { usb_seremu_flush_output(); }
  67. virtual size_t write(uint8_t c) { return usb_seremu_putchar(c); }
  68. virtual size_t write(const uint8_t *buffer, size_t size) { return usb_seremu_write(buffer, size); }
  69. size_t write(unsigned long n) { return write((uint8_t)n); }
  70. size_t write(long n) { return write((uint8_t)n); }
  71. size_t write(unsigned int n) { return write((uint8_t)n); }
  72. size_t write(int n) { return write((uint8_t)n); }
  73. virtual int availableForWrite() { return usb_seremu_write_buffer_free(); }
  74. using Print::write;
  75. void send_now(void) { usb_seremu_flush_output(); };
  76. uint32_t baud(void) { return 9600; }
  77. uint8_t stopbits(void) { return 1; }
  78. uint8_t paritytype(void) { return 0; }
  79. uint8_t numbits(void) { return 8; }
  80. uint8_t dtr(void) { return 1; }
  81. uint8_t rts(void) { return 1; }
  82. operator bool() { return usb_configuration; }
  83. };
  84. extern usb_seremu_class Serial;
  85. extern void serialEvent(void);
  86. #endif // __cplusplus
  87. #else // F_CPU < 20 MHz
  88. // Allow Arduino programs using Serial to compile, but Serial will do nothing.
  89. #ifdef __cplusplus
  90. #include "Stream.h"
  91. class usb_seremu_class : public Stream
  92. {
  93. public:
  94. constexpr usb_seremu_class() {}
  95. void begin(long) { };
  96. void end() { };
  97. virtual int available() { return 0; }
  98. virtual int read() { return -1; }
  99. virtual int peek() { return -1; }
  100. virtual void flush() { }
  101. virtual size_t write(uint8_t c) { return 1; }
  102. virtual size_t write(const uint8_t *buffer, size_t size) { return size; }
  103. size_t write(unsigned long n) { return 1; }
  104. size_t write(long n) { return 1; }
  105. size_t write(unsigned int n) { return 1; }
  106. size_t write(int n) { return 1; }
  107. int availableForWrite() { return 0; }
  108. using Print::write;
  109. void send_now(void) { }
  110. uint32_t baud(void) { return 0; }
  111. uint8_t stopbits(void) { return 1; }
  112. uint8_t paritytype(void) { return 0; }
  113. uint8_t numbits(void) { return 8; }
  114. uint8_t dtr(void) { return 1; }
  115. uint8_t rts(void) { return 1; }
  116. operator bool() { return true; }
  117. };
  118. extern usb_seremu_class Serial;
  119. extern void serialEvent(void);
  120. #endif // __cplusplus
  121. #endif // F_CPU
  122. #endif // SEREMU_INTERFACE
  123. #endif // USBseremu_h_