選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

300 行
6.4KB

  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. // This header is meant to undo the effect of having included
  31. // usb_desc.h. Everything usb_desc.h, usb_undef.h undefines.
  32. // This stuff is not supposed to be made visible to user level
  33. // programs, but it's nice if we can use it within the headers
  34. // included by user programs, to automatically define only the
  35. // appropriate APIs for the types of USB interfaces used.
  36. #ifdef _usb_desc_h_
  37. #undef _usb_desc_h_
  38. #endif
  39. #ifdef ENDPOINT_UNUSED
  40. #undef ENDPOINT_UNUSED
  41. #endif
  42. #ifdef ENDPOINT_TRANSIMIT_ONLY
  43. #undef ENDPOINT_TRANSIMIT_ONLY
  44. #endif
  45. #ifdef ENDPOINT_RECEIVE_ONLY
  46. #undef ENDPOINT_RECEIVE_ONLY
  47. #endif
  48. #ifdef ENDPOINT_TRANSMIT_AND_RECEIVE
  49. #undef ENDPOINT_TRANSMIT_AND_RECEIVE
  50. #endif
  51. #ifdef VENDOR_ID
  52. #undef VENDOR_ID
  53. #endif
  54. #ifdef PRODUCT_ID
  55. #undef PRODUCT_ID
  56. #endif
  57. #ifdef BCD_DEVICE
  58. #undef BCD_DEVICE
  59. #endif
  60. #ifdef DEVICE_CLASS
  61. #undef DEVICE_CLASS
  62. #endif
  63. #ifdef MANUFACTURER_NAME
  64. #undef MANUFACTURER_NAME
  65. #endif
  66. #ifdef MANUFACTURER_NAME_LEN
  67. #undef MANUFACTURER_NAME_LEN
  68. #endif
  69. #ifdef PRODUCT_NAME
  70. #undef PRODUCT_NAME
  71. #endif
  72. #ifdef PRODUCT_NAME_LEN
  73. #undef PRODUCT_NAME_LEN
  74. #endif
  75. #ifdef EP0_SIZE
  76. #undef EP0_SIZE
  77. #endif
  78. #ifdef NUM_ENDPOINTS
  79. #undef NUM_ENDPOINTS
  80. #endif
  81. #ifdef NUM_USB_BUFFERS
  82. #undef NUM_USB_BUFFERS
  83. #endif
  84. #ifdef NUM_INTERFACE
  85. #undef NUM_INTERFACE
  86. #endif
  87. #ifdef CDC_STATUS_INTERFACE
  88. #undef CDC_STATUS_INTERFACE
  89. #endif
  90. #ifdef CDC_DATA_INTERFACE
  91. #undef CDC_DATA_INTERFACE
  92. #endif
  93. #ifdef CDC_ACM_ENDPOINT
  94. #undef CDC_ACM_ENDPOINT
  95. #endif
  96. #ifdef CDC_RX_ENDPOINT
  97. #undef CDC_RX_ENDPOINT
  98. #endif
  99. #ifdef CDC_TX_ENDPOINT
  100. #undef CDC_TX_ENDPOINT
  101. #endif
  102. #ifdef CDC_ACM_SIZE
  103. #undef CDC_ACM_SIZE
  104. #endif
  105. #ifdef CDC_RX_SIZE
  106. #undef CDC_RX_SIZE
  107. #endif
  108. #ifdef CDC_TX_SIZE
  109. #undef CDC_TX_SIZE
  110. #endif
  111. #ifdef SEREMU_INTERFACE
  112. #undef SEREMU_INTERFACE
  113. #endif
  114. #ifdef SEREMU_TX_ENDPOINT
  115. #undef SEREMU_TX_ENDPOINT
  116. #endif
  117. #ifdef SEREMU_TX_SIZE
  118. #undef SEREMU_TX_SIZE
  119. #endif
  120. #ifdef SEREMU_TX_INTERVAL
  121. #undef SEREMU_TX_INTERVAL
  122. #endif
  123. #ifdef SEREMU_RX_ENDPOINT
  124. #undef SEREMU_RX_ENDPOINT
  125. #endif
  126. #ifdef SEREMU_RX_SIZE
  127. #undef SEREMU_RX_SIZE
  128. #endif
  129. #ifdef SEREMU_RX_INTERVAL
  130. #undef SEREMU_RX_INTERVAL
  131. #endif
  132. #ifdef KEYBOARD_INTERFACE
  133. #undef KEYBOARD_INTERFACE
  134. #endif
  135. #ifdef KEYBOARD_ENDPOINT
  136. #undef KEYBOARD_ENDPOINT
  137. #endif
  138. #ifdef KEYBOARD_SIZE
  139. #undef KEYBOARD_SIZE
  140. #endif
  141. #ifdef KEYBOARD_INTERVAL
  142. #undef KEYBOARD_INTERVAL
  143. #endif
  144. #ifdef MOUSE_INTERFACE
  145. #undef MOUSE_INTERFACE
  146. #endif
  147. #ifdef MOUSE_ENDPOINT
  148. #undef MOUSE_ENDPOINT
  149. #endif
  150. #ifdef MOUSE_SIZE
  151. #undef MOUSE_SIZE
  152. #endif
  153. #ifdef MOUSE_INTERVAL
  154. #undef MOUSE_INTERVAL
  155. #endif
  156. #ifdef JOYSTICK_INTERFACE
  157. #undef JOYSTICK_INTERFACE
  158. #endif
  159. #ifdef JOYSTICK_ENDPOINT
  160. #undef JOYSTICK_ENDPOINT
  161. #endif
  162. #ifdef JOYSTICK_SIZE
  163. #undef JOYSTICK_SIZE
  164. #endif
  165. #ifdef JOYSTICK_INTERVAL
  166. #undef JOYSTICK_INTERVAL
  167. #endif
  168. #ifdef CDC_IAD_DESCRIPTOR
  169. #undef CDC_IAD_DESCRIPTOR
  170. #endif
  171. #ifdef MIDI_INTERFACE
  172. #undef MIDI_INTERFACE
  173. #endif
  174. #ifdef MIDI_NUM_CABLES
  175. #undef MIDI_NUM_CABLES
  176. #endif
  177. #ifdef MIDI_INTERFACE_JACK_PAIR
  178. #undef MIDI_INTERFACE_JACK_PAIR
  179. #endif
  180. #ifdef MIDI_TX_ENDPOINT
  181. #undef MIDI_TX_ENDPOINT
  182. #endif
  183. #ifdef MIDI_TX_SIZE
  184. #undef MIDI_TX_SIZE
  185. #endif
  186. #ifdef MIDI_RX_ENDPOINT
  187. #undef MIDI_RX_ENDPOINT
  188. #endif
  189. #ifdef MIDI_RX_SIZE
  190. #undef MIDI_RX_SIZE
  191. #endif
  192. #ifdef RAWHID_INTERFACE
  193. #undef RAWHID_INTERFACE
  194. #endif
  195. #ifdef RAWHID_TX_ENDPOINT
  196. #undef RAWHID_TX_ENDPOINT
  197. #endif
  198. #ifdef RAWHID_TX_SIZE
  199. #undef RAWHID_TX_SIZE
  200. #endif
  201. #ifdef RAWHID_TX_INTERVAL
  202. #undef RAWHID_TX_INTERVAL
  203. #endif
  204. #ifdef RAWHID_RX_ENDPOINT
  205. #undef RAWHID_RX_ENDPOINT
  206. #endif
  207. #ifdef RAWHID_RX_SIZE
  208. #undef RAWHID_RX_SIZE
  209. #endif
  210. #ifdef RAWHID_RX_INTERVAL
  211. #undef RAWHID_RX_INTERVAL
  212. #endif
  213. #ifdef FLIGHTSIM_INTERFACE
  214. #undef FLIGHTSIM_TX_ENDPOINT
  215. #endif
  216. #ifdef FLIGHTSIM_TX_SIZE
  217. #undef FLIGHTSIM_TX_SIZE
  218. #endif
  219. #ifdef FLIGHTSIM_TX_INTERVAL
  220. #undef FLIGHTSIM_TX_INTERVAL
  221. #endif
  222. #ifdef FLIGHTSIM_RX_ENDPOINT
  223. #undef FLIGHTSIM_RX_ENDPOINT
  224. #endif
  225. #ifdef FLIGHTSIM_RX_SIZE
  226. #undef FLIGHTSIM_RX_SIZE
  227. #endif
  228. #ifdef MTP_INTERFACE
  229. #undef MTP_INTERFACE
  230. #endif
  231. #ifdef MTP_TX_ENDPOINT
  232. #undef MTP_TX_ENDPOINT
  233. #endif
  234. #ifdef MTP_TX_SIZE
  235. #undef MTP_TX_SIZE
  236. #endif
  237. #ifdef MTP_RX_ENDPOINT
  238. #undef MTP_RX_ENDPOINT
  239. #endif
  240. #ifdef MTP_RX_SIZE
  241. #undef MTP_RX_SIZE
  242. #endif
  243. #ifdef MTP_EVENT_ENDPOINT
  244. #undef MTP_EVENT_ENDPOINT
  245. #endif
  246. #ifdef MTP_EVENT_SIZE
  247. #undef MTP_EVENT_SIZE
  248. #endif
  249. #ifdef MTP_EVENT_INTERVAL
  250. #undef MTP_EVENT_INTERVAL
  251. #endif
  252. #ifdef ENDPOINT1_CONFIG
  253. #undef ENDPOINT1_CONFIG
  254. #endif
  255. #ifdef ENDPOINT2_CONFIG
  256. #undef ENDPOINT2_CONFIG
  257. #endif
  258. #ifdef ENDPOINT3_CONFIG
  259. #undef ENDPOINT3_CONFIG
  260. #endif
  261. #ifdef ENDPOINT4_CONFIG
  262. #undef ENDPOINT4_CONFIG
  263. #endif
  264. #ifdef ENDPOINT5_CONFIG
  265. #undef ENDPOINT5_CONFIG
  266. #endif
  267. #ifdef ENDPOINT6_CONFIG
  268. #undef ENDPOINT6_CONFIG
  269. #endif
  270. #ifdef ENDPOINT7_CONFIG
  271. #undef ENDPOINT7_CONFIG
  272. #endif
  273. #ifdef ENDPOINT8_CONFIG
  274. #undef ENDPOINT8_CONFIG
  275. #endif
  276. #ifdef ENDPOINT9_CONFIG
  277. #undef ENDPOINT9_CONFIG
  278. #endif
  279. #ifdef ENDPOINT10_CONFIG
  280. #undef ENDPOINT10_CONFIG
  281. #endif
  282. #ifdef ENDPOINT11_CONFIG
  283. #undef ENDPOINT11_CONFIG
  284. #endif
  285. #ifdef ENDPOINT12_CONFIG
  286. #undef ENDPOINT12_CONFIG
  287. #endif
  288. #ifdef ENDPOINT13_CONFIG
  289. #undef ENDPOINT13_CONFIG
  290. #endif
  291. #ifdef ENDPOINT14_CONFIG
  292. #undef ENDPOINT14_CONFIG
  293. #endif
  294. #ifdef ENDPOINT15_CONFIG
  295. #undef ENDPOINT15_CONFIG
  296. #endif