Kiibohd Controller
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

usb_desc.h 4.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. /* Teensyduino Core Library
  2. * http://www.pjrc.com/teensy/
  3. * Copyright (c) 2013 PJRC.COM, LLC.
  4. * Modified by Jacob Alexander (2013-2015)
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining
  7. * a copy of this software and associated documentation files (the
  8. * "Software"), to deal in the Software without restriction, including
  9. * without limitation the rights to use, copy, modify, merge, publish,
  10. * distribute, sublicense, and/or sell copies of the Software, and to
  11. * permit persons to whom the Software is furnished to do so, subject to
  12. * the following conditions:
  13. *
  14. * 1. The above copyright notice and this permission notice shall be
  15. * included in all copies or substantial portions of the Software.
  16. *
  17. * 2. If the Software is incorporated into a build system that allows
  18. * selection among a list of target devices, then similar target
  19. * devices manufactured by PJRC.COM must be included in the list of
  20. * target devices and selectable in the same manner.
  21. *
  22. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  23. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  24. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  25. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  26. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  27. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  28. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  29. * SOFTWARE.
  30. */
  31. #pragma once
  32. // ----- Includes -----
  33. // Compiler Includes
  34. #include <stdint.h>
  35. #include <stddef.h>
  36. // Local Includes
  37. #include <output_com.h>
  38. // ----- Defines -----
  39. #define ENDPOINT_UNUSED 0x00
  40. #define ENDPOINT_TRANSIMIT_ONLY 0x15
  41. #define ENDPOINT_RECEIVE_ONLY 0x19
  42. #define ENDPOINT_TRANSMIT_AND_RECEIVE 0x1D
  43. #define DEVICE_CLASS 0x00 // Keep 0x00 to indicate each sub device will indicate what it is
  44. #define DEVICE_SUBCLASS 0x00
  45. #define DEVICE_PROTOCOL 0x00
  46. #define EP0_SIZE 64
  47. #define NUM_ENDPOINTS 5
  48. #define NUM_USB_BUFFERS 30
  49. #define NUM_INTERFACE 4
  50. #define KEYBOARD_INTERFACE 0 // Keyboard
  51. #define KEYBOARD_ENDPOINT 1
  52. #define KEYBOARD_SIZE 8
  53. #define KEYBOARD_INTERVAL 1
  54. #define NKRO_KEYBOARD_INTERFACE 1 // NKRO Keyboard
  55. #define NKRO_KEYBOARD_ENDPOINT 2
  56. #define NKRO_KEYBOARD_SIZE 64
  57. #define NKRO_KEYBOARD_INTERVAL 1
  58. #define CDC_IAD_DESCRIPTOR 1
  59. #define CDC_STATUS_INTERFACE 2
  60. #define CDC_DATA_INTERFACE 3 // Serial
  61. #define CDC_ACM_ENDPOINT 3
  62. #define CDC_RX_ENDPOINT 4
  63. #define CDC_TX_ENDPOINT 5
  64. #define CDC_ACM_SIZE 16
  65. #define CDC_RX_SIZE 64
  66. #define CDC_TX_SIZE 64
  67. #define MOUSE_INTERFACE 4 // Mouse
  68. #define MOUSE_ENDPOINT 6
  69. #define MOUSE_SIZE 8
  70. #define MOUSE_INTERVAL 2
  71. #define JOYSTICK_INTERFACE 5 // Joystick
  72. #define JOYSTICK_ENDPOINT 7
  73. #define JOYSTICK_SIZE 16
  74. #define JOYSTICK_INTERVAL 1
  75. #define KEYBOARD_DESC_OFFSET (9 + 9)
  76. #define NKRO_KEYBOARD_DESC_OFFSET (9 + 9+9+7 + 9)
  77. #define SERIAL_CDC_DESC_OFFSET (9 + 9+9+7 + 9+9+7 + 8)
  78. #define CONFIG_DESC_SIZE (9 + 9+9+7 + 9+9+7 + 8+9+5+5+4+5+7+9+7+7)
  79. // XXX Unused
  80. #define MOUSE_DESC_OFFSET (9 + 9+9+7 + 9+9+7 + 8+9+5+5+4+5+7+9+7+7 + 9)
  81. #define JOYSTICK_DESC_OFFSET (9 + 9+9+7 + 9+9+7 + 8+9+5+5+4+5+7+9+7+7 + 9+9+7 + 9)
  82. #define ENDPOINT1_CONFIG ENDPOINT_TRANSIMIT_ONLY
  83. #define ENDPOINT2_CONFIG ENDPOINT_TRANSIMIT_ONLY
  84. #define ENDPOINT3_CONFIG ENDPOINT_TRANSIMIT_ONLY
  85. #define ENDPOINT4_CONFIG ENDPOINT_RECEIVE_ONLY
  86. #define ENDPOINT5_CONFIG ENDPOINT_TRANSIMIT_ONLY
  87. #define ENDPOINT6_CONFIG ENDPOINT_TRANSIMIT_ONLY
  88. #define ENDPOINT7_CONFIG ENDPOINT_TRANSIMIT_ONLY
  89. // ----- Enumerations -----
  90. typedef struct {
  91. uint16_t wValue;
  92. uint16_t wIndex;
  93. const uint8_t *addr;
  94. uint16_t length;
  95. } usb_descriptor_list_t;
  96. // ----- Variables -----
  97. // NUM_ENDPOINTS = number of non-zero endpoints (0 to 15)
  98. extern const uint8_t usb_endpoint_config_table[NUM_ENDPOINTS];
  99. extern const usb_descriptor_list_t usb_descriptor_list[];