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.

109 lines
3.1KB

  1. /* Teensyduino Core Library
  2. * http://www.pjrc.com/teensy/
  3. * Copyright (c) 2019 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. #include "usb_dev.h"
  31. #include "usb_seremu.h"
  32. #include "core_pins.h" // for yield()
  33. //#include "HardwareSerial.h"
  34. #ifdef SEREMU_INTERFACE // defined by usb_dev.h -> usb_desc.h
  35. volatile uint8_t usb_seremu_transmit_flush_timer=0;
  36. //static volatile uint8_t tx_noautoflush=0;
  37. #define TRANSMIT_FLUSH_TIMEOUT 5 /* in milliseconds */
  38. // get the next character, or -1 if nothing received
  39. int usb_seremu_getchar(void)
  40. {
  41. return -1;
  42. }
  43. // peek at the next character, or -1 if nothing received
  44. int usb_seremu_peekchar(void)
  45. {
  46. return -1;
  47. }
  48. // number of bytes available in the receive buffer
  49. int usb_seremu_available(void)
  50. {
  51. return 0;
  52. }
  53. // discard any buffered input
  54. void usb_seremu_flush_input(void)
  55. {
  56. }
  57. // When the PC isn't listening, how long do we wait before discarding data? If this is
  58. // too short, we risk losing data during the stalls that are common with ordinary desktop
  59. // software. If it's too long, we stall the user's program when no software is running.
  60. #define TX_TIMEOUT_MSEC 30
  61. // When we've suffered the transmit timeout, don't wait again until the computer
  62. // begins accepting data. If no software is running to receive, we'll just discard
  63. // data as rapidly as Serial.print() can generate it, until there's something to
  64. // actually receive it.
  65. static uint8_t transmit_previous_timeout=0;
  66. // transmit a character. 0 returned on success, -1 on error
  67. int usb_seremu_putchar(uint8_t c)
  68. {
  69. return usb_seremu_write(&c, 1);
  70. }
  71. int usb_seremu_write(const void *buffer, uint32_t size)
  72. {
  73. return 0;
  74. }
  75. int usb_seremu_write_buffer_free(void)
  76. {
  77. return 1;
  78. }
  79. void usb_seremu_flush_output(void)
  80. {
  81. }
  82. void usb_seremu_flush_callback(void)
  83. {
  84. }
  85. #endif // SEREMU_INTERFACE