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.

887 lines
34KB

  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. #ifndef _usb_desc_h_
  31. #define _usb_desc_h_
  32. // This header is NOT meant to be included when compiling
  33. // user sketches in Arduino. The low-level functions
  34. // provided by usb_dev.c are meant to be called only by
  35. // code which provides higher-level interfaces to the user.
  36. #include <stdint.h>
  37. #include <stddef.h>
  38. #define ENDPOINT_UNUSED 0x00
  39. #define ENDPOINT_TRANSMIT_ONLY 0x15
  40. #define ENDPOINT_RECEIVE_ONLY 0x19
  41. #define ENDPOINT_TRANSMIT_AND_RECEIVE 0x1D
  42. #define ENDPOINT_RECEIVE_ISOCHRONOUS 0x18
  43. #define ENDPOINT_TRANSMIT_ISOCHRONOUS 0x14
  44. /*
  45. Each group of #define lines below corresponds to one of the
  46. settings in the Tools > USB Type menu. This file defines what
  47. type of USB device is actually created for each of those menu
  48. options.
  49. Each "interface" is a set of functionality your PC or Mac will
  50. use and treat as if it is a unique device. Within each interface,
  51. the "endpoints" are the actual communication channels. Most
  52. interfaces use 1, 2 or 3 endpoints. By editing only this file,
  53. you can customize the USB Types to be any collection of interfaces.
  54. To modify a USB Type, delete the XYZ_INTERFACE lines for any
  55. interfaces you wish to remove, and copy them from another USB Type
  56. for any you want to add.
  57. Give each interface a unique number, and edit NUM_INTERFACE to
  58. reflect the total number of interfaces.
  59. Next, assign unique endpoint numbers to all the endpoints across
  60. all the interfaces your device has. You can reuse an endpoint
  61. number for transmit and receive, but the same endpoint number must
  62. not be used twice to transmit, or twice to receive.
  63. Most endpoints also require their maximum size, and some also
  64. need an interval specification (the number of milliseconds the
  65. PC will check for data from that endpoint). For existing
  66. interfaces, usually these other settings should not be changed.
  67. Edit NUM_ENDPOINTS to be at least the largest endpoint number used.
  68. Edit NUM_USB_BUFFERS to control how much memory the USB stack will
  69. allocate. At least 2 should be used for each endpoint. More
  70. memory will allow higher throughput for user programs that have
  71. high latency (eg, spending time doing things other than interacting
  72. with the USB).
  73. Edit the ENDPOINT*_CONFIG lines so each endpoint is configured
  74. the proper way (transmit, receive, or both).
  75. If you are using existing interfaces (making your own device with
  76. a different set of interfaces) the code in all other files should
  77. automatically adapt to the new endpoints you specify here.
  78. If you need to create a new type of interface, you'll need to write
  79. the code which sends and receives packets, and presents an API to
  80. the user. Usually, a pair of files are added for the actual code,
  81. and code is also added in usb_dev.c for any control transfers,
  82. interrupt-level code, or other very low-level stuff not possible
  83. from the packet send/receive functons. Code also is added in
  84. usb_inst.c to create an instance of your C++ object. This message
  85. gives a quick summary of things you will need to know:
  86. https://forum.pjrc.com/threads/49045?p=164512&viewfull=1#post164512
  87. You may edit the Vendor and Product ID numbers, and strings. If
  88. the numbers are changed, Teensyduino may not be able to automatically
  89. find and reboot your board when you click the Upload button in
  90. the Arduino IDE. You will need to press the Program button on
  91. Teensy to initiate programming.
  92. Some operating systems, especially Windows, may cache USB device
  93. info. Changes to the device name may not update on the same
  94. computer unless the vendor or product ID numbers change, or the
  95. "bcdDevice" revision code is increased.
  96. If these instructions are missing steps or could be improved, please
  97. let me know? http://forum.pjrc.com/forums/4-Suggestions-amp-Bug-Reports
  98. */
  99. #if defined(USB_SERIAL)
  100. #define VENDOR_ID 0x16C0
  101. #define PRODUCT_ID 0x0483
  102. #define DEVICE_CLASS 2 // 2 = Communication Class
  103. #define MANUFACTURER_NAME {'T','e','e','n','s','y','d','u','i','n','o'}
  104. #define MANUFACTURER_NAME_LEN 11
  105. #define PRODUCT_NAME {'U','S','B',' ','S','e','r','i','a','l'}
  106. #define PRODUCT_NAME_LEN 10
  107. #define EP0_SIZE 64
  108. #define NUM_ENDPOINTS 4
  109. #define NUM_USB_BUFFERS 12
  110. #define NUM_INTERFACE 2
  111. #define CDC_STATUS_INTERFACE 0
  112. #define CDC_DATA_INTERFACE 1
  113. #define CDC_ACM_ENDPOINT 2
  114. #define CDC_RX_ENDPOINT 3
  115. #define CDC_TX_ENDPOINT 4
  116. #define CDC_ACM_SIZE 16
  117. #define CDC_RX_SIZE 64
  118. #define CDC_TX_SIZE 64
  119. #define ENDPOINT2_CONFIG ENDPOINT_TRANSMIT_ONLY
  120. #define ENDPOINT3_CONFIG ENDPOINT_RECEIVE_ONLY
  121. #define ENDPOINT4_CONFIG ENDPOINT_TRANSMIT_ONLY
  122. #elif defined(USB_KEYBOARDONLY)
  123. #define VENDOR_ID 0x16C0
  124. #define PRODUCT_ID 0x04D0
  125. #define MANUFACTURER_NAME {'T','e','e','n','s','y','d','u','i','n','o'}
  126. #define MANUFACTURER_NAME_LEN 11
  127. #define PRODUCT_NAME {'K','e','y','b','o','a','r','d'}
  128. #define PRODUCT_NAME_LEN 8
  129. #define EP0_SIZE 64
  130. #define NUM_ENDPOINTS 4
  131. #define NUM_USB_BUFFERS 14
  132. #define NUM_INTERFACE 3
  133. #define SEREMU_INTERFACE 1 // Serial emulation
  134. #define SEREMU_TX_ENDPOINT 1
  135. #define SEREMU_TX_SIZE 64
  136. #define SEREMU_TX_INTERVAL 1
  137. #define SEREMU_RX_ENDPOINT 2
  138. #define SEREMU_RX_SIZE 32
  139. #define SEREMU_RX_INTERVAL 2
  140. #define KEYBOARD_INTERFACE 0 // Keyboard
  141. #define KEYBOARD_ENDPOINT 3
  142. #define KEYBOARD_SIZE 8
  143. #define KEYBOARD_INTERVAL 1
  144. #define KEYMEDIA_INTERFACE 2 // Keyboard Media Keys
  145. #define KEYMEDIA_ENDPOINT 4
  146. #define KEYMEDIA_SIZE 8
  147. #define KEYMEDIA_INTERVAL 4
  148. #define ENDPOINT1_CONFIG ENDPOINT_TRANSMIT_ONLY
  149. #define ENDPOINT2_CONFIG ENDPOINT_RECEIVE_ONLY
  150. #define ENDPOINT3_CONFIG ENDPOINT_TRANSMIT_ONLY
  151. #define ENDPOINT4_CONFIG ENDPOINT_TRANSMIT_ONLY
  152. #define ENDPOINT5_CONFIG ENDPOINT_TRANSMIT_ONLY
  153. #define ENDPOINT6_CONFIG ENDPOINT_TRANSMIT_ONLY
  154. #elif defined(USB_HID)
  155. #define VENDOR_ID 0x16C0
  156. #define PRODUCT_ID 0x0482
  157. #define MANUFACTURER_NAME {'T','e','e','n','s','y','d','u','i','n','o'}
  158. #define MANUFACTURER_NAME_LEN 11
  159. #define PRODUCT_NAME {'K','e','y','b','o','a','r','d','/','M','o','u','s','e','/','J','o','y','s','t','i','c','k'}
  160. #define PRODUCT_NAME_LEN 23
  161. #define EP0_SIZE 64
  162. #define NUM_ENDPOINTS 6
  163. #define NUM_USB_BUFFERS 24
  164. #define NUM_INTERFACE 5
  165. #define SEREMU_INTERFACE 2 // Serial emulation
  166. #define SEREMU_TX_ENDPOINT 1
  167. #define SEREMU_TX_SIZE 64
  168. #define SEREMU_TX_INTERVAL 1
  169. #define SEREMU_RX_ENDPOINT 2
  170. #define SEREMU_RX_SIZE 32
  171. #define SEREMU_RX_INTERVAL 2
  172. #define KEYBOARD_INTERFACE 0 // Keyboard
  173. #define KEYBOARD_ENDPOINT 3
  174. #define KEYBOARD_SIZE 8
  175. #define KEYBOARD_INTERVAL 1
  176. #define KEYMEDIA_INTERFACE 4 // Keyboard Media Keys
  177. #define KEYMEDIA_ENDPOINT 6
  178. #define KEYMEDIA_SIZE 8
  179. #define KEYMEDIA_INTERVAL 4
  180. #define MOUSE_INTERFACE 1 // Mouse
  181. #define MOUSE_ENDPOINT 5
  182. #define MOUSE_SIZE 8
  183. #define MOUSE_INTERVAL 1
  184. #define JOYSTICK_INTERFACE 3 // Joystick
  185. #define JOYSTICK_ENDPOINT 4
  186. #define JOYSTICK_SIZE 12 // 12 = normal, 64 = extreme joystick
  187. #define JOYSTICK_INTERVAL 2
  188. #define ENDPOINT1_CONFIG ENDPOINT_TRANSMIT_ONLY
  189. #define ENDPOINT2_CONFIG ENDPOINT_RECEIVE_ONLY
  190. #define ENDPOINT3_CONFIG ENDPOINT_TRANSMIT_ONLY
  191. #define ENDPOINT4_CONFIG ENDPOINT_TRANSMIT_ONLY
  192. #define ENDPOINT5_CONFIG ENDPOINT_TRANSMIT_ONLY
  193. #define ENDPOINT6_CONFIG ENDPOINT_TRANSMIT_ONLY
  194. #elif defined(USB_SERIAL_HID)
  195. #define VENDOR_ID 0x16C0
  196. #define PRODUCT_ID 0x0487
  197. #define DEVICE_CLASS 0xEF
  198. #define DEVICE_SUBCLASS 0x02
  199. #define DEVICE_PROTOCOL 0x01
  200. #define MANUFACTURER_NAME {'T','e','e','n','s','y','d','u','i','n','o'}
  201. #define MANUFACTURER_NAME_LEN 11
  202. #define PRODUCT_NAME {'S','e','r','i','a','l','/','K','e','y','b','o','a','r','d','/','M','o','u','s','e','/','J','o','y','s','t','i','c','k'}
  203. #define PRODUCT_NAME_LEN 30
  204. #define EP0_SIZE 64
  205. #define NUM_ENDPOINTS 7
  206. #define NUM_USB_BUFFERS 30
  207. #define NUM_INTERFACE 6
  208. #define CDC_IAD_DESCRIPTOR 1
  209. #define CDC_STATUS_INTERFACE 0
  210. #define CDC_DATA_INTERFACE 1 // Serial
  211. #define CDC_ACM_ENDPOINT 2
  212. #define CDC_RX_ENDPOINT 3
  213. #define CDC_TX_ENDPOINT 4
  214. #define CDC_ACM_SIZE 16
  215. #define CDC_RX_SIZE 64
  216. #define CDC_TX_SIZE 64
  217. #define KEYBOARD_INTERFACE 2 // Keyboard
  218. #define KEYBOARD_ENDPOINT 1
  219. #define KEYBOARD_SIZE 8
  220. #define KEYBOARD_INTERVAL 1
  221. #define KEYMEDIA_INTERFACE 5 // Keyboard Media Keys
  222. #define KEYMEDIA_ENDPOINT 7
  223. #define KEYMEDIA_SIZE 8
  224. #define KEYMEDIA_INTERVAL 4
  225. #define MOUSE_INTERFACE 3 // Mouse
  226. #define MOUSE_ENDPOINT 5
  227. #define MOUSE_SIZE 8
  228. #define MOUSE_INTERVAL 2
  229. #define JOYSTICK_INTERFACE 4 // Joystick
  230. #define JOYSTICK_ENDPOINT 6
  231. #define JOYSTICK_SIZE 12 // 12 = normal, 64 = extreme joystick
  232. #define JOYSTICK_INTERVAL 1
  233. #define ENDPOINT1_CONFIG ENDPOINT_TRANSMIT_ONLY
  234. #define ENDPOINT2_CONFIG ENDPOINT_TRANSMIT_ONLY
  235. #define ENDPOINT3_CONFIG ENDPOINT_RECEIVE_ONLY
  236. #define ENDPOINT4_CONFIG ENDPOINT_TRANSMIT_ONLY
  237. #define ENDPOINT5_CONFIG ENDPOINT_TRANSMIT_ONLY
  238. #define ENDPOINT6_CONFIG ENDPOINT_TRANSMIT_ONLY
  239. #define ENDPOINT7_CONFIG ENDPOINT_TRANSMIT_ONLY
  240. #elif defined(USB_TOUCHSCREEN)
  241. #define VENDOR_ID 0x16C0
  242. #define PRODUCT_ID 0x04D3
  243. #define MANUFACTURER_NAME {'T','e','e','n','s','y','d','u','i','n','o'}
  244. #define MANUFACTURER_NAME_LEN 11
  245. #define PRODUCT_NAME {'K','e','y','b','o','a','r','d','/','T','o','u','c','h','s','c','r','e','e','n'}
  246. #define PRODUCT_NAME_LEN 20
  247. #define EP0_SIZE 64
  248. #define NUM_ENDPOINTS 5
  249. #define NUM_USB_BUFFERS 15
  250. #define NUM_INTERFACE 4
  251. #define SEREMU_INTERFACE 1 // Serial emulation
  252. #define SEREMU_TX_ENDPOINT 1
  253. #define SEREMU_TX_SIZE 64
  254. #define SEREMU_TX_INTERVAL 1
  255. #define SEREMU_RX_ENDPOINT 2
  256. #define SEREMU_RX_SIZE 32
  257. #define SEREMU_RX_INTERVAL 2
  258. #define KEYBOARD_INTERFACE 0 // Keyboard
  259. #define KEYBOARD_ENDPOINT 3
  260. #define KEYBOARD_SIZE 8
  261. #define KEYBOARD_INTERVAL 1
  262. #define KEYMEDIA_INTERFACE 2 // Keyboard Media Keys
  263. #define KEYMEDIA_ENDPOINT 4
  264. #define KEYMEDIA_SIZE 8
  265. #define KEYMEDIA_INTERVAL 4
  266. #define MULTITOUCH_INTERFACE 3 // Touchscreen
  267. #define MULTITOUCH_ENDPOINT 5
  268. #define MULTITOUCH_SIZE 8
  269. #define MULTITOUCH_FINGERS 10
  270. #define ENDPOINT1_CONFIG ENDPOINT_TRANSMIT_ONLY
  271. #define ENDPOINT2_CONFIG ENDPOINT_RECEIVE_ONLY
  272. #define ENDPOINT3_CONFIG ENDPOINT_TRANSMIT_ONLY
  273. #define ENDPOINT4_CONFIG ENDPOINT_TRANSMIT_ONLY
  274. #define ENDPOINT5_CONFIG ENDPOINT_TRANSMIT_ONLY
  275. #elif defined(USB_HID_TOUCHSCREEN)
  276. #define VENDOR_ID 0x16C0
  277. #define PRODUCT_ID 0x04D4
  278. #define MANUFACTURER_NAME {'T','e','e','n','s','y','d','u','i','n','o'}
  279. #define MANUFACTURER_NAME_LEN 11
  280. #define PRODUCT_NAME {'K','e','y','b','o','a','r','d','/','M','o','u','s','e','/','T','o','u','c','h','s','c','r','e','e','n'}
  281. #define PRODUCT_NAME_LEN 26
  282. #define EP0_SIZE 64
  283. #define NUM_ENDPOINTS 6
  284. #define NUM_USB_BUFFERS 20
  285. #define NUM_INTERFACE 5
  286. #define SEREMU_INTERFACE 2 // Serial emulation
  287. #define SEREMU_TX_ENDPOINT 1
  288. #define SEREMU_TX_SIZE 64
  289. #define SEREMU_TX_INTERVAL 1
  290. #define SEREMU_RX_ENDPOINT 2
  291. #define SEREMU_RX_SIZE 32
  292. #define SEREMU_RX_INTERVAL 2
  293. #define KEYBOARD_INTERFACE 0 // Keyboard
  294. #define KEYBOARD_ENDPOINT 3
  295. #define KEYBOARD_SIZE 8
  296. #define KEYBOARD_INTERVAL 1
  297. #define KEYMEDIA_INTERFACE 3 // Keyboard Media Keys
  298. #define KEYMEDIA_ENDPOINT 4
  299. #define KEYMEDIA_SIZE 8
  300. #define KEYMEDIA_INTERVAL 4
  301. #define MOUSE_INTERFACE 1 // Mouse
  302. #define MOUSE_ENDPOINT 6
  303. #define MOUSE_SIZE 8
  304. #define MOUSE_INTERVAL 2
  305. #define MULTITOUCH_INTERFACE 4 // Touchscreen
  306. #define MULTITOUCH_ENDPOINT 5
  307. #define MULTITOUCH_SIZE 8
  308. #define MULTITOUCH_FINGERS 10
  309. #define ENDPOINT1_CONFIG ENDPOINT_TRANSMIT_ONLY
  310. #define ENDPOINT2_CONFIG ENDPOINT_RECEIVE_ONLY
  311. #define ENDPOINT3_CONFIG ENDPOINT_TRANSMIT_ONLY
  312. #define ENDPOINT4_CONFIG ENDPOINT_TRANSMIT_ONLY
  313. #define ENDPOINT5_CONFIG ENDPOINT_TRANSMIT_ONLY
  314. #define ENDPOINT6_CONFIG ENDPOINT_TRANSMIT_ONLY
  315. #elif defined(USB_MIDI)
  316. #define VENDOR_ID 0x16C0
  317. #define PRODUCT_ID 0x0485
  318. #define MANUFACTURER_NAME {'T','e','e','n','s','y','d','u','i','n','o'}
  319. #define MANUFACTURER_NAME_LEN 11
  320. #define PRODUCT_NAME {'T','e','e','n','s','y',' ','M','I','D','I'}
  321. #define PRODUCT_NAME_LEN 11
  322. #define EP0_SIZE 64
  323. #define NUM_ENDPOINTS 4
  324. #define NUM_USB_BUFFERS 16
  325. #define NUM_INTERFACE 2
  326. #define SEREMU_INTERFACE 1 // Serial emulation
  327. #define SEREMU_TX_ENDPOINT 1
  328. #define SEREMU_TX_SIZE 64
  329. #define SEREMU_TX_INTERVAL 1
  330. #define SEREMU_RX_ENDPOINT 2
  331. #define SEREMU_RX_SIZE 32
  332. #define SEREMU_RX_INTERVAL 2
  333. #define MIDI_INTERFACE 0 // MIDI
  334. #define MIDI_NUM_CABLES 1
  335. #define MIDI_TX_ENDPOINT 3
  336. #define MIDI_TX_SIZE 64
  337. #define MIDI_RX_ENDPOINT 4
  338. #define MIDI_RX_SIZE 64
  339. #define ENDPOINT1_CONFIG ENDPOINT_TRANSMIT_ONLY
  340. #define ENDPOINT2_CONFIG ENDPOINT_RECEIVE_ONLY
  341. #define ENDPOINT3_CONFIG ENDPOINT_TRANSMIT_ONLY
  342. #define ENDPOINT4_CONFIG ENDPOINT_RECEIVE_ONLY
  343. #elif defined(USB_MIDI4)
  344. #define VENDOR_ID 0x16C0
  345. #define PRODUCT_ID 0x0485
  346. #define BCD_DEVICE 0x0211
  347. #define MANUFACTURER_NAME {'T','e','e','n','s','y','d','u','i','n','o'}
  348. #define MANUFACTURER_NAME_LEN 11
  349. #define PRODUCT_NAME {'T','e','e','n','s','y',' ','M','I','D','I','x','4'}
  350. #define PRODUCT_NAME_LEN 13
  351. #define EP0_SIZE 64
  352. #define NUM_ENDPOINTS 4
  353. #define NUM_USB_BUFFERS 16
  354. #define NUM_INTERFACE 2
  355. #define SEREMU_INTERFACE 1 // Serial emulation
  356. #define SEREMU_TX_ENDPOINT 1
  357. #define SEREMU_TX_SIZE 64
  358. #define SEREMU_TX_INTERVAL 1
  359. #define SEREMU_RX_ENDPOINT 2
  360. #define SEREMU_RX_SIZE 32
  361. #define SEREMU_RX_INTERVAL 2
  362. #define MIDI_INTERFACE 0 // MIDI
  363. #define MIDI_NUM_CABLES 4
  364. #define MIDI_TX_ENDPOINT 3
  365. #define MIDI_TX_SIZE 64
  366. #define MIDI_RX_ENDPOINT 4
  367. #define MIDI_RX_SIZE 64
  368. #define ENDPOINT1_CONFIG ENDPOINT_TRANSMIT_ONLY
  369. #define ENDPOINT2_CONFIG ENDPOINT_RECEIVE_ONLY
  370. #define ENDPOINT3_CONFIG ENDPOINT_TRANSMIT_ONLY
  371. #define ENDPOINT4_CONFIG ENDPOINT_RECEIVE_ONLY
  372. #elif defined(USB_MIDI16)
  373. #define VENDOR_ID 0x16C0
  374. #define PRODUCT_ID 0x0485
  375. #define BCD_DEVICE 0x0212
  376. #define MANUFACTURER_NAME {'T','e','e','n','s','y','d','u','i','n','o'}
  377. #define MANUFACTURER_NAME_LEN 11
  378. #define PRODUCT_NAME {'T','e','e','n','s','y',' ','M','I','D','I','x','1','6'}
  379. #define PRODUCT_NAME_LEN 14
  380. #define EP0_SIZE 64
  381. #define NUM_ENDPOINTS 4
  382. #define NUM_USB_BUFFERS 16
  383. #define NUM_INTERFACE 2
  384. #define SEREMU_INTERFACE 1 // Serial emulation
  385. #define SEREMU_TX_ENDPOINT 1
  386. #define SEREMU_TX_SIZE 64
  387. #define SEREMU_TX_INTERVAL 1
  388. #define SEREMU_RX_ENDPOINT 2
  389. #define SEREMU_RX_SIZE 32
  390. #define SEREMU_RX_INTERVAL 2
  391. #define MIDI_INTERFACE 0 // MIDI
  392. #define MIDI_NUM_CABLES 16
  393. #define MIDI_TX_ENDPOINT 3
  394. #define MIDI_TX_SIZE 64
  395. #define MIDI_RX_ENDPOINT 4
  396. #define MIDI_RX_SIZE 64
  397. #define ENDPOINT1_CONFIG ENDPOINT_TRANSMIT_ONLY
  398. #define ENDPOINT2_CONFIG ENDPOINT_RECEIVE_ONLY
  399. #define ENDPOINT3_CONFIG ENDPOINT_TRANSMIT_ONLY
  400. #define ENDPOINT4_CONFIG ENDPOINT_RECEIVE_ONLY
  401. #elif defined(USB_MIDI_SERIAL)
  402. #define VENDOR_ID 0x16C0
  403. #define PRODUCT_ID 0x0489
  404. #define MANUFACTURER_NAME {'T','e','e','n','s','y','d','u','i','n','o'}
  405. #define MANUFACTURER_NAME_LEN 11
  406. #define PRODUCT_NAME {'T','e','e','n','s','y',' ','M','I','D','I'}
  407. #define PRODUCT_NAME_LEN 11
  408. #define EP0_SIZE 64
  409. #define NUM_ENDPOINTS 5
  410. #define NUM_USB_BUFFERS 30
  411. #define NUM_INTERFACE 3
  412. #define CDC_IAD_DESCRIPTOR 1
  413. #define CDC_STATUS_INTERFACE 0
  414. #define CDC_DATA_INTERFACE 1 // Serial
  415. #define CDC_ACM_ENDPOINT 1
  416. #define CDC_RX_ENDPOINT 2
  417. #define CDC_TX_ENDPOINT 3
  418. #define CDC_ACM_SIZE 16
  419. #define CDC_RX_SIZE 64
  420. #define CDC_TX_SIZE 64
  421. #define MIDI_INTERFACE 2 // MIDI
  422. #define MIDI_NUM_CABLES 1
  423. #define MIDI_TX_ENDPOINT 4
  424. #define MIDI_TX_SIZE 64
  425. #define MIDI_RX_ENDPOINT 5
  426. #define MIDI_RX_SIZE 64
  427. #define ENDPOINT1_CONFIG ENDPOINT_TRANSMIT_ONLY
  428. #define ENDPOINT2_CONFIG ENDPOINT_RECEIVE_ONLY
  429. #define ENDPOINT3_CONFIG ENDPOINT_TRANSMIT_ONLY
  430. #define ENDPOINT4_CONFIG ENDPOINT_TRANSMIT_ONLY
  431. #define ENDPOINT5_CONFIG ENDPOINT_RECEIVE_ONLY
  432. #elif defined(USB_MIDI4_SERIAL)
  433. #define VENDOR_ID 0x16C0
  434. #define PRODUCT_ID 0x0489
  435. #define BCD_DEVICE 0x0211
  436. #define MANUFACTURER_NAME {'T','e','e','n','s','y','d','u','i','n','o'}
  437. #define MANUFACTURER_NAME_LEN 11
  438. #define PRODUCT_NAME {'T','e','e','n','s','y',' ','M','I','D','I','x','4'}
  439. #define PRODUCT_NAME_LEN 13
  440. #define EP0_SIZE 64
  441. #define NUM_ENDPOINTS 5
  442. #define NUM_USB_BUFFERS 30
  443. #define NUM_INTERFACE 3
  444. #define CDC_IAD_DESCRIPTOR 1
  445. #define CDC_STATUS_INTERFACE 0
  446. #define CDC_DATA_INTERFACE 1 // Serial
  447. #define CDC_ACM_ENDPOINT 1
  448. #define CDC_RX_ENDPOINT 2
  449. #define CDC_TX_ENDPOINT 3
  450. #define CDC_ACM_SIZE 16
  451. #define CDC_RX_SIZE 64
  452. #define CDC_TX_SIZE 64
  453. #define MIDI_INTERFACE 2 // MIDI
  454. #define MIDI_NUM_CABLES 4
  455. #define MIDI_TX_ENDPOINT 4
  456. #define MIDI_TX_SIZE 64
  457. #define MIDI_RX_ENDPOINT 5
  458. #define MIDI_RX_SIZE 64
  459. #define ENDPOINT1_CONFIG ENDPOINT_TRANSMIT_ONLY
  460. #define ENDPOINT2_CONFIG ENDPOINT_RECEIVE_ONLY
  461. #define ENDPOINT3_CONFIG ENDPOINT_TRANSMIT_ONLY
  462. #define ENDPOINT4_CONFIG ENDPOINT_TRANSMIT_ONLY
  463. #define ENDPOINT5_CONFIG ENDPOINT_RECEIVE_ONLY
  464. #elif defined(USB_MIDI16_SERIAL)
  465. #define VENDOR_ID 0x16C0
  466. #define PRODUCT_ID 0x0489
  467. #define BCD_DEVICE 0x0212
  468. #define MANUFACTURER_NAME {'T','e','e','n','s','y','d','u','i','n','o'}
  469. #define MANUFACTURER_NAME_LEN 11
  470. #define PRODUCT_NAME {'T','e','e','n','s','y',' ','M','I','D','I','x','1','6'}
  471. #define PRODUCT_NAME_LEN 14
  472. #define EP0_SIZE 64
  473. #define NUM_ENDPOINTS 5
  474. #define NUM_USB_BUFFERS 30
  475. #define NUM_INTERFACE 3
  476. #define CDC_IAD_DESCRIPTOR 1
  477. #define CDC_STATUS_INTERFACE 0
  478. #define CDC_DATA_INTERFACE 1 // Serial
  479. #define CDC_ACM_ENDPOINT 1
  480. #define CDC_RX_ENDPOINT 2
  481. #define CDC_TX_ENDPOINT 3
  482. #define CDC_ACM_SIZE 16
  483. #define CDC_RX_SIZE 64
  484. #define CDC_TX_SIZE 64
  485. #define MIDI_INTERFACE 2 // MIDI
  486. #define MIDI_NUM_CABLES 16
  487. #define MIDI_TX_ENDPOINT 4
  488. #define MIDI_TX_SIZE 64
  489. #define MIDI_RX_ENDPOINT 5
  490. #define MIDI_RX_SIZE 64
  491. #define ENDPOINT1_CONFIG ENDPOINT_TRANSMIT_ONLY
  492. #define ENDPOINT2_CONFIG ENDPOINT_RECEIVE_ONLY
  493. #define ENDPOINT3_CONFIG ENDPOINT_TRANSMIT_ONLY
  494. #define ENDPOINT4_CONFIG ENDPOINT_TRANSMIT_ONLY
  495. #define ENDPOINT5_CONFIG ENDPOINT_RECEIVE_ONLY
  496. #elif defined(USB_RAWHID)
  497. #define VENDOR_ID 0x16C0
  498. #define PRODUCT_ID 0x0486
  499. #define RAWHID_USAGE_PAGE 0xFFAB // recommended: 0xFF00 to 0xFFFF
  500. #define RAWHID_USAGE 0x0200 // recommended: 0x0100 to 0xFFFF
  501. #define MANUFACTURER_NAME {'T','e','e','n','s','y','d','u','i','n','o'}
  502. #define MANUFACTURER_NAME_LEN 11
  503. #define PRODUCT_NAME {'T','e','e','n','s','y','d','u','i','n','o',' ','R','a','w','H','I','D'}
  504. #define PRODUCT_NAME_LEN 18
  505. #define EP0_SIZE 64
  506. #define NUM_ENDPOINTS 4
  507. #define NUM_USB_BUFFERS 12
  508. #define NUM_INTERFACE 2
  509. #define RAWHID_INTERFACE 0 // RawHID
  510. #define RAWHID_TX_ENDPOINT 3
  511. #define RAWHID_TX_SIZE 64
  512. #define RAWHID_TX_INTERVAL 1
  513. #define RAWHID_RX_ENDPOINT 4
  514. #define RAWHID_RX_SIZE 64
  515. #define RAWHID_RX_INTERVAL 1
  516. #define SEREMU_INTERFACE 1 // Serial emulation
  517. #define SEREMU_TX_ENDPOINT 1
  518. #define SEREMU_TX_SIZE 64
  519. #define SEREMU_TX_INTERVAL 1
  520. #define SEREMU_RX_ENDPOINT 2
  521. #define SEREMU_RX_SIZE 32
  522. #define SEREMU_RX_INTERVAL 2
  523. #define ENDPOINT1_CONFIG ENDPOINT_TRANSMIT_ONLY
  524. #define ENDPOINT2_CONFIG ENDPOINT_RECEIVE_ONLY
  525. #define ENDPOINT3_CONFIG ENDPOINT_TRANSMIT_ONLY
  526. #define ENDPOINT4_CONFIG ENDPOINT_RECEIVE_ONLY
  527. #elif defined(USB_FLIGHTSIM)
  528. #define VENDOR_ID 0x16C0
  529. #define PRODUCT_ID 0x0488
  530. #define MANUFACTURER_NAME {'T','e','e','n','s','y','d','u','i','n','o'}
  531. #define MANUFACTURER_NAME_LEN 11
  532. #define PRODUCT_NAME {'T','e','e','n','s','y',' ','F','l','i','g','h','t',' ','S','i','m',' ','C','o','n','t','r','o','l','s'}
  533. #define PRODUCT_NAME_LEN 26
  534. #define EP0_SIZE 64
  535. #define NUM_ENDPOINTS 4
  536. #define NUM_USB_BUFFERS 20
  537. #define NUM_INTERFACE 2
  538. #define FLIGHTSIM_INTERFACE 0 // Flight Sim Control
  539. #define FLIGHTSIM_TX_ENDPOINT 3
  540. #define FLIGHTSIM_TX_SIZE 64
  541. #define FLIGHTSIM_TX_INTERVAL 1
  542. #define FLIGHTSIM_RX_ENDPOINT 4
  543. #define FLIGHTSIM_RX_SIZE 64
  544. #define FLIGHTSIM_RX_INTERVAL 1
  545. #define SEREMU_INTERFACE 1 // Serial emulation
  546. #define SEREMU_TX_ENDPOINT 1
  547. #define SEREMU_TX_SIZE 64
  548. #define SEREMU_TX_INTERVAL 1
  549. #define SEREMU_RX_ENDPOINT 2
  550. #define SEREMU_RX_SIZE 32
  551. #define SEREMU_RX_INTERVAL 2
  552. #define ENDPOINT1_CONFIG ENDPOINT_TRANSMIT_ONLY
  553. #define ENDPOINT2_CONFIG ENDPOINT_RECEIVE_ONLY
  554. #define ENDPOINT3_CONFIG ENDPOINT_TRANSMIT_ONLY
  555. #define ENDPOINT4_CONFIG ENDPOINT_RECEIVE_ONLY
  556. #elif defined(USB_FLIGHTSIM_JOYSTICK)
  557. #define VENDOR_ID 0x16C0
  558. #define PRODUCT_ID 0x0488
  559. #define BCD_DEVICE 0x0211
  560. #define MANUFACTURER_NAME {'T','e','e','n','s','y','d','u','i','n','o'}
  561. #define MANUFACTURER_NAME_LEN 11
  562. #define PRODUCT_NAME {'T','e','e','n','s','y',' ','F','l','i','g','h','t',' ','S','i','m',' ','C','o','n','t','r','o','l','s'}
  563. #define PRODUCT_NAME_LEN 26
  564. #define EP0_SIZE 64
  565. #define NUM_ENDPOINTS 5
  566. #define NUM_USB_BUFFERS 20
  567. #define NUM_INTERFACE 3
  568. #define FLIGHTSIM_INTERFACE 0 // Flight Sim Control
  569. #define FLIGHTSIM_TX_ENDPOINT 3
  570. #define FLIGHTSIM_TX_SIZE 64
  571. #define FLIGHTSIM_TX_INTERVAL 1
  572. #define FLIGHTSIM_RX_ENDPOINT 4
  573. #define FLIGHTSIM_RX_SIZE 64
  574. #define FLIGHTSIM_RX_INTERVAL 1
  575. #define SEREMU_INTERFACE 1 // Serial emulation
  576. #define SEREMU_TX_ENDPOINT 1
  577. #define SEREMU_TX_SIZE 64
  578. #define SEREMU_TX_INTERVAL 1
  579. #define SEREMU_RX_ENDPOINT 2
  580. #define SEREMU_RX_SIZE 32
  581. #define SEREMU_RX_INTERVAL 2
  582. #define JOYSTICK_INTERFACE 2 // Joystick
  583. #define JOYSTICK_ENDPOINT 5
  584. #define JOYSTICK_SIZE 12 // 12 = normal, 64 = extreme joystick
  585. #define JOYSTICK_INTERVAL 1
  586. #define ENDPOINT1_CONFIG ENDPOINT_TRANSMIT_ONLY
  587. #define ENDPOINT2_CONFIG ENDPOINT_RECEIVE_ONLY
  588. #define ENDPOINT3_CONFIG ENDPOINT_TRANSMIT_ONLY
  589. #define ENDPOINT4_CONFIG ENDPOINT_RECEIVE_ONLY
  590. #define ENDPOINT5_CONFIG ENDPOINT_TRANSMIT_ONLY
  591. #elif defined(USB_MTPDISK)
  592. #define VENDOR_ID 0x16C0
  593. #define PRODUCT_ID 0x04D1
  594. #define MANUFACTURER_NAME {'T','e','e','n','s','y','d','u','i','n','o'}
  595. #define MANUFACTURER_NAME_LEN 11
  596. #define PRODUCT_NAME {'T','e','e','n','s','y',' ','M','T','P',' ','D','i','s','k'}
  597. #define PRODUCT_NAME_LEN 15
  598. #define EP0_SIZE 64
  599. #define NUM_ENDPOINTS 4
  600. #define NUM_USB_BUFFERS 20
  601. #define NUM_INTERFACE 2
  602. #define MTP_INTERFACE 0 // MTP Disk
  603. #define MTP_TX_ENDPOINT 3
  604. #define MTP_TX_SIZE 64
  605. #define MTP_RX_ENDPOINT 3
  606. #define MTP_RX_SIZE 64
  607. #define MTP_EVENT_ENDPOINT 4
  608. #define MTP_EVENT_SIZE 16
  609. #define MTP_EVENT_INTERVAL 10
  610. #define SEREMU_INTERFACE 1 // Serial emulation
  611. #define SEREMU_TX_ENDPOINT 1
  612. #define SEREMU_TX_SIZE 64
  613. #define SEREMU_TX_INTERVAL 1
  614. #define SEREMU_RX_ENDPOINT 2
  615. #define SEREMU_RX_SIZE 32
  616. #define SEREMU_RX_INTERVAL 2
  617. #define ENDPOINT1_CONFIG ENDPOINT_TRANSMIT_ONLY
  618. #define ENDPOINT2_CONFIG ENDPOINT_RECEIVE_ONLY
  619. #define ENDPOINT3_CONFIG ENDPOINT_TRANSMIT_AND_RECEIVE
  620. #define ENDPOINT4_CONFIG ENDPOINT_RECEIVE_ONLY
  621. #elif defined(USB_AUDIO)
  622. #define VENDOR_ID 0x16C0
  623. #define PRODUCT_ID 0x04D2
  624. #define MANUFACTURER_NAME {'T','e','e','n','s','y','d','u','i','n','o'}
  625. #define MANUFACTURER_NAME_LEN 11
  626. #define PRODUCT_NAME {'T','e','e','n','s','y',' ','A','u','d','i','o'}
  627. #define PRODUCT_NAME_LEN 12
  628. #define EP0_SIZE 64
  629. #define NUM_ENDPOINTS 5
  630. #define NUM_USB_BUFFERS 16
  631. #define NUM_INTERFACE 4
  632. #define SEREMU_INTERFACE 0 // Serial emulation
  633. #define SEREMU_TX_ENDPOINT 1
  634. #define SEREMU_TX_SIZE 64
  635. #define SEREMU_TX_INTERVAL 1
  636. #define SEREMU_RX_ENDPOINT 2
  637. #define SEREMU_RX_SIZE 32
  638. #define SEREMU_RX_INTERVAL 2
  639. #define AUDIO_INTERFACE 1 // Audio (uses 3 consecutive interfaces)
  640. #define AUDIO_TX_ENDPOINT 3
  641. #define AUDIO_TX_SIZE 180
  642. #define AUDIO_RX_ENDPOINT 4
  643. #define AUDIO_RX_SIZE 180
  644. #define AUDIO_SYNC_ENDPOINT 5
  645. #define ENDPOINT1_CONFIG ENDPOINT_TRANSMIT_ONLY
  646. #define ENDPOINT2_CONFIG ENDPOINT_RECEIVE_ONLY
  647. #define ENDPOINT3_CONFIG ENDPOINT_TRANSMIT_ISOCHRONOUS
  648. #define ENDPOINT4_CONFIG ENDPOINT_RECEIVE_ISOCHRONOUS
  649. #define ENDPOINT5_CONFIG ENDPOINT_TRANSMIT_ISOCHRONOUS
  650. #elif defined(USB_MIDI_AUDIO_SERIAL)
  651. #define VENDOR_ID 0x16C0
  652. #define PRODUCT_ID 0x048A
  653. #define MANUFACTURER_NAME {'T','e','e','n','s','y','d','u','i','n','o'}
  654. #define MANUFACTURER_NAME_LEN 11
  655. #define PRODUCT_NAME {'T','e','e','n','s','y',' ','M','I','D','I','/','A','u','d','i','o'}
  656. #define PRODUCT_NAME_LEN 17
  657. #define EP0_SIZE 64
  658. #define NUM_ENDPOINTS 8
  659. #define NUM_USB_BUFFERS 30
  660. #define NUM_INTERFACE 6
  661. #define CDC_IAD_DESCRIPTOR 1
  662. #define CDC_STATUS_INTERFACE 0
  663. #define CDC_DATA_INTERFACE 1 // Serial
  664. #define CDC_ACM_ENDPOINT 1
  665. #define CDC_RX_ENDPOINT 2
  666. #define CDC_TX_ENDPOINT 3
  667. #define CDC_ACM_SIZE 16
  668. #define CDC_RX_SIZE 64
  669. #define CDC_TX_SIZE 64
  670. #define MIDI_INTERFACE 2 // MIDI
  671. #define MIDI_NUM_CABLES 1
  672. #define MIDI_TX_ENDPOINT 4
  673. #define MIDI_TX_SIZE 64
  674. #define MIDI_RX_ENDPOINT 5
  675. #define MIDI_RX_SIZE 64
  676. #define AUDIO_INTERFACE 3 // Audio (uses 3 consecutive interfaces)
  677. #define AUDIO_TX_ENDPOINT 6
  678. #define AUDIO_TX_SIZE 180
  679. #define AUDIO_RX_ENDPOINT 7
  680. #define AUDIO_RX_SIZE 180
  681. #define AUDIO_SYNC_ENDPOINT 8
  682. #define ENDPOINT1_CONFIG ENDPOINT_TRANSMIT_ONLY
  683. #define ENDPOINT2_CONFIG ENDPOINT_RECEIVE_ONLY
  684. #define ENDPOINT3_CONFIG ENDPOINT_TRANSMIT_ONLY
  685. #define ENDPOINT4_CONFIG ENDPOINT_TRANSMIT_ONLY
  686. #define ENDPOINT5_CONFIG ENDPOINT_RECEIVE_ONLY
  687. #define ENDPOINT6_CONFIG ENDPOINT_TRANSMIT_ISOCHRONOUS
  688. #define ENDPOINT7_CONFIG ENDPOINT_RECEIVE_ISOCHRONOUS
  689. #define ENDPOINT8_CONFIG ENDPOINT_TRANSMIT_ISOCHRONOUS
  690. #elif defined(USB_MIDI16_AUDIO_SERIAL)
  691. #define VENDOR_ID 0x16C0
  692. #define PRODUCT_ID 0x048A
  693. #define BCD_DEVICE 0x0212
  694. #define MANUFACTURER_NAME {'T','e','e','n','s','y','d','u','i','n','o'}
  695. #define MANUFACTURER_NAME_LEN 11
  696. #define PRODUCT_NAME {'T','e','e','n','s','y',' ','M','I','D','I','x','1','6','/','A','u','d','i','o'}
  697. #define PRODUCT_NAME_LEN 20
  698. #define EP0_SIZE 64
  699. #define NUM_ENDPOINTS 8
  700. #define NUM_USB_BUFFERS 30
  701. #define NUM_INTERFACE 6
  702. #define CDC_IAD_DESCRIPTOR 1
  703. #define CDC_STATUS_INTERFACE 0
  704. #define CDC_DATA_INTERFACE 1 // Serial
  705. #define CDC_ACM_ENDPOINT 1
  706. #define CDC_RX_ENDPOINT 2
  707. #define CDC_TX_ENDPOINT 3
  708. #define CDC_ACM_SIZE 16
  709. #define CDC_RX_SIZE 64
  710. #define CDC_TX_SIZE 64
  711. #define MIDI_INTERFACE 2 // MIDI
  712. #define MIDI_NUM_CABLES 16
  713. #define MIDI_TX_ENDPOINT 4
  714. #define MIDI_TX_SIZE 64
  715. #define MIDI_RX_ENDPOINT 5
  716. #define MIDI_RX_SIZE 64
  717. #define AUDIO_INTERFACE 3 // Audio (uses 3 consecutive interfaces)
  718. #define AUDIO_TX_ENDPOINT 6
  719. #define AUDIO_TX_SIZE 180
  720. #define AUDIO_RX_ENDPOINT 7
  721. #define AUDIO_RX_SIZE 180
  722. #define AUDIO_SYNC_ENDPOINT 8
  723. #define ENDPOINT1_CONFIG ENDPOINT_TRANSMIT_ONLY
  724. #define ENDPOINT2_CONFIG ENDPOINT_RECEIVE_ONLY
  725. #define ENDPOINT3_CONFIG ENDPOINT_TRANSMIT_ONLY
  726. #define ENDPOINT4_CONFIG ENDPOINT_TRANSMIT_ONLY
  727. #define ENDPOINT5_CONFIG ENDPOINT_RECEIVE_ONLY
  728. #define ENDPOINT6_CONFIG ENDPOINT_TRANSMIT_ISOCHRONOUS
  729. #define ENDPOINT7_CONFIG ENDPOINT_RECEIVE_ISOCHRONOUS
  730. #define ENDPOINT8_CONFIG ENDPOINT_TRANSMIT_ISOCHRONOUS
  731. #elif defined(USB_EVERYTHING)
  732. #define VENDOR_ID 0x16C0
  733. #define PRODUCT_ID 0x0476
  734. #define RAWHID_USAGE_PAGE 0xFFAB // recommended: 0xFF00 to 0xFFFF
  735. #define RAWHID_USAGE 0x0200 // recommended: 0x0100 to 0xFFFF
  736. #define DEVICE_CLASS 0xEF
  737. #define DEVICE_SUBCLASS 0x02
  738. #define DEVICE_PROTOCOL 0x01
  739. #define MANUFACTURER_NAME {'T','e','e','n','s','y','d','u','i','n','o'}
  740. #define MANUFACTURER_NAME_LEN 11
  741. #define PRODUCT_NAME {'A','l','l',' ','T','h','e',' ','T','h','i','n','g','s'}
  742. #define PRODUCT_NAME_LEN 14
  743. #define EP0_SIZE 64
  744. #define NUM_ENDPOINTS 15
  745. #define NUM_USB_BUFFERS 31
  746. #define NUM_INTERFACE 13
  747. #define CDC_IAD_DESCRIPTOR 1
  748. #define CDC_STATUS_INTERFACE 0
  749. #define CDC_DATA_INTERFACE 1 // Serial
  750. #define CDC_ACM_ENDPOINT 1
  751. #define CDC_RX_ENDPOINT 2
  752. #define CDC_TX_ENDPOINT 2
  753. #define CDC_ACM_SIZE 16
  754. #define CDC_RX_SIZE 64
  755. #define CDC_TX_SIZE 64
  756. #define MIDI_INTERFACE 2 // MIDI
  757. #define MIDI_NUM_CABLES 16
  758. #define MIDI_TX_ENDPOINT 3
  759. #define MIDI_TX_SIZE 64
  760. #define MIDI_RX_ENDPOINT 3
  761. #define MIDI_RX_SIZE 64
  762. #define KEYBOARD_INTERFACE 3 // Keyboard
  763. #define KEYBOARD_ENDPOINT 4
  764. #define KEYBOARD_SIZE 8
  765. #define KEYBOARD_INTERVAL 1
  766. #define MOUSE_INTERFACE 4 // Mouse
  767. #define MOUSE_ENDPOINT 5
  768. #define MOUSE_SIZE 8
  769. #define MOUSE_INTERVAL 2
  770. #define RAWHID_INTERFACE 5 // RawHID
  771. #define RAWHID_TX_ENDPOINT 6
  772. #define RAWHID_TX_SIZE 64
  773. #define RAWHID_TX_INTERVAL 1
  774. #define RAWHID_RX_ENDPOINT 6
  775. #define RAWHID_RX_SIZE 64
  776. #define RAWHID_RX_INTERVAL 1
  777. #define FLIGHTSIM_INTERFACE 6 // Flight Sim Control
  778. #define FLIGHTSIM_TX_ENDPOINT 9
  779. #define FLIGHTSIM_TX_SIZE 64
  780. #define FLIGHTSIM_TX_INTERVAL 1
  781. #define FLIGHTSIM_RX_ENDPOINT 9
  782. #define FLIGHTSIM_RX_SIZE 64
  783. #define FLIGHTSIM_RX_INTERVAL 1
  784. #define JOYSTICK_INTERFACE 7 // Joystick
  785. #define JOYSTICK_ENDPOINT 10
  786. #define JOYSTICK_SIZE 12 // 12 = normal, 64 = extreme joystick
  787. #define JOYSTICK_INTERVAL 1
  788. /*
  789. #define MTP_INTERFACE 8 // MTP Disk
  790. #define MTP_TX_ENDPOINT 11
  791. #define MTP_TX_SIZE 64
  792. #define MTP_RX_ENDPOINT 3
  793. #define MTP_RX_SIZE 64
  794. #define MTP_EVENT_ENDPOINT 11
  795. #define MTP_EVENT_SIZE 16
  796. #define MTP_EVENT_INTERVAL 10
  797. */
  798. #define KEYMEDIA_INTERFACE 8 // Keyboard Media Keys
  799. #define KEYMEDIA_ENDPOINT 12
  800. #define KEYMEDIA_SIZE 8
  801. #define KEYMEDIA_INTERVAL 4
  802. #define AUDIO_INTERFACE 9 // Audio (uses 3 consecutive interfaces)
  803. #define AUDIO_TX_ENDPOINT 13
  804. #define AUDIO_TX_SIZE 180
  805. #define AUDIO_RX_ENDPOINT 13
  806. #define AUDIO_RX_SIZE 180
  807. #define AUDIO_SYNC_ENDPOINT 14
  808. #define MULTITOUCH_INTERFACE 12 // Touchscreen
  809. #define MULTITOUCH_ENDPOINT 15
  810. #define MULTITOUCH_SIZE 8
  811. #define MULTITOUCH_FINGERS 10
  812. #define ENDPOINT1_CONFIG ENDPOINT_TRANSMIT_ONLY
  813. #define ENDPOINT2_CONFIG ENDPOINT_TRANSMIT_AND_RECEIVE
  814. #define ENDPOINT3_CONFIG ENDPOINT_TRANSMIT_AND_RECEIVE
  815. #define ENDPOINT4_CONFIG ENDPOINT_TRANSMIT_ONLY
  816. #define ENDPOINT5_CONFIG ENDPOINT_TRANSMIT_ONLY
  817. #define ENDPOINT6_CONFIG ENDPOINT_TRANSMIT_AND_RECEIVE
  818. #define ENDPOINT7_CONFIG ENDPOINT_TRANSMIT_AND_RECEIVE
  819. #define ENDPOINT8_CONFIG ENDPOINT_TRANSMIT_ONLY
  820. #define ENDPOINT9_CONFIG ENDPOINT_TRANSMIT_AND_RECEIVE
  821. #define ENDPOINT10_CONFIG ENDPOINT_TRANSMIT_ONLY
  822. #define ENDPOINT11_CONFIG ENDPOINT_TRANSMIT_AND_RECEIVE
  823. #define ENDPOINT12_CONFIG ENDPOINT_TRANSMIT_ONLY
  824. #define ENDPOINT13_CONFIG (ENDPOINT_RECEIVE_ISOCHRONOUS|ENDPOINT_TRANSMIT_ISOCHRONOUS)
  825. #define ENDPOINT14_CONFIG ENDPOINT_TRANSMIT_ISOCHRONOUS
  826. #define ENDPOINT15_CONFIG ENDPOINT_TRANSMIT_ONLY
  827. #endif
  828. #ifdef USB_DESC_LIST_DEFINE
  829. #if defined(NUM_ENDPOINTS) && NUM_ENDPOINTS > 0
  830. // NUM_ENDPOINTS = number of non-zero endpoints (0 to 15)
  831. extern const uint8_t usb_endpoint_config_table[NUM_ENDPOINTS];
  832. typedef struct {
  833. uint16_t wValue;
  834. uint16_t wIndex;
  835. const uint8_t *addr;
  836. uint16_t length;
  837. } usb_descriptor_list_t;
  838. extern const usb_descriptor_list_t usb_descriptor_list[];
  839. #endif // NUM_ENDPOINTS
  840. #endif // USB_DESC_LIST_DEFINE
  841. #endif