Teensy 4.1 core updated for C++20
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.

93 lines
3.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. extern volatile uint8_t usb_configuration;
  42. static void rx_event(transfer_t *t)
  43. {
  44. }
  45. void usb_rawhid_configure(void)
  46. {
  47. printf("usb_rawhid_configure\n");
  48. memset(tx_transfer, 0, sizeof(tx_transfer));
  49. tx_head = 0;
  50. usb_config_tx(RAWHID_TX_ENDPOINT, RAWHID_TX_SIZE, 0, NULL);
  51. usb_config_rx(RAWHID_RX_ENDPOINT, RAWHID_RX_SIZE, 0, rx_event);
  52. }
  53. int usb_rawhid_recv(void *buffer, uint32_t timeout)
  54. {
  55. transfer_t *xfer = tx_transfer + tx_head;
  56. uint32_t wait_begin_at = systick_millis_count;
  57. while (1) {
  58. if (!usb_configuration) return -1; // usb not enumerated by host
  59. uint32_t status = usb_transfer_status(xfer);
  60. if (!(status & 0x80)) break; // transfer descriptor ready
  61. if (systick_millis_count - wait_begin_at > timeout) return 0;
  62. yield();
  63. }
  64. uint8_t *txdata = txbuffer + (tx_head * RAWHID_TX_SIZE);
  65. memcpy(txdata, buffer, RAWHID_TX_SIZE);
  66. usb_prepare_transfer(xfer, txdata, RAWHID_TX_SIZE, 0);
  67. usb_transmit(RAWHID_TX_ENDPOINT, xfer);
  68. if (++tx_head >= TX_NUM) tx_head = 0;
  69. return RAWHID_TX_SIZE;
  70. }
  71. int usb_rawhid_available(void)
  72. {
  73. return 0;
  74. }
  75. int usb_rawhid_send(const void *buffer, uint32_t timeout)
  76. {
  77. return -1;
  78. }
  79. #endif // RAWHID_INTERFACE