Kconfig 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655
  1. #
  2. # HID driver configuration
  3. #
  4. menuconfig HID_SUPPORT
  5. bool "HID Devices"
  6. depends on INPUT
  7. default y
  8. ---help---
  9. Say Y here to get to see options for various computer-human interface
  10. device drivers. This option alone does not add any kernel code.
  11. If you say N, all options in this submenu will be skipped and disabled.
  12. if HID_SUPPORT
  13. config HID
  14. tristate "Generic HID support"
  15. depends on INPUT
  16. default y
  17. ---help---
  18. A human interface device (HID) is a type of computer device that
  19. interacts directly with and takes input from humans. The term "HID"
  20. most commonly used to refer to the USB-HID specification, but other
  21. devices (such as, but not strictly limited to, Bluetooth) are
  22. designed using HID specification (this involves certain keyboards,
  23. mice, tablets, etc). This option compiles into kernel the generic
  24. HID layer code (parser, usages, etc.), which can then be used by
  25. transport-specific HID implementation (like USB or Bluetooth).
  26. For docs and specs, see http://www.usb.org/developers/hidpage/
  27. If unsure, say Y.
  28. config HIDRAW
  29. bool "/dev/hidraw raw HID device support"
  30. depends on HID
  31. ---help---
  32. Say Y here if you want to support HID devices (from the USB
  33. specification standpoint) that aren't strictly user interface
  34. devices, like monitor controls and Uninterruptable Power Supplies.
  35. This module supports these devices separately using a separate
  36. event interface on /dev/hidraw.
  37. There is also a /dev/hiddev configuration option in the USB HID
  38. configuration menu. In comparison to hiddev, this device does not process
  39. the hid events at all (no parsing, no lookups). This lets applications
  40. to work on raw hid events when they want to, and avoid using transport-specific
  41. userspace libhid/libusb libraries.
  42. If unsure, say Y.
  43. source "drivers/hid/usbhid/Kconfig"
  44. menu "Special HID drivers"
  45. depends on HID
  46. config HID_A4TECH
  47. tristate "A4 tech mice" if EXPERT
  48. depends on USB_HID
  49. default !EXPERT
  50. ---help---
  51. Support for A4 tech X5 and WOP-35 / Trust 450L mice.
  52. config HID_ACRUX
  53. tristate "ACRUX game controller support"
  54. depends on USB_HID
  55. ---help---
  56. Say Y here if you want to enable support for ACRUX game controllers.
  57. config HID_ACRUX_FF
  58. bool "ACRUX force feedback support"
  59. depends on HID_ACRUX
  60. select INPUT_FF_MEMLESS
  61. ---help---
  62. Say Y here if you want to enable force feedback support for ACRUX
  63. game controllers.
  64. config HID_APPLE
  65. tristate "Apple {i,Power,Mac}Books" if EXPERT
  66. depends on (USB_HID || BT_HIDP)
  67. default !EXPERT
  68. ---help---
  69. Support for some Apple devices which less or more break
  70. HID specification.
  71. Say Y here if you want support for keyboards of Apple iBooks, PowerBooks,
  72. MacBooks, MacBook Pros and Apple Aluminum.
  73. config HID_BELKIN
  74. tristate "Belkin Flip KVM and Wireless keyboard" if EXPERT
  75. depends on USB_HID
  76. default !EXPERT
  77. ---help---
  78. Support for Belkin Flip KVM and Wireless keyboard.
  79. config HID_CHERRY
  80. tristate "Cherry Cymotion keyboard" if EXPERT
  81. depends on USB_HID
  82. default !EXPERT
  83. ---help---
  84. Support for Cherry Cymotion keyboard.
  85. config HID_CHICONY
  86. tristate "Chicony Tactical pad" if EXPERT
  87. depends on USB_HID
  88. default !EXPERT
  89. ---help---
  90. Support for Chicony Tactical pad.
  91. config HID_PRODIKEYS
  92. tristate "Prodikeys PC-MIDI Keyboard support"
  93. depends on USB_HID && SND
  94. select SND_RAWMIDI
  95. ---help---
  96. Support for Prodikeys PC-MIDI Keyboard device support.
  97. Say Y here to enable support for this device.
  98. - Prodikeys PC-MIDI keyboard.
  99. The Prodikeys PC-MIDI acts as a USB Audio device, with one MIDI
  100. input and one MIDI output. These MIDI jacks appear as
  101. a sound "card" in the ALSA sound system.
  102. Note: if you say N here, this device will still function as a basic
  103. multimedia keyboard, but will lack support for the musical keyboard
  104. and some additional multimedia keys.
  105. config HID_CYPRESS
  106. tristate "Cypress mouse and barcode readers" if EXPERT
  107. depends on USB_HID
  108. default !EXPERT
  109. ---help---
  110. Support for cypress mouse and barcode readers.
  111. config HID_DRAGONRISE
  112. tristate "DragonRise Inc. game controller"
  113. depends on USB_HID
  114. ---help---
  115. Say Y here if you have DragonRise Inc. game controllers.
  116. These might be branded as:
  117. - Tesun USB-703
  118. - Media-tech MT1504 "Rogue"
  119. - DVTech JS19 "Gear"
  120. - Defender Game Master
  121. config DRAGONRISE_FF
  122. bool "DragonRise Inc. force feedback"
  123. depends on HID_DRAGONRISE
  124. select INPUT_FF_MEMLESS
  125. ---help---
  126. Say Y here if you want to enable force feedback support for DragonRise Inc.
  127. game controllers.
  128. config HID_EMS_FF
  129. tristate "EMS Production Inc. force feedback support"
  130. depends on USB_HID
  131. select INPUT_FF_MEMLESS
  132. ---help---
  133. Say Y here if you want to enable force feedback support for devices by
  134. EMS Production Ltd.
  135. Currently the following devices are known to be supported:
  136. - Trio Linker Plus II
  137. config HID_ELECOM
  138. tristate "ELECOM BM084 bluetooth mouse"
  139. depends on BT_HIDP
  140. ---help---
  141. Support for the ELECOM BM084 (bluetooth mouse).
  142. config HID_EZKEY
  143. tristate "Ezkey BTC 8193 keyboard" if EXPERT
  144. depends on USB_HID
  145. default !EXPERT
  146. ---help---
  147. Support for Ezkey BTC 8193 keyboard.
  148. config HID_HOLTEK
  149. tristate "Holtek On Line Grip based game controller support"
  150. depends on USB_HID
  151. ---help---
  152. Say Y here if you have a Holtek On Line Grip based game controller.
  153. config HOLTEK_FF
  154. bool "Holtek On Line Grip force feedback support"
  155. depends on HID_HOLTEK
  156. select INPUT_FF_MEMLESS
  157. ---help---
  158. Say Y here if you have a Holtek On Line Grip based game controller
  159. and want to have force feedback support for it.
  160. config HID_KEYTOUCH
  161. tristate "Keytouch HID devices"
  162. depends on USB_HID
  163. ---help---
  164. Support for Keytouch HID devices not fully compliant with
  165. the specification. Currently supported:
  166. - Keytouch IEC 60945
  167. config HID_KYE
  168. tristate "Kye/Genius Ergo Mouse" if EXPERT
  169. depends on USB_HID
  170. default !EXPERT
  171. ---help---
  172. Support for Kye/Genius Ergo Mouse.
  173. config HID_UCLOGIC
  174. tristate "UC-Logic"
  175. depends on USB_HID
  176. ---help---
  177. Support for UC-Logic tablets.
  178. config HID_WALTOP
  179. tristate "Waltop"
  180. depends on USB_HID
  181. ---help---
  182. Support for Waltop tablets.
  183. config HID_GYRATION
  184. tristate "Gyration remote control"
  185. depends on USB_HID
  186. ---help---
  187. Support for Gyration remote control.
  188. config HID_TWINHAN
  189. tristate "Twinhan IR remote control"
  190. depends on USB_HID
  191. ---help---
  192. Support for Twinhan IR remote control.
  193. config HID_KENSINGTON
  194. tristate "Kensington Slimblade Trackball" if EXPERT
  195. depends on USB_HID
  196. default !EXPERT
  197. ---help---
  198. Support for Kensington Slimblade Trackball.
  199. config HID_LCPOWER
  200. tristate "LC-Power"
  201. depends on USB_HID
  202. ---help---
  203. Support for LC-Power RC1000MCE RF remote control.
  204. config HID_LOGITECH
  205. tristate "Logitech devices" if EXPERT
  206. depends on USB_HID
  207. default !EXPERT
  208. ---help---
  209. Support for Logitech devices that are not fully compliant with HID standard.
  210. config HID_LOGITECH_DJ
  211. tristate "Logitech Unifying receivers full support"
  212. depends on HID_LOGITECH
  213. default m
  214. ---help---
  215. Say Y if you want support for Logitech Unifying receivers and devices.
  216. Unifying receivers are capable of pairing up to 6 Logitech compliant
  217. devices to the same receiver.
  218. config LOGITECH_FF
  219. bool "Logitech force feedback support"
  220. depends on HID_LOGITECH
  221. select INPUT_FF_MEMLESS
  222. help
  223. Say Y here if you have one of these devices:
  224. - Logitech WingMan Cordless RumblePad
  225. - Logitech WingMan Cordless RumblePad 2
  226. - Logitech WingMan Force 3D
  227. - Logitech Formula Force EX
  228. - Logitech WingMan Formula Force GP
  229. - Logitech MOMO Force wheel
  230. and if you want to enable force feedback for them.
  231. Note: if you say N here, this device will still be supported, but without
  232. force feedback.
  233. config LOGIRUMBLEPAD2_FF
  234. bool "Logitech RumblePad/Rumblepad 2 force feedback support"
  235. depends on HID_LOGITECH
  236. select INPUT_FF_MEMLESS
  237. help
  238. Say Y here if you want to enable force feedback support for Logitech
  239. RumblePad and Rumblepad 2 devices.
  240. config LOGIG940_FF
  241. bool "Logitech Flight System G940 force feedback support"
  242. depends on HID_LOGITECH
  243. select INPUT_FF_MEMLESS
  244. help
  245. Say Y here if you want to enable force feedback support for Logitech
  246. Flight System G940 devices.
  247. config LOGIWHEELS_FF
  248. bool "Logitech wheels configuration and force feedback support"
  249. depends on HID_LOGITECH
  250. select INPUT_FF_MEMLESS
  251. default LOGITECH_FF
  252. help
  253. Say Y here if you want to enable force feedback and range setting
  254. support for following Logitech wheels:
  255. - Logitech Driving Force
  256. - Logitech Driving Force Pro
  257. - Logitech Driving Force GT
  258. - Logitech G25
  259. - Logitech G27
  260. - Logitech MOMO/MOMO 2
  261. - Logitech Formula Force EX
  262. config HID_MAGICMOUSE
  263. tristate "Apple MagicMouse multi-touch support"
  264. depends on BT_HIDP
  265. ---help---
  266. Support for the Apple Magic Mouse multi-touch.
  267. Say Y here if you want support for the multi-touch features of the
  268. Apple Wireless "Magic" Mouse.
  269. config HID_MICROSOFT
  270. tristate "Microsoft non-fully HID-compliant devices" if EXPERT
  271. depends on USB_HID
  272. default !EXPERT
  273. ---help---
  274. Support for Microsoft devices that are not fully compliant with HID standard.
  275. config HID_MONTEREY
  276. tristate "Monterey Genius KB29E keyboard" if EXPERT
  277. depends on USB_HID
  278. default !EXPERT
  279. ---help---
  280. Support for Monterey Genius KB29E.
  281. config HID_MULTITOUCH
  282. tristate "HID Multitouch panels"
  283. depends on USB_HID
  284. ---help---
  285. Generic support for HID multitouch panels.
  286. Say Y here if you have one of the following devices:
  287. - 3M PCT touch screens
  288. - ActionStar dual touch panels
  289. - Cando dual touch panels
  290. - Chunghwa panels
  291. - CVTouch panels
  292. - Cypress TrueTouch panels
  293. - Elo TouchSystems IntelliTouch Plus panels
  294. - GeneralTouch 'Sensing Win7-TwoFinger' panels
  295. - GoodTouch panels
  296. - Hanvon dual touch panels
  297. - Ilitek dual touch panels
  298. - IrTouch Infrared USB panels
  299. - LG Display panels (Dell ST2220Tc)
  300. - Lumio CrystalTouch panels
  301. - MosArt dual-touch panels
  302. - PenMount dual touch panels
  303. - Pixcir dual touch panels
  304. - eGalax dual-touch panels, including the Joojoo and Wetab tablets
  305. - Stantum multitouch panels
  306. - Touch International Panels
  307. - Unitec Panels
  308. - XAT optical touch panels
  309. If unsure, say N.
  310. To compile this driver as a module, choose M here: the
  311. module will be called hid-multitouch.
  312. config HID_NTRIG
  313. tristate "N-Trig touch screen"
  314. depends on USB_HID
  315. ---help---
  316. Support for N-Trig touch screen.
  317. config HID_ORTEK
  318. tristate "Ortek PKB-1700/WKB-2000/Skycable wireless keyboard and mouse trackpad"
  319. depends on USB_HID
  320. ---help---
  321. There are certain devices which have LogicalMaximum wrong in the keyboard
  322. usage page of their report descriptor. The most prevailing ones so far
  323. are manufactured by Ortek, thus the name of the driver. Currently
  324. supported devices by this driver are
  325. - Ortek PKB-1700
  326. - Ortek WKB-2000
  327. - Skycable wireless presenter
  328. config HID_PANTHERLORD
  329. tristate "Pantherlord/GreenAsia game controller"
  330. depends on USB_HID
  331. ---help---
  332. Say Y here if you have a PantherLord/GreenAsia based game controller
  333. or adapter.
  334. config PANTHERLORD_FF
  335. bool "Pantherlord force feedback support"
  336. depends on HID_PANTHERLORD
  337. select INPUT_FF_MEMLESS
  338. ---help---
  339. Say Y here if you have a PantherLord/GreenAsia based game controller
  340. or adapter and want to enable force feedback support for it.
  341. config HID_PETALYNX
  342. tristate "Petalynx Maxter remote control"
  343. depends on USB_HID
  344. ---help---
  345. Support for Petalynx Maxter remote control.
  346. config HID_PICOLCD
  347. tristate "PicoLCD (graphic version)"
  348. depends on USB_HID
  349. ---help---
  350. This provides support for Minibox PicoLCD devices, currently
  351. only the graphical ones are supported.
  352. This includes support for the following device features:
  353. - Keypad
  354. - Switching between Firmware and Flash mode
  355. - EEProm / Flash access (via debugfs)
  356. Features selectively enabled:
  357. - Framebuffer for monochrome 256x64 display
  358. - Backlight control
  359. - Contrast control
  360. - General purpose outputs
  361. Features that are not (yet) supported:
  362. - IR
  363. config HID_PICOLCD_FB
  364. bool "Framebuffer support" if EXPERT
  365. default !EXPERT
  366. depends on HID_PICOLCD
  367. depends on HID_PICOLCD=FB || FB=y
  368. select FB_DEFERRED_IO
  369. select FB_SYS_FILLRECT
  370. select FB_SYS_COPYAREA
  371. select FB_SYS_IMAGEBLIT
  372. select FB_SYS_FOPS
  373. ---help---
  374. Provide access to PicoLCD's 256x64 monochrome display via a
  375. frambuffer device.
  376. config HID_PICOLCD_BACKLIGHT
  377. bool "Backlight control" if EXPERT
  378. default !EXPERT
  379. depends on HID_PICOLCD
  380. depends on HID_PICOLCD=BACKLIGHT_CLASS_DEVICE || BACKLIGHT_CLASS_DEVICE=y
  381. ---help---
  382. Provide access to PicoLCD's backlight control via backlight
  383. class.
  384. config HID_PICOLCD_LCD
  385. bool "Contrast control" if EXPERT
  386. default !EXPERT
  387. depends on HID_PICOLCD
  388. depends on HID_PICOLCD=LCD_CLASS_DEVICE || LCD_CLASS_DEVICE=y
  389. ---help---
  390. Provide access to PicoLCD's LCD contrast via lcd class.
  391. config HID_PICOLCD_LEDS
  392. bool "GPO via leds class" if EXPERT
  393. default !EXPERT
  394. depends on HID_PICOLCD
  395. depends on HID_PICOLCD=LEDS_CLASS || LEDS_CLASS=y
  396. ---help---
  397. Provide access to PicoLCD's GPO pins via leds class.
  398. config HID_PRIMAX
  399. tristate "Primax non-fully HID-compliant devices"
  400. depends on USB_HID
  401. ---help---
  402. Support for Primax devices that are not fully compliant with the
  403. HID standard.
  404. config HID_QUANTA
  405. tristate "Quanta Optical Touch panels"
  406. depends on USB_HID
  407. ---help---
  408. Support for Quanta Optical Touch dual-touch panels.
  409. config HID_ROCCAT
  410. tristate "Roccat special event support"
  411. depends on USB_HID
  412. select HID_ROCCAT_COMMON
  413. ---help---
  414. Support for Roccat special events.
  415. Say Y here if you have a Roccat mouse or keyboard and want OSD or
  416. macro execution support.
  417. config HID_ROCCAT_COMMON
  418. tristate
  419. depends on HID_ROCCAT
  420. config HID_ROCCAT_ARVO
  421. tristate "Roccat Arvo keyboard support"
  422. depends on USB_HID
  423. depends on HID_ROCCAT
  424. ---help---
  425. Support for Roccat Arvo keyboard.
  426. config HID_ROCCAT_ISKU
  427. tristate "Roccat Isku keyboard support"
  428. depends on USB_HID
  429. depends on HID_ROCCAT
  430. ---help---
  431. Support for Roccat Isku keyboard.
  432. config HID_ROCCAT_KONE
  433. tristate "Roccat Kone Mouse support"
  434. depends on USB_HID
  435. depends on HID_ROCCAT
  436. ---help---
  437. Support for Roccat Kone mouse.
  438. config HID_ROCCAT_KONEPLUS
  439. tristate "Roccat Kone[+] mouse support"
  440. depends on USB_HID
  441. depends on HID_ROCCAT
  442. ---help---
  443. Support for Roccat Kone[+] mouse.
  444. config HID_ROCCAT_KOVAPLUS
  445. tristate "Roccat Kova[+] mouse support"
  446. depends on USB_HID
  447. depends on HID_ROCCAT
  448. ---help---
  449. Support for Roccat Kova[+] mouse.
  450. config HID_ROCCAT_PYRA
  451. tristate "Roccat Pyra mouse support"
  452. depends on USB_HID
  453. depends on HID_ROCCAT
  454. ---help---
  455. Support for Roccat Pyra mouse.
  456. config HID_SAMSUNG
  457. tristate "Samsung InfraRed remote control or keyboards"
  458. depends on USB_HID
  459. ---help---
  460. Support for Samsung InfraRed remote control or keyboards.
  461. config HID_SONY
  462. tristate "Sony PS3 controller"
  463. depends on USB_HID
  464. ---help---
  465. Support for Sony PS3 controller.
  466. config HID_SPEEDLINK
  467. tristate "Speedlink VAD Cezanne mouse support"
  468. depends on USB_HID
  469. ---help---
  470. Support for Speedlink Vicious and Divine Cezanne mouse.
  471. config HID_SUNPLUS
  472. tristate "Sunplus wireless desktop"
  473. depends on USB_HID
  474. ---help---
  475. Support for Sunplus wireless desktop.
  476. config HID_GREENASIA
  477. tristate "GreenAsia (Product ID 0x12) game controller support"
  478. depends on USB_HID
  479. ---help---
  480. Say Y here if you have a GreenAsia (Product ID 0x12) based game
  481. controller or adapter.
  482. config GREENASIA_FF
  483. bool "GreenAsia (Product ID 0x12) force feedback support"
  484. depends on HID_GREENASIA
  485. select INPUT_FF_MEMLESS
  486. ---help---
  487. Say Y here if you have a GreenAsia (Product ID 0x12) based game controller
  488. (like MANTA Warrior MM816 and SpeedLink Strike2 SL-6635) or adapter
  489. and want to enable force feedback support for it.
  490. config HID_SMARTJOYPLUS
  491. tristate "SmartJoy PLUS PS2/USB adapter support"
  492. depends on USB_HID
  493. ---help---
  494. Support for SmartJoy PLUS PS2/USB adapter, Super Dual Box,
  495. Super Joy Box 3 Pro, Super Dual Box Pro, and Super Joy Box 5 Pro.
  496. Note that DDR (Dance Dance Revolution) mode is not supported, nor
  497. is pressure sensitive buttons on the pro models.
  498. config SMARTJOYPLUS_FF
  499. bool "SmartJoy PLUS PS2/USB adapter force feedback support"
  500. depends on HID_SMARTJOYPLUS
  501. select INPUT_FF_MEMLESS
  502. ---help---
  503. Say Y here if you have a SmartJoy PLUS PS2/USB adapter and want to
  504. enable force feedback support for it.
  505. config HID_TOPSEED
  506. tristate "TopSeed Cyberlink, BTC Emprex, Conceptronic remote control support"
  507. depends on USB_HID
  508. ---help---
  509. Say Y if you have a TopSeed Cyberlink or BTC Emprex or Conceptronic
  510. CLLRCMCE remote control.
  511. config HID_THRUSTMASTER
  512. tristate "ThrustMaster devices support"
  513. depends on USB_HID
  514. ---help---
  515. Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or
  516. a THRUSTMASTER Ferrari GT Rumble Wheel.
  517. config THRUSTMASTER_FF
  518. bool "ThrustMaster devices force feedback support"
  519. depends on HID_THRUSTMASTER
  520. select INPUT_FF_MEMLESS
  521. ---help---
  522. Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or 3,
  523. a THRUSTMASTER Dual Trigger 3-in-1 or a THRUSTMASTER Ferrari GT
  524. Rumble Force or Force Feedback Wheel.
  525. config HID_WACOM
  526. tristate "Wacom Bluetooth devices support"
  527. depends on BT_HIDP
  528. ---help---
  529. Support for Wacom Graphire Bluetooth tablet.
  530. config HID_WACOM_POWER_SUPPLY
  531. bool "Wacom Bluetooth devices power supply status support"
  532. depends on HID_WACOM
  533. select POWER_SUPPLY
  534. ---help---
  535. Say Y here if you want to enable power supply status monitoring for
  536. Wacom Bluetooth devices.
  537. config HID_WIIMOTE
  538. tristate "Nintendo Wii Remote support"
  539. depends on BT_HIDP
  540. depends on LEDS_CLASS
  541. select POWER_SUPPLY
  542. ---help---
  543. Support for the Nintendo Wii Remote bluetooth device.
  544. config HID_ZEROPLUS
  545. tristate "Zeroplus based game controller support"
  546. depends on USB_HID
  547. ---help---
  548. Say Y here if you have a Zeroplus based game controller.
  549. config ZEROPLUS_FF
  550. bool "Zeroplus based game controller force feedback support"
  551. depends on HID_ZEROPLUS
  552. select INPUT_FF_MEMLESS
  553. ---help---
  554. Say Y here if you have a Zeroplus based game controller and want
  555. to have force feedback support for it.
  556. config HID_ZYDACRON
  557. tristate "Zydacron remote control support"
  558. depends on USB_HID
  559. ---help---
  560. Support for Zydacron remote control.
  561. endmenu
  562. endif # HID_SUPPORT