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.

115 lines
4.0KB

  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. #include "usb_dev.h"
  31. #include "usb_rawhid.h"
  32. #include "core_pins.h" // for yield(), millis()
  33. #include <string.h> // for memcpy()
  34. //#include "HardwareSerial.h"
  35. #include "debug/printf.h"
  36. #ifdef RAWHID_INTERFACE // defined by usb_dev.h -> usb_desc.h
  37. #define TX_NUM 4
  38. static transfer_t tx_transfer[TX_NUM] __attribute__ ((used, aligned(32)));
  39. static uint8_t txbuffer[RAWHID_TX_SIZE * TX_NUM];
  40. static uint8_t tx_head=0;
  41. static transfer_t rx_transfer[1] __attribute__ ((used, aligned(32)));
  42. static uint8_t rx_buffer[RAWHID_RX_SIZE];
  43. extern volatile uint8_t usb_configuration;
  44. static void rx_event(transfer_t *t)
  45. {
  46. //printf("rx\n");
  47. }
  48. void usb_rawhid_configure(void)
  49. {
  50. printf("usb_rawhid_configure\n");
  51. memset(tx_transfer, 0, sizeof(tx_transfer));
  52. memset(rx_transfer, 0, sizeof(rx_transfer));
  53. tx_head = 0;
  54. usb_config_tx(RAWHID_TX_ENDPOINT, RAWHID_TX_SIZE, 0, NULL);
  55. usb_config_rx(RAWHID_RX_ENDPOINT, RAWHID_RX_SIZE, 0, rx_event);
  56. //usb_config_rx(RAWHID_RX_ENDPOINT, RAWHID_RX_SIZE, 0, NULL); // why does this not work?
  57. usb_prepare_transfer(rx_transfer + 0, rx_buffer, RAWHID_RX_SIZE, 0);
  58. usb_receive(RAWHID_RX_ENDPOINT, rx_transfer + 0);
  59. }
  60. int usb_rawhid_recv(void *buffer, uint32_t timeout)
  61. {
  62. uint32_t wait_begin_at = systick_millis_count;
  63. while (1) {
  64. if (!usb_configuration) return -1; // usb not enumerated by host
  65. uint32_t status = usb_transfer_status(rx_transfer);
  66. if (!(status & 0x80)) break; // transfer descriptor ready
  67. if (systick_millis_count - wait_begin_at > timeout) return 0;
  68. yield();
  69. }
  70. memcpy(buffer, rx_buffer, RAWHID_RX_SIZE);
  71. memset(rx_transfer, 0, sizeof(rx_transfer));
  72. usb_prepare_transfer(rx_transfer + 0, rx_buffer, RAWHID_RX_SIZE, 0);
  73. usb_receive(RAWHID_RX_ENDPOINT, rx_transfer + 0);
  74. return RAWHID_RX_SIZE;
  75. }
  76. int usb_rawhid_send(const void *buffer, uint32_t timeout)
  77. {
  78. transfer_t *xfer = tx_transfer + tx_head;
  79. uint32_t wait_begin_at = systick_millis_count;
  80. while (1) {
  81. if (!usb_configuration) return -1; // usb not enumerated by host
  82. uint32_t status = usb_transfer_status(xfer);
  83. if (!(status & 0x80)) break; // transfer descriptor ready
  84. if (systick_millis_count - wait_begin_at > timeout) return 0;
  85. yield();
  86. }
  87. uint8_t *txdata = txbuffer + (tx_head * RAWHID_TX_SIZE);
  88. memcpy(txdata, buffer, RAWHID_TX_SIZE);
  89. usb_prepare_transfer(xfer, txdata, RAWHID_TX_SIZE, 0);
  90. usb_transmit(RAWHID_TX_ENDPOINT, xfer);
  91. if (++tx_head >= TX_NUM) tx_head = 0;
  92. return RAWHID_TX_SIZE;
  93. }
  94. int usb_rawhid_available(void)
  95. {
  96. if (!usb_configuration) return 0;
  97. if (!(usb_transfer_status(rx_transfer) & 0x80)) return RAWHID_RX_SIZE;
  98. return 0;
  99. }
  100. #endif // RAWHID_INTERFACE