xref: /haiku/headers/os/drivers/usb/USB_hid_page_generic_device_controls.h (revision 2b76973fa2401f7a5edf68e6470f3d3210cbcff3)
1 /*
2  * Copyright 2004-2010, Haiku Inc. All Rights Reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef _USB_HID_PAGE_GENERIC_DEVICE_CONTROLS_H
6 #define _USB_HID_PAGE_GENERIC_DEVICE_CONTROLS_H
7 
8 
9 /* Reference:
10  *		HID Usage Page 0x06: GENERIC DEVICE CONTROLS
11  *		HID Usage Tables Ver. 1.12
12  *		http://www.usb.org/developers/devclass_docs/Hut1_12.pdf
13  */
14 
15 // Usage IDs
16 enum {
17 	B_HID_UID_GDEV_BATTERY_STRENGTH = 0x20,
18 	B_HID_UID_GDEV_WIRELESS_CHANNEL,
19 	B_HID_UID_GDEV_WIRELESS_ID,
20 	B_HID_UID_GDEV_DISCOVER_WIRELESS_CONTROL,
21 	B_HID_UID_GDEV_SECURITY_CODE_CHARACTER_ENTERED,
22 	B_HID_UID_GDEV_SECURITY_CODE_CHARACTER_ERASED,
23 	B_HID_UID_GDEV_SECURITY_CODE_CLEARED
24 };
25 
26 
27 #endif // _USB_HID_PAGE_GENERIC_DEVICE_CONTROLS_H
28