Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

111 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_joystick.h"
  32. #include "core_pins.h" // for yield()
  33. #include <string.h> // for memcpy()
  34. #include "avr/pgmspace.h" // for PROGMEM, DMAMEM, FASTRUN
  35. #include "debug/printf.h"
  36. #include "core_pins.h"
  37. #ifdef JOYSTICK_INTERFACE // defined by usb_dev.h -> usb_desc.h
  38. uint32_t usb_joystick_data[(JOYSTICK_SIZE+3)/4];
  39. static uint8_t transmit_previous_timeout=0;
  40. // When the PC isn't listening, how long do we wait before discarding data?
  41. #define TX_TIMEOUT_MSEC 30
  42. #define TX_NUM 4
  43. #if JOYSTICK_SIZE <= 32
  44. #define TX_BUFSIZE 32
  45. #else
  46. #define TX_BUFSIZE 64
  47. #endif
  48. static transfer_t tx_transfer[TX_NUM] __attribute__ ((used, aligned(32)));
  49. DMAMEM static uint8_t txbuffer[TX_NUM * TX_BUFSIZE] __attribute__ ((aligned(32)));
  50. static uint8_t tx_head=0;
  51. #if JOYSTICK_SIZE > TX_BUFSIZE
  52. #error "Internal error, transmit buffer size is too small for joystick endpoint"
  53. #endif
  54. void usb_joystick_configure(void)
  55. {
  56. memset(tx_transfer, 0, sizeof(tx_transfer));
  57. tx_head = 0;
  58. usb_config_tx(JOYSTICK_ENDPOINT, JOYSTICK_SIZE, 0, NULL);
  59. }
  60. int usb_joystick_send()
  61. {
  62. if (!usb_configuration) return -1;
  63. uint32_t head = tx_head;
  64. transfer_t *xfer = tx_transfer + head;
  65. uint32_t wait_begin_at = systick_millis_count;
  66. while (1) {
  67. uint32_t status = usb_transfer_status(xfer);
  68. if (!(status & 0x80)) {
  69. if (status & 0x68) {
  70. // TODO: what if status has errors???
  71. printf("ERROR status = %x, i=%d, ms=%u\n",
  72. status, tx_head, systick_millis_count);
  73. }
  74. transmit_previous_timeout = 0;
  75. break;
  76. }
  77. if (transmit_previous_timeout) return -1;
  78. if (systick_millis_count - wait_begin_at > TX_TIMEOUT_MSEC) {
  79. // waited too long, assume the USB host isn't listening
  80. transmit_previous_timeout = 1;
  81. return -1;
  82. }
  83. if (!usb_configuration) return -1;
  84. yield();
  85. }
  86. delayNanoseconds(30); // TODO: why is status ready too soon?
  87. uint8_t *buffer = txbuffer + head * TX_BUFSIZE;
  88. memcpy(buffer, usb_joystick_data, JOYSTICK_SIZE);
  89. usb_prepare_transfer(xfer, buffer, JOYSTICK_SIZE, 0);
  90. arm_dcache_flush_delete(buffer, TX_BUFSIZE);
  91. usb_transmit(JOYSTICK_ENDPOINT, xfer);
  92. if (++head >= TX_NUM) head = 0;
  93. tx_head = head;
  94. return 0;
  95. }
  96. #endif // JOYSTICK_INTERFACE