No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

132 líneas
4.7KB

  1. /* Teensyduino Core Library
  2. * http://www.pjrc.com/teensy/
  3. * Copyright (c) 2017 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. #pragma once
  31. #include "usb_desc.h"
  32. #if defined(SEREMU_INTERFACE) && !defined(CDC_STATUS_INTERFACE) && !defined(CDC_DATA_INTERFACE)
  33. #include <stdint.h>
  34. // C language implementation
  35. #ifdef __cplusplus
  36. extern "C" {
  37. #endif
  38. void usb_seremu_reset(void);
  39. void usb_seremu_configure(void);
  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. extern volatile uint8_t usb_configuration;
  49. #ifdef __cplusplus
  50. }
  51. #endif
  52. // C++ interface
  53. #ifdef __cplusplus
  54. #include "Stream.h"
  55. class usb_seremu_class : public Stream
  56. {
  57. public:
  58. constexpr usb_seremu_class() {}
  59. void begin(long) { /* TODO: call a function that tries to wait for enumeration */ };
  60. void end() { /* TODO: flush output and shut down USB port */ };
  61. virtual int available() { return usb_seremu_available(); }
  62. virtual int read() { return usb_seremu_getchar(); }
  63. virtual int peek() { return usb_seremu_peekchar(); }
  64. virtual void flush() { usb_seremu_flush_output(); }
  65. virtual size_t write(uint8_t c) { return usb_seremu_putchar(c); }
  66. virtual size_t write(const uint8_t *buffer, size_t size) { return usb_seremu_write(buffer, size); }
  67. size_t write(unsigned long n) { return write((uint8_t)n); }
  68. size_t write(long n) { return write((uint8_t)n); }
  69. size_t write(unsigned int n) { return write((uint8_t)n); }
  70. size_t write(int n) { return write((uint8_t)n); }
  71. virtual int availableForWrite() { return usb_seremu_write_buffer_free(); }
  72. using Print::write;
  73. void send_now(void) { usb_seremu_flush_output(); };
  74. uint32_t baud(void) { return 9600; }
  75. uint8_t stopbits(void) { return 1; }
  76. uint8_t paritytype(void) { return 0; }
  77. uint8_t numbits(void) { return 8; }
  78. uint8_t dtr(void) { return 1; }
  79. uint8_t rts(void) { return 1; }
  80. operator bool() { return usb_configuration; }
  81. };
  82. extern usb_seremu_class Serial;
  83. extern void serialEvent(void);
  84. #endif // __cplusplus
  85. #if 0
  86. // Allow Arduino programs using Serial to compile, but Serial will do nothing.
  87. #ifdef __cplusplus
  88. #include "Stream.h"
  89. class usb_seremu_class : public Stream
  90. {
  91. public:
  92. constexpr usb_seremu_class() {}
  93. void begin(long) { };
  94. void end() { };
  95. virtual int available() { return 0; }
  96. virtual int read() { return -1; }
  97. virtual int peek() { return -1; }
  98. virtual void flush() { }
  99. virtual size_t write(uint8_t c) { return 1; }
  100. virtual size_t write(const uint8_t *buffer, size_t size) { return size; }
  101. size_t write(unsigned long n) { return 1; }
  102. size_t write(long n) { return 1; }
  103. size_t write(unsigned int n) { return 1; }
  104. size_t write(int n) { return 1; }
  105. int availableForWrite() { return 0; }
  106. using Print::write;
  107. void send_now(void) { }
  108. uint32_t baud(void) { return 0; }
  109. uint8_t stopbits(void) { return 1; }
  110. uint8_t paritytype(void) { return 0; }
  111. uint8_t numbits(void) { return 8; }
  112. uint8_t dtr(void) { return 1; }
  113. uint8_t rts(void) { return 1; }
  114. operator bool() { return true; }
  115. };
  116. extern usb_seremu_class Serial;
  117. extern void serialEvent(void);
  118. #endif // __cplusplus
  119. #endif
  120. #endif // SEREMU_INTERFACE