11a59d1b8SThomas Gleixner // SPDX-License-Identifier: GPL-2.0-or-later
2c080d89aSJiri Kosina /*
3c080d89aSJiri Kosina * (c) 1999 Andreas Gal <[email protected]>
4c080d89aSJiri Kosina * (c) 2000-2001 Vojtech Pavlik <[email protected]>
5a635f9ddSJiri Kosina * (c) 2007-2009 Jiri Kosina
6c080d89aSJiri Kosina *
7a635f9ddSJiri Kosina * HID debugging support
8c080d89aSJiri Kosina */
9c080d89aSJiri Kosina
10c080d89aSJiri Kosina /*
11c080d89aSJiri Kosina *
12c080d89aSJiri Kosina * Should you need to contact me, the author, you can do so either by
13c080d89aSJiri Kosina * e-mail - mail your message to <[email protected]>, or by paper mail:
14c080d89aSJiri Kosina * Vojtech Pavlik, Simunkova 1594, Prague 8, 182 00 Czech Republic
15c080d89aSJiri Kosina */
16c080d89aSJiri Kosina
174291ee30SJoe Perches #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
184291ee30SJoe Perches
19a635f9ddSJiri Kosina #include <linux/debugfs.h>
20a635f9ddSJiri Kosina #include <linux/seq_file.h>
2113054abbSVladis Dronov #include <linux/kfifo.h>
22174cd4b1SIngo Molnar #include <linux/sched/signal.h>
23ec37d321SPaul Gortmaker #include <linux/export.h>
245a0e3ad6STejun Heo #include <linux/slab.h>
25cd667ce2SJiri Kosina #include <linux/uaccess.h>
26cd667ce2SJiri Kosina #include <linux/poll.h>
27cd667ce2SJiri Kosina
28c080d89aSJiri Kosina #include <linux/hid.h>
294330eb2eSAdrian Bunk #include <linux/hid-debug.h>
30c080d89aSJiri Kosina
31a635f9ddSJiri Kosina static struct dentry *hid_debug_root;
32a635f9ddSJiri Kosina
33c080d89aSJiri Kosina struct hid_usage_entry {
34c080d89aSJiri Kosina unsigned page;
35c080d89aSJiri Kosina unsigned usage;
360ce1ac3bSJoe Perches const char *description;
37c080d89aSJiri Kosina };
38c080d89aSJiri Kosina
39c080d89aSJiri Kosina static const struct hid_usage_entry hid_usage_table[] = {
405465d9f5SThomas Kuehne { 0x00, 0, "Undefined" },
415465d9f5SThomas Kuehne { 0x01, 0, "GenericDesktop" },
425465d9f5SThomas Kuehne { 0x01, 0x0001, "Pointer" },
435465d9f5SThomas Kuehne { 0x01, 0x0002, "Mouse" },
445465d9f5SThomas Kuehne { 0x01, 0x0004, "Joystick" },
455465d9f5SThomas Kuehne { 0x01, 0x0005, "Gamepad" },
465465d9f5SThomas Kuehne { 0x01, 0x0006, "Keyboard" },
475465d9f5SThomas Kuehne { 0x01, 0x0007, "Keypad" },
485465d9f5SThomas Kuehne { 0x01, 0x0008, "MultiaxisController" },
495465d9f5SThomas Kuehne { 0x01, 0x0009, "TabletPCSystemControls" },
505465d9f5SThomas Kuehne { 0x01, 0x000a, "WaterCoolingDevice" },
515465d9f5SThomas Kuehne { 0x01, 0x000b, "ComputerChassisDevice" },
525465d9f5SThomas Kuehne { 0x01, 0x000c, "WirelessRadioControls" },
535465d9f5SThomas Kuehne { 0x01, 0x000d, "PortableDeviceControl" },
545465d9f5SThomas Kuehne { 0x01, 0x000e, "SystemMultiAxisController" },
555465d9f5SThomas Kuehne { 0x01, 0x000f, "SpatialController" },
565465d9f5SThomas Kuehne { 0x01, 0x0010, "AssistiveControl" },
575465d9f5SThomas Kuehne { 0x01, 0x0011, "DeviceDock" },
585465d9f5SThomas Kuehne { 0x01, 0x0012, "DockableDevice" },
595465d9f5SThomas Kuehne { 0x01, 0x0013, "CallStateManagementControl" },
605465d9f5SThomas Kuehne { 0x01, 0x0030, "X" },
615465d9f5SThomas Kuehne { 0x01, 0x0031, "Y" },
625465d9f5SThomas Kuehne { 0x01, 0x0032, "Z" },
635465d9f5SThomas Kuehne { 0x01, 0x0033, "Rx" },
645465d9f5SThomas Kuehne { 0x01, 0x0034, "Ry" },
655465d9f5SThomas Kuehne { 0x01, 0x0035, "Rz" },
665465d9f5SThomas Kuehne { 0x01, 0x0036, "Slider" },
675465d9f5SThomas Kuehne { 0x01, 0x0037, "Dial" },
685465d9f5SThomas Kuehne { 0x01, 0x0038, "Wheel" },
695465d9f5SThomas Kuehne { 0x01, 0x0039, "HatSwitch" },
705465d9f5SThomas Kuehne { 0x01, 0x003a, "CountedBuffer" },
715465d9f5SThomas Kuehne { 0x01, 0x003b, "ByteCount" },
725465d9f5SThomas Kuehne { 0x01, 0x003c, "MotionWakeup" },
735465d9f5SThomas Kuehne { 0x01, 0x003d, "Start" },
745465d9f5SThomas Kuehne { 0x01, 0x003e, "Select" },
755465d9f5SThomas Kuehne { 0x01, 0x0040, "Vx" },
765465d9f5SThomas Kuehne { 0x01, 0x0041, "Vy" },
775465d9f5SThomas Kuehne { 0x01, 0x0042, "Vz" },
785465d9f5SThomas Kuehne { 0x01, 0x0043, "Vbrx" },
795465d9f5SThomas Kuehne { 0x01, 0x0044, "Vbry" },
805465d9f5SThomas Kuehne { 0x01, 0x0045, "Vbrz" },
815465d9f5SThomas Kuehne { 0x01, 0x0046, "Vno" },
825465d9f5SThomas Kuehne { 0x01, 0x0047, "FeatureNotification" },
835465d9f5SThomas Kuehne { 0x01, 0x0048, "ResolutionMultiplier" },
845465d9f5SThomas Kuehne { 0x01, 0x0049, "Qx" },
855465d9f5SThomas Kuehne { 0x01, 0x004a, "Qy" },
865465d9f5SThomas Kuehne { 0x01, 0x004b, "Qz" },
875465d9f5SThomas Kuehne { 0x01, 0x004c, "Qw" },
885465d9f5SThomas Kuehne { 0x01, 0x0080, "SystemControl" },
895465d9f5SThomas Kuehne { 0x01, 0x0081, "SystemPowerDown" },
905465d9f5SThomas Kuehne { 0x01, 0x0082, "SystemSleep" },
915465d9f5SThomas Kuehne { 0x01, 0x0083, "SystemWakeUp" },
925465d9f5SThomas Kuehne { 0x01, 0x0084, "SystemContextMenu" },
935465d9f5SThomas Kuehne { 0x01, 0x0085, "SystemMainMenu" },
945465d9f5SThomas Kuehne { 0x01, 0x0086, "SystemAppMenu" },
955465d9f5SThomas Kuehne { 0x01, 0x0087, "SystemMenuHelp" },
965465d9f5SThomas Kuehne { 0x01, 0x0088, "SystemMenuExit" },
975465d9f5SThomas Kuehne { 0x01, 0x0089, "SystemMenuSelect" },
985465d9f5SThomas Kuehne { 0x01, 0x008a, "SystemMenuRight" },
995465d9f5SThomas Kuehne { 0x01, 0x008b, "SystemMenuLeft" },
1005465d9f5SThomas Kuehne { 0x01, 0x008c, "SystemMenuUp" },
1015465d9f5SThomas Kuehne { 0x01, 0x008d, "SystemMenuDown" },
1025465d9f5SThomas Kuehne { 0x01, 0x008e, "SystemColdRestart" },
1035465d9f5SThomas Kuehne { 0x01, 0x008f, "SystemWarmRestart" },
1045465d9f5SThomas Kuehne { 0x01, 0x0090, "DpadUp" },
1055465d9f5SThomas Kuehne { 0x01, 0x0091, "DpadDown" },
1065465d9f5SThomas Kuehne { 0x01, 0x0092, "DpadRight" },
1075465d9f5SThomas Kuehne { 0x01, 0x0093, "DpadLeft" },
1085465d9f5SThomas Kuehne { 0x01, 0x0094, "IndexTrigger" },
1095465d9f5SThomas Kuehne { 0x01, 0x0095, "PalmTrigger" },
1105465d9f5SThomas Kuehne { 0x01, 0x0096, "Thumbstick" },
1115465d9f5SThomas Kuehne { 0x01, 0x0097, "SystemFunctionShift" },
1125465d9f5SThomas Kuehne { 0x01, 0x0098, "SystemFunctionShiftLock" },
1135465d9f5SThomas Kuehne { 0x01, 0x0099, "SystemFunctionShiftLockIndicator" },
1145465d9f5SThomas Kuehne { 0x01, 0x009a, "SystemDismissNotification" },
1155465d9f5SThomas Kuehne { 0x01, 0x009b, "SystemDoNotDisturb" },
1165465d9f5SThomas Kuehne { 0x01, 0x00a0, "SystemDock" },
1175465d9f5SThomas Kuehne { 0x01, 0x00a1, "SystemUndock" },
1185465d9f5SThomas Kuehne { 0x01, 0x00a2, "SystemSetup" },
1195465d9f5SThomas Kuehne { 0x01, 0x00a3, "SystemBreak" },
1205465d9f5SThomas Kuehne { 0x01, 0x00a4, "SystemDebuggerBreak" },
1215465d9f5SThomas Kuehne { 0x01, 0x00a5, "ApplicationBreak" },
1225465d9f5SThomas Kuehne { 0x01, 0x00a6, "ApplicationDebuggerBreak" },
1235465d9f5SThomas Kuehne { 0x01, 0x00a7, "SystemSpeakerMute" },
1245465d9f5SThomas Kuehne { 0x01, 0x00a8, "SystemHibernate" },
1255465d9f5SThomas Kuehne { 0x01, 0x00a9, "SystemMicrophoneMute" },
1265465d9f5SThomas Kuehne { 0x01, 0x00b0, "SystemDisplayInvert" },
1275465d9f5SThomas Kuehne { 0x01, 0x00b1, "SystemDisplayInternal" },
1285465d9f5SThomas Kuehne { 0x01, 0x00b2, "SystemDisplayExternal" },
1295465d9f5SThomas Kuehne { 0x01, 0x00b3, "SystemDisplayBoth" },
1305465d9f5SThomas Kuehne { 0x01, 0x00b4, "SystemDisplayDual" },
1315465d9f5SThomas Kuehne { 0x01, 0x00b5, "SystemDisplayToggleIntExtMode" },
1325465d9f5SThomas Kuehne { 0x01, 0x00b6, "SystemDisplaySwapPrimarySecondary" },
1335465d9f5SThomas Kuehne { 0x01, 0x00b7, "SystemDisplayToggleLCDAutoscale" },
1345465d9f5SThomas Kuehne { 0x01, 0x00c0, "SensorZone" },
1355465d9f5SThomas Kuehne { 0x01, 0x00c1, "RPM" },
1365465d9f5SThomas Kuehne { 0x01, 0x00c2, "CoolantLevel" },
1375465d9f5SThomas Kuehne { 0x01, 0x00c3, "CoolantCriticalLevel" },
1385465d9f5SThomas Kuehne { 0x01, 0x00c4, "CoolantPump" },
1395465d9f5SThomas Kuehne { 0x01, 0x00c5, "ChassisEnclosure" },
1405465d9f5SThomas Kuehne { 0x01, 0x00c6, "WirelessRadioButton" },
1415465d9f5SThomas Kuehne { 0x01, 0x00c7, "WirelessRadioLED" },
1425465d9f5SThomas Kuehne { 0x01, 0x00c8, "WirelessRadioSliderSwitch" },
1435465d9f5SThomas Kuehne { 0x01, 0x00c9, "SystemDisplayRotationLockButton" },
1445465d9f5SThomas Kuehne { 0x01, 0x00ca, "SystemDisplayRotationLockSliderSwitch" },
1455465d9f5SThomas Kuehne { 0x01, 0x00cb, "ControlEnable" },
1465465d9f5SThomas Kuehne { 0x01, 0x00d0, "DockableDeviceUniqueID" },
1475465d9f5SThomas Kuehne { 0x01, 0x00d1, "DockableDeviceVendorID" },
1485465d9f5SThomas Kuehne { 0x01, 0x00d2, "DockableDevicePrimaryUsagePage" },
1495465d9f5SThomas Kuehne { 0x01, 0x00d3, "DockableDevicePrimaryUsageID" },
1505465d9f5SThomas Kuehne { 0x01, 0x00d4, "DockableDeviceDockingState" },
1515465d9f5SThomas Kuehne { 0x01, 0x00d5, "DockableDeviceDisplayOcclusion" },
1525465d9f5SThomas Kuehne { 0x01, 0x00d6, "DockableDeviceObjectType" },
1535465d9f5SThomas Kuehne { 0x01, 0x00e0, "CallActiveLED" },
1545465d9f5SThomas Kuehne { 0x01, 0x00e1, "CallMuteToggle" },
1555465d9f5SThomas Kuehne { 0x01, 0x00e2, "CallMuteLED" },
1565465d9f5SThomas Kuehne { 0x02, 0, "SimulationControls" },
1575465d9f5SThomas Kuehne { 0x02, 0x0001, "FlightSimulationDevice" },
1585465d9f5SThomas Kuehne { 0x02, 0x0002, "AutomobileSimulationDevice" },
1595465d9f5SThomas Kuehne { 0x02, 0x0003, "TankSimulationDevice" },
1605465d9f5SThomas Kuehne { 0x02, 0x0004, "SpaceshipSimulationDevice" },
1615465d9f5SThomas Kuehne { 0x02, 0x0005, "SubmarineSimulationDevice" },
1625465d9f5SThomas Kuehne { 0x02, 0x0006, "SailingSimulationDevice" },
1635465d9f5SThomas Kuehne { 0x02, 0x0007, "MotorcycleSimulationDevice" },
1645465d9f5SThomas Kuehne { 0x02, 0x0008, "SportsSimulationDevice" },
1655465d9f5SThomas Kuehne { 0x02, 0x0009, "AirplaneSimulationDevice" },
1665465d9f5SThomas Kuehne { 0x02, 0x000a, "HelicopterSimulationDevice" },
1675465d9f5SThomas Kuehne { 0x02, 0x000b, "MagicCarpetSimulationDevice" },
1685465d9f5SThomas Kuehne { 0x02, 0x000c, "BicycleSimulationDevice" },
1695465d9f5SThomas Kuehne { 0x02, 0x0020, "FlightControlStick" },
1705465d9f5SThomas Kuehne { 0x02, 0x0021, "FlightStick" },
1715465d9f5SThomas Kuehne { 0x02, 0x0022, "CyclicControl" },
1725465d9f5SThomas Kuehne { 0x02, 0x0023, "CyclicTrim" },
1735465d9f5SThomas Kuehne { 0x02, 0x0024, "FlightYoke" },
1745465d9f5SThomas Kuehne { 0x02, 0x0025, "TrackControl" },
1755465d9f5SThomas Kuehne { 0x02, 0x00b0, "Aileron" },
1765465d9f5SThomas Kuehne { 0x02, 0x00b1, "AileronTrim" },
1775465d9f5SThomas Kuehne { 0x02, 0x00b2, "AntiTorqueControl" },
1785465d9f5SThomas Kuehne { 0x02, 0x00b3, "AutopilotEnable" },
1795465d9f5SThomas Kuehne { 0x02, 0x00b4, "ChaffRelease" },
1805465d9f5SThomas Kuehne { 0x02, 0x00b5, "CollectiveControl" },
1815465d9f5SThomas Kuehne { 0x02, 0x00b6, "DiveBrake" },
1825465d9f5SThomas Kuehne { 0x02, 0x00b7, "ElectronicCountermeasures" },
1835465d9f5SThomas Kuehne { 0x02, 0x00b8, "Elevator" },
1845465d9f5SThomas Kuehne { 0x02, 0x00b9, "ElevatorTrim" },
1855465d9f5SThomas Kuehne { 0x02, 0x00ba, "Rudder" },
1865465d9f5SThomas Kuehne { 0x02, 0x00bb, "Throttle" },
1875465d9f5SThomas Kuehne { 0x02, 0x00bc, "FlightCommunications" },
1885465d9f5SThomas Kuehne { 0x02, 0x00bd, "FlareRelease" },
1895465d9f5SThomas Kuehne { 0x02, 0x00be, "LandingGear" },
1905465d9f5SThomas Kuehne { 0x02, 0x00bf, "ToeBrake" },
1915465d9f5SThomas Kuehne { 0x02, 0x00c0, "Trigger" },
1925465d9f5SThomas Kuehne { 0x02, 0x00c1, "WeaponsArm" },
1935465d9f5SThomas Kuehne { 0x02, 0x00c2, "WeaponsSelect" },
1945465d9f5SThomas Kuehne { 0x02, 0x00c3, "WingFlaps" },
1955465d9f5SThomas Kuehne { 0x02, 0x00c4, "Accelerator" },
1965465d9f5SThomas Kuehne { 0x02, 0x00c5, "Brake" },
1975465d9f5SThomas Kuehne { 0x02, 0x00c6, "Clutch" },
1985465d9f5SThomas Kuehne { 0x02, 0x00c7, "Shifter" },
1995465d9f5SThomas Kuehne { 0x02, 0x00c8, "Steering" },
2005465d9f5SThomas Kuehne { 0x02, 0x00c9, "TurretDirection" },
2015465d9f5SThomas Kuehne { 0x02, 0x00ca, "BarrelElevation" },
2025465d9f5SThomas Kuehne { 0x02, 0x00cb, "DivePlane" },
2035465d9f5SThomas Kuehne { 0x02, 0x00cc, "Ballast" },
2045465d9f5SThomas Kuehne { 0x02, 0x00cd, "BicycleCrank" },
2055465d9f5SThomas Kuehne { 0x02, 0x00ce, "HandleBars" },
2065465d9f5SThomas Kuehne { 0x02, 0x00cf, "FrontBrake" },
2075465d9f5SThomas Kuehne { 0x02, 0x00d0, "RearBrake" },
2085465d9f5SThomas Kuehne { 0x03, 0, "VRControls" },
2095465d9f5SThomas Kuehne { 0x03, 0x0001, "Belt" },
2105465d9f5SThomas Kuehne { 0x03, 0x0002, "BodySuit" },
2115465d9f5SThomas Kuehne { 0x03, 0x0003, "Flexor" },
2125465d9f5SThomas Kuehne { 0x03, 0x0004, "Glove" },
2135465d9f5SThomas Kuehne { 0x03, 0x0005, "HeadTracker" },
2145465d9f5SThomas Kuehne { 0x03, 0x0006, "HeadMountedDisplay" },
2155465d9f5SThomas Kuehne { 0x03, 0x0007, "HandTracker" },
2165465d9f5SThomas Kuehne { 0x03, 0x0008, "Oculometer" },
2175465d9f5SThomas Kuehne { 0x03, 0x0009, "Vest" },
2185465d9f5SThomas Kuehne { 0x03, 0x000a, "AnimatronicDevice" },
2195465d9f5SThomas Kuehne { 0x03, 0x0020, "StereoEnable" },
2205465d9f5SThomas Kuehne { 0x03, 0x0021, "DisplayEnable" },
2215465d9f5SThomas Kuehne { 0x04, 0, "SportControls" },
2225465d9f5SThomas Kuehne { 0x04, 0x0001, "BaseballBat" },
2235465d9f5SThomas Kuehne { 0x04, 0x0002, "GolfClub" },
2245465d9f5SThomas Kuehne { 0x04, 0x0003, "RowingMachine" },
2255465d9f5SThomas Kuehne { 0x04, 0x0004, "Treadmill" },
2265465d9f5SThomas Kuehne { 0x04, 0x0030, "Oar" },
2275465d9f5SThomas Kuehne { 0x04, 0x0031, "Slope" },
2285465d9f5SThomas Kuehne { 0x04, 0x0032, "Rate" },
2295465d9f5SThomas Kuehne { 0x04, 0x0033, "StickSpeed" },
2305465d9f5SThomas Kuehne { 0x04, 0x0034, "StickFaceAngle" },
2315465d9f5SThomas Kuehne { 0x04, 0x0035, "StickHeelToe" },
2325465d9f5SThomas Kuehne { 0x04, 0x0036, "StickFollowThrough" },
2335465d9f5SThomas Kuehne { 0x04, 0x0037, "StickTempo" },
2345465d9f5SThomas Kuehne { 0x04, 0x0038, "StickType" },
2355465d9f5SThomas Kuehne { 0x04, 0x0039, "StickHeight" },
2365465d9f5SThomas Kuehne { 0x04, 0x0050, "Putter" },
2375465d9f5SThomas Kuehne { 0x04, 0x0051, "1Iron" },
2385465d9f5SThomas Kuehne { 0x04, 0x0052, "2Iron" },
2395465d9f5SThomas Kuehne { 0x04, 0x0053, "3Iron" },
2405465d9f5SThomas Kuehne { 0x04, 0x0054, "4Iron" },
2415465d9f5SThomas Kuehne { 0x04, 0x0055, "5Iron" },
2425465d9f5SThomas Kuehne { 0x04, 0x0056, "6Iron" },
2435465d9f5SThomas Kuehne { 0x04, 0x0057, "7Iron" },
2445465d9f5SThomas Kuehne { 0x04, 0x0058, "8Iron" },
2455465d9f5SThomas Kuehne { 0x04, 0x0059, "9Iron" },
2465465d9f5SThomas Kuehne { 0x04, 0x005a, "10Iron" },
2475465d9f5SThomas Kuehne { 0x04, 0x005b, "11Iron" },
2485465d9f5SThomas Kuehne { 0x04, 0x005c, "SandWedge" },
2495465d9f5SThomas Kuehne { 0x04, 0x005d, "LoftWedge" },
2505465d9f5SThomas Kuehne { 0x04, 0x005e, "PowerWedge" },
2515465d9f5SThomas Kuehne { 0x04, 0x005f, "1Wood" },
2525465d9f5SThomas Kuehne { 0x04, 0x0060, "3Wood" },
2535465d9f5SThomas Kuehne { 0x04, 0x0061, "5Wood" },
2545465d9f5SThomas Kuehne { 0x04, 0x0062, "7Wood" },
2555465d9f5SThomas Kuehne { 0x04, 0x0063, "9Wood" },
2565465d9f5SThomas Kuehne { 0x05, 0, "GameControls" },
2575465d9f5SThomas Kuehne { 0x05, 0x0001, "3DGameController" },
2585465d9f5SThomas Kuehne { 0x05, 0x0002, "PinballDevice" },
2595465d9f5SThomas Kuehne { 0x05, 0x0003, "GunDevice" },
2605465d9f5SThomas Kuehne { 0x05, 0x0020, "PointofView" },
2615465d9f5SThomas Kuehne { 0x05, 0x0021, "TurnRightLeft" },
2625465d9f5SThomas Kuehne { 0x05, 0x0022, "PitchForwardBackward" },
2635465d9f5SThomas Kuehne { 0x05, 0x0023, "RollRightLeft" },
2645465d9f5SThomas Kuehne { 0x05, 0x0024, "MoveRightLeft" },
2655465d9f5SThomas Kuehne { 0x05, 0x0025, "MoveForwardBackward" },
2665465d9f5SThomas Kuehne { 0x05, 0x0026, "MoveUpDown" },
2675465d9f5SThomas Kuehne { 0x05, 0x0027, "LeanRightLeft" },
2685465d9f5SThomas Kuehne { 0x05, 0x0028, "LeanForwardBackward" },
2695465d9f5SThomas Kuehne { 0x05, 0x0029, "HeightofPOV" },
2705465d9f5SThomas Kuehne { 0x05, 0x002a, "Flipper" },
2715465d9f5SThomas Kuehne { 0x05, 0x002b, "SecondaryFlipper" },
2725465d9f5SThomas Kuehne { 0x05, 0x002c, "Bump" },
2735465d9f5SThomas Kuehne { 0x05, 0x002d, "NewGame" },
2745465d9f5SThomas Kuehne { 0x05, 0x002e, "ShootBall" },
2755465d9f5SThomas Kuehne { 0x05, 0x002f, "Player" },
2765465d9f5SThomas Kuehne { 0x05, 0x0030, "GunBolt" },
2775465d9f5SThomas Kuehne { 0x05, 0x0031, "GunClip" },
2785465d9f5SThomas Kuehne { 0x05, 0x0032, "GunSelector" },
2795465d9f5SThomas Kuehne { 0x05, 0x0033, "GunSingleShot" },
2805465d9f5SThomas Kuehne { 0x05, 0x0034, "GunBurst" },
2815465d9f5SThomas Kuehne { 0x05, 0x0035, "GunAutomatic" },
2825465d9f5SThomas Kuehne { 0x05, 0x0036, "GunSafety" },
2835465d9f5SThomas Kuehne { 0x05, 0x0037, "GamepadFireJump" },
2845465d9f5SThomas Kuehne { 0x05, 0x0039, "GamepadTrigger" },
2855465d9f5SThomas Kuehne { 0x05, 0x003a, "FormfittingGamepad" },
2865465d9f5SThomas Kuehne { 0x06, 0, "GenericDeviceControls" },
2875465d9f5SThomas Kuehne { 0x06, 0x0001, "BackgroundNonuserControls" },
2885465d9f5SThomas Kuehne { 0x06, 0x0020, "BatteryStrength" },
2895465d9f5SThomas Kuehne { 0x06, 0x0021, "WirelessChannel" },
2905465d9f5SThomas Kuehne { 0x06, 0x0022, "WirelessID" },
2915465d9f5SThomas Kuehne { 0x06, 0x0023, "DiscoverWirelessControl" },
2925465d9f5SThomas Kuehne { 0x06, 0x0024, "SecurityCodeCharacterEntered" },
2935465d9f5SThomas Kuehne { 0x06, 0x0025, "SecurityCodeCharacterErased" },
2945465d9f5SThomas Kuehne { 0x06, 0x0026, "SecurityCodeCleared" },
2955465d9f5SThomas Kuehne { 0x06, 0x0027, "SequenceID" },
2965465d9f5SThomas Kuehne { 0x06, 0x0028, "SequenceIDReset" },
2975465d9f5SThomas Kuehne { 0x06, 0x0029, "RFSignalStrength" },
2985465d9f5SThomas Kuehne { 0x06, 0x002a, "SoftwareVersion" },
2995465d9f5SThomas Kuehne { 0x06, 0x002b, "ProtocolVersion" },
3005465d9f5SThomas Kuehne { 0x06, 0x002c, "HardwareVersion" },
3015465d9f5SThomas Kuehne { 0x06, 0x002d, "Major" },
3025465d9f5SThomas Kuehne { 0x06, 0x002e, "Minor" },
3035465d9f5SThomas Kuehne { 0x06, 0x002f, "Revision" },
3045465d9f5SThomas Kuehne { 0x06, 0x0030, "Handedness" },
3055465d9f5SThomas Kuehne { 0x06, 0x0031, "EitherHand" },
3065465d9f5SThomas Kuehne { 0x06, 0x0032, "LeftHand" },
3075465d9f5SThomas Kuehne { 0x06, 0x0033, "RightHand" },
3085465d9f5SThomas Kuehne { 0x06, 0x0034, "BothHands" },
3095465d9f5SThomas Kuehne { 0x06, 0x0040, "GripPoseOffset" },
3105465d9f5SThomas Kuehne { 0x06, 0x0041, "PointerPoseOffset" },
3115465d9f5SThomas Kuehne { 0x07, 0, "KeyboardKeypad" },
3125465d9f5SThomas Kuehne { 0x07, 0x0001, "ErrorRollOver" },
3135465d9f5SThomas Kuehne { 0x07, 0x0002, "POSTFail" },
3145465d9f5SThomas Kuehne { 0x07, 0x0003, "ErrorUndefined" },
3155465d9f5SThomas Kuehne { 0x07, 0x0004, "KeyboardA" },
3165465d9f5SThomas Kuehne { 0x07, 0x0005, "KeyboardB" },
3175465d9f5SThomas Kuehne { 0x07, 0x0006, "KeyboardC" },
3185465d9f5SThomas Kuehne { 0x07, 0x0007, "KeyboardD" },
3195465d9f5SThomas Kuehne { 0x07, 0x0008, "KeyboardE" },
3205465d9f5SThomas Kuehne { 0x07, 0x0009, "KeyboardF" },
3215465d9f5SThomas Kuehne { 0x07, 0x000a, "KeyboardG" },
3225465d9f5SThomas Kuehne { 0x07, 0x000b, "KeyboardH" },
3235465d9f5SThomas Kuehne { 0x07, 0x000c, "KeyboardI" },
3245465d9f5SThomas Kuehne { 0x07, 0x000d, "KeyboardJ" },
3255465d9f5SThomas Kuehne { 0x07, 0x000e, "KeyboardK" },
3265465d9f5SThomas Kuehne { 0x07, 0x000f, "KeyboardL" },
3275465d9f5SThomas Kuehne { 0x07, 0x0010, "KeyboardM" },
3285465d9f5SThomas Kuehne { 0x07, 0x0011, "KeyboardN" },
3295465d9f5SThomas Kuehne { 0x07, 0x0012, "KeyboardO" },
3305465d9f5SThomas Kuehne { 0x07, 0x0013, "KeyboardP" },
3315465d9f5SThomas Kuehne { 0x07, 0x0014, "KeyboardQ" },
3325465d9f5SThomas Kuehne { 0x07, 0x0015, "KeyboardR" },
3335465d9f5SThomas Kuehne { 0x07, 0x0016, "KeyboardS" },
3345465d9f5SThomas Kuehne { 0x07, 0x0017, "KeyboardT" },
3355465d9f5SThomas Kuehne { 0x07, 0x0018, "KeyboardU" },
3365465d9f5SThomas Kuehne { 0x07, 0x0019, "KeyboardV" },
3375465d9f5SThomas Kuehne { 0x07, 0x001a, "KeyboardW" },
3385465d9f5SThomas Kuehne { 0x07, 0x001b, "KeyboardX" },
3395465d9f5SThomas Kuehne { 0x07, 0x001c, "KeyboardY" },
3405465d9f5SThomas Kuehne { 0x07, 0x001d, "KeyboardZ" },
3415465d9f5SThomas Kuehne { 0x07, 0x001e, "Keyboard1andBang" },
3425465d9f5SThomas Kuehne { 0x07, 0x001f, "Keyboard2andAt" },
3435465d9f5SThomas Kuehne { 0x07, 0x0020, "Keyboard3andHash" },
3445465d9f5SThomas Kuehne { 0x07, 0x0021, "Keyboard4andDollar" },
3455465d9f5SThomas Kuehne { 0x07, 0x0022, "Keyboard5andPercent" },
3465465d9f5SThomas Kuehne { 0x07, 0x0023, "Keyboard6andCaret" },
3475465d9f5SThomas Kuehne { 0x07, 0x0024, "Keyboard7andAmpersand" },
3485465d9f5SThomas Kuehne { 0x07, 0x0025, "Keyboard8andStar" },
3495465d9f5SThomas Kuehne { 0x07, 0x0026, "Keyboard9andLeftBracket" },
3505465d9f5SThomas Kuehne { 0x07, 0x0027, "Keyboard0andRightBracket" },
3515465d9f5SThomas Kuehne { 0x07, 0x0028, "KeyboardReturnEnter" },
3525465d9f5SThomas Kuehne { 0x07, 0x0029, "KeyboardEscape" },
3535465d9f5SThomas Kuehne { 0x07, 0x002a, "KeyboardDelete" },
3545465d9f5SThomas Kuehne { 0x07, 0x002b, "KeyboardTab" },
3555465d9f5SThomas Kuehne { 0x07, 0x002c, "KeyboardSpacebar" },
3565465d9f5SThomas Kuehne { 0x07, 0x002d, "KeyboardDashandUnderscore" },
3575465d9f5SThomas Kuehne { 0x07, 0x002e, "KeyboardEqualsandPlus" },
3585465d9f5SThomas Kuehne { 0x07, 0x002f, "KeyboardLeftBrace" },
3595465d9f5SThomas Kuehne { 0x07, 0x0030, "KeyboardRightBrace" },
3605465d9f5SThomas Kuehne { 0x07, 0x0031, "KeyboardBackslashandPipe" },
3615465d9f5SThomas Kuehne { 0x07, 0x0032, "KeyboardNonUSHashandTilde" },
3625465d9f5SThomas Kuehne { 0x07, 0x0033, "KeyboardSemiColonandColon" },
3635465d9f5SThomas Kuehne { 0x07, 0x0034, "KeyboardLeftAposandDouble" },
3645465d9f5SThomas Kuehne { 0x07, 0x0035, "KeyboardGraveAccentandTilde" },
3655465d9f5SThomas Kuehne { 0x07, 0x0036, "KeyboardCommaandLessThan" },
3665465d9f5SThomas Kuehne { 0x07, 0x0037, "KeyboardPeriodandGreaterThan" },
3675465d9f5SThomas Kuehne { 0x07, 0x0038, "KeyboardForwardSlashandQuestionMark" },
3685465d9f5SThomas Kuehne { 0x07, 0x0039, "KeyboardCapsLock" },
3695465d9f5SThomas Kuehne { 0x07, 0x003a, "KeyboardF1" },
3705465d9f5SThomas Kuehne { 0x07, 0x003b, "KeyboardF2" },
3715465d9f5SThomas Kuehne { 0x07, 0x003c, "KeyboardF3" },
3725465d9f5SThomas Kuehne { 0x07, 0x003d, "KeyboardF4" },
3735465d9f5SThomas Kuehne { 0x07, 0x003e, "KeyboardF5" },
3745465d9f5SThomas Kuehne { 0x07, 0x003f, "KeyboardF6" },
3755465d9f5SThomas Kuehne { 0x07, 0x0040, "KeyboardF7" },
3765465d9f5SThomas Kuehne { 0x07, 0x0041, "KeyboardF8" },
3775465d9f5SThomas Kuehne { 0x07, 0x0042, "KeyboardF9" },
3785465d9f5SThomas Kuehne { 0x07, 0x0043, "KeyboardF10" },
3795465d9f5SThomas Kuehne { 0x07, 0x0044, "KeyboardF11" },
3805465d9f5SThomas Kuehne { 0x07, 0x0045, "KeyboardF12" },
3815465d9f5SThomas Kuehne { 0x07, 0x0046, "KeyboardPrintScreen" },
3825465d9f5SThomas Kuehne { 0x07, 0x0047, "KeyboardScrollLock" },
3835465d9f5SThomas Kuehne { 0x07, 0x0048, "KeyboardPause" },
3845465d9f5SThomas Kuehne { 0x07, 0x0049, "KeyboardInsert" },
3855465d9f5SThomas Kuehne { 0x07, 0x004a, "KeyboardHome" },
3865465d9f5SThomas Kuehne { 0x07, 0x004b, "KeyboardPageUp" },
3875465d9f5SThomas Kuehne { 0x07, 0x004c, "KeyboardDeleteForward" },
3885465d9f5SThomas Kuehne { 0x07, 0x004d, "KeyboardEnd" },
3895465d9f5SThomas Kuehne { 0x07, 0x004e, "KeyboardPageDown" },
3905465d9f5SThomas Kuehne { 0x07, 0x004f, "KeyboardRightArrow" },
3915465d9f5SThomas Kuehne { 0x07, 0x0050, "KeyboardLeftArrow" },
3925465d9f5SThomas Kuehne { 0x07, 0x0051, "KeyboardDownArrow" },
3935465d9f5SThomas Kuehne { 0x07, 0x0052, "KeyboardUpArrow" },
3945465d9f5SThomas Kuehne { 0x07, 0x0053, "KeypadNumLockandClear" },
3955465d9f5SThomas Kuehne { 0x07, 0x0054, "KeypadForwardSlash" },
3965465d9f5SThomas Kuehne { 0x07, 0x0055, "KeypadStar" },
3975465d9f5SThomas Kuehne { 0x07, 0x0056, "KeypadDash" },
3985465d9f5SThomas Kuehne { 0x07, 0x0057, "KeypadPlus" },
3995465d9f5SThomas Kuehne { 0x07, 0x0058, "KeypadENTER" },
4005465d9f5SThomas Kuehne { 0x07, 0x0059, "Keypad1andEnd" },
4015465d9f5SThomas Kuehne { 0x07, 0x005a, "Keypad2andDownArrow" },
4025465d9f5SThomas Kuehne { 0x07, 0x005b, "Keypad3andPageDn" },
4035465d9f5SThomas Kuehne { 0x07, 0x005c, "Keypad4andLeftArrow" },
4045465d9f5SThomas Kuehne { 0x07, 0x005d, "Keypad5" },
4055465d9f5SThomas Kuehne { 0x07, 0x005e, "Keypad6andRightArrow" },
4065465d9f5SThomas Kuehne { 0x07, 0x005f, "Keypad7andHome" },
4075465d9f5SThomas Kuehne { 0x07, 0x0060, "Keypad8andUpArrow" },
4085465d9f5SThomas Kuehne { 0x07, 0x0061, "Keypad9andPageUp" },
4095465d9f5SThomas Kuehne { 0x07, 0x0062, "Keypad0andInsert" },
4105465d9f5SThomas Kuehne { 0x07, 0x0063, "KeypadPeriodandDelete" },
4115465d9f5SThomas Kuehne { 0x07, 0x0064, "KeyboardNonUSBackslashandPipe" },
4125465d9f5SThomas Kuehne { 0x07, 0x0065, "KeyboardApplication" },
4135465d9f5SThomas Kuehne { 0x07, 0x0066, "KeyboardPower" },
4145465d9f5SThomas Kuehne { 0x07, 0x0067, "KeypadEquals" },
4155465d9f5SThomas Kuehne { 0x07, 0x0068, "KeyboardF13" },
4165465d9f5SThomas Kuehne { 0x07, 0x0069, "KeyboardF14" },
4175465d9f5SThomas Kuehne { 0x07, 0x006a, "KeyboardF15" },
4185465d9f5SThomas Kuehne { 0x07, 0x006b, "KeyboardF16" },
4195465d9f5SThomas Kuehne { 0x07, 0x006c, "KeyboardF17" },
4205465d9f5SThomas Kuehne { 0x07, 0x006d, "KeyboardF18" },
4215465d9f5SThomas Kuehne { 0x07, 0x006e, "KeyboardF19" },
4225465d9f5SThomas Kuehne { 0x07, 0x006f, "KeyboardF20" },
4235465d9f5SThomas Kuehne { 0x07, 0x0070, "KeyboardF21" },
4245465d9f5SThomas Kuehne { 0x07, 0x0071, "KeyboardF22" },
4255465d9f5SThomas Kuehne { 0x07, 0x0072, "KeyboardF23" },
4265465d9f5SThomas Kuehne { 0x07, 0x0073, "KeyboardF24" },
4275465d9f5SThomas Kuehne { 0x07, 0x0074, "KeyboardExecute" },
4285465d9f5SThomas Kuehne { 0x07, 0x0075, "KeyboardHelp" },
4295465d9f5SThomas Kuehne { 0x07, 0x0076, "KeyboardMenu" },
4305465d9f5SThomas Kuehne { 0x07, 0x0077, "KeyboardSelect" },
4315465d9f5SThomas Kuehne { 0x07, 0x0078, "KeyboardStop" },
4325465d9f5SThomas Kuehne { 0x07, 0x0079, "KeyboardAgain" },
4335465d9f5SThomas Kuehne { 0x07, 0x007a, "KeyboardUndo" },
4345465d9f5SThomas Kuehne { 0x07, 0x007b, "KeyboardCut" },
4355465d9f5SThomas Kuehne { 0x07, 0x007c, "KeyboardCopy" },
4365465d9f5SThomas Kuehne { 0x07, 0x007d, "KeyboardPaste" },
4375465d9f5SThomas Kuehne { 0x07, 0x007e, "KeyboardFind" },
4385465d9f5SThomas Kuehne { 0x07, 0x007f, "KeyboardMute" },
4395465d9f5SThomas Kuehne { 0x07, 0x0080, "KeyboardVolumeUp" },
4405465d9f5SThomas Kuehne { 0x07, 0x0081, "KeyboardVolumeDown" },
4415465d9f5SThomas Kuehne { 0x07, 0x0082, "KeyboardLockingCapsLock" },
4425465d9f5SThomas Kuehne { 0x07, 0x0083, "KeyboardLockingNumLock" },
4435465d9f5SThomas Kuehne { 0x07, 0x0084, "KeyboardLockingScrollLock" },
4445465d9f5SThomas Kuehne { 0x07, 0x0085, "KeypadComma" },
4455465d9f5SThomas Kuehne { 0x07, 0x0086, "KeypadEqualSign" },
4465465d9f5SThomas Kuehne { 0x07, 0x0087, "KeyboardInternational1" },
4475465d9f5SThomas Kuehne { 0x07, 0x0088, "KeyboardInternational2" },
4485465d9f5SThomas Kuehne { 0x07, 0x0089, "KeyboardInternational3" },
4495465d9f5SThomas Kuehne { 0x07, 0x008a, "KeyboardInternational4" },
4505465d9f5SThomas Kuehne { 0x07, 0x008b, "KeyboardInternational5" },
4515465d9f5SThomas Kuehne { 0x07, 0x008c, "KeyboardInternational6" },
4525465d9f5SThomas Kuehne { 0x07, 0x008d, "KeyboardInternational7" },
4535465d9f5SThomas Kuehne { 0x07, 0x008e, "KeyboardInternational8" },
4545465d9f5SThomas Kuehne { 0x07, 0x008f, "KeyboardInternational9" },
4555465d9f5SThomas Kuehne { 0x07, 0x0090, "KeyboardLANG1" },
4565465d9f5SThomas Kuehne { 0x07, 0x0091, "KeyboardLANG2" },
4575465d9f5SThomas Kuehne { 0x07, 0x0092, "KeyboardLANG3" },
4585465d9f5SThomas Kuehne { 0x07, 0x0093, "KeyboardLANG4" },
4595465d9f5SThomas Kuehne { 0x07, 0x0094, "KeyboardLANG5" },
4605465d9f5SThomas Kuehne { 0x07, 0x0095, "KeyboardLANG6" },
4615465d9f5SThomas Kuehne { 0x07, 0x0096, "KeyboardLANG7" },
4625465d9f5SThomas Kuehne { 0x07, 0x0097, "KeyboardLANG8" },
4635465d9f5SThomas Kuehne { 0x07, 0x0098, "KeyboardLANG9" },
4645465d9f5SThomas Kuehne { 0x07, 0x0099, "KeyboardAlternateErase" },
4655465d9f5SThomas Kuehne { 0x07, 0x009a, "KeyboardSysReqAttention" },
4665465d9f5SThomas Kuehne { 0x07, 0x009b, "KeyboardCancel" },
4675465d9f5SThomas Kuehne { 0x07, 0x009c, "KeyboardClear" },
4685465d9f5SThomas Kuehne { 0x07, 0x009d, "KeyboardPrior" },
4695465d9f5SThomas Kuehne { 0x07, 0x009e, "KeyboardReturn" },
4705465d9f5SThomas Kuehne { 0x07, 0x009f, "KeyboardSeparator" },
4715465d9f5SThomas Kuehne { 0x07, 0x00a0, "KeyboardOut" },
4725465d9f5SThomas Kuehne { 0x07, 0x00a1, "KeyboardOper" },
4735465d9f5SThomas Kuehne { 0x07, 0x00a2, "KeyboardClearAgain" },
4745465d9f5SThomas Kuehne { 0x07, 0x00a3, "KeyboardCrSelProps" },
4755465d9f5SThomas Kuehne { 0x07, 0x00a4, "KeyboardExSel" },
4765465d9f5SThomas Kuehne { 0x07, 0x00b0, "KeypadDouble0" },
4775465d9f5SThomas Kuehne { 0x07, 0x00b1, "KeypadTriple0" },
4785465d9f5SThomas Kuehne { 0x07, 0x00b2, "ThousandsSeparator" },
4795465d9f5SThomas Kuehne { 0x07, 0x00b3, "DecimalSeparator" },
4805465d9f5SThomas Kuehne { 0x07, 0x00b4, "CurrencyUnit" },
4815465d9f5SThomas Kuehne { 0x07, 0x00b5, "CurrencySubunit" },
4825465d9f5SThomas Kuehne { 0x07, 0x00b6, "KeypadLeftBracket" },
4835465d9f5SThomas Kuehne { 0x07, 0x00b7, "KeypadRightBracket" },
4845465d9f5SThomas Kuehne { 0x07, 0x00b8, "KeypadLeftBrace" },
4855465d9f5SThomas Kuehne { 0x07, 0x00b9, "KeypadRightBrace" },
4865465d9f5SThomas Kuehne { 0x07, 0x00ba, "KeypadTab" },
4875465d9f5SThomas Kuehne { 0x07, 0x00bb, "KeypadBackspace" },
4885465d9f5SThomas Kuehne { 0x07, 0x00bc, "KeypadA" },
4895465d9f5SThomas Kuehne { 0x07, 0x00bd, "KeypadB" },
4905465d9f5SThomas Kuehne { 0x07, 0x00be, "KeypadC" },
4915465d9f5SThomas Kuehne { 0x07, 0x00bf, "KeypadD" },
4925465d9f5SThomas Kuehne { 0x07, 0x00c0, "KeypadE" },
4935465d9f5SThomas Kuehne { 0x07, 0x00c1, "KeypadF" },
4945465d9f5SThomas Kuehne { 0x07, 0x00c2, "KeypadXOR" },
4955465d9f5SThomas Kuehne { 0x07, 0x00c3, "KeypadCaret" },
4965465d9f5SThomas Kuehne { 0x07, 0x00c4, "KeypadPercentage" },
4975465d9f5SThomas Kuehne { 0x07, 0x00c5, "KeypadLess" },
4985465d9f5SThomas Kuehne { 0x07, 0x00c6, "KeypadGreater" },
4995465d9f5SThomas Kuehne { 0x07, 0x00c7, "KeypadAmpersand" },
5005465d9f5SThomas Kuehne { 0x07, 0x00c8, "KeypadDoubleAmpersand" },
5015465d9f5SThomas Kuehne { 0x07, 0x00c9, "KeypadBar" },
5025465d9f5SThomas Kuehne { 0x07, 0x00ca, "KeypadDoubleBar" },
5035465d9f5SThomas Kuehne { 0x07, 0x00cb, "KeypadColon" },
5045465d9f5SThomas Kuehne { 0x07, 0x00cc, "KeypadHash" },
5055465d9f5SThomas Kuehne { 0x07, 0x00cd, "KeypadSpace" },
5065465d9f5SThomas Kuehne { 0x07, 0x00ce, "KeypadAt" },
5075465d9f5SThomas Kuehne { 0x07, 0x00cf, "KeypadBang" },
5085465d9f5SThomas Kuehne { 0x07, 0x00d0, "KeypadMemoryStore" },
5095465d9f5SThomas Kuehne { 0x07, 0x00d1, "KeypadMemoryRecall" },
5105465d9f5SThomas Kuehne { 0x07, 0x00d2, "KeypadMemoryClear" },
5115465d9f5SThomas Kuehne { 0x07, 0x00d3, "KeypadMemoryAdd" },
5125465d9f5SThomas Kuehne { 0x07, 0x00d4, "KeypadMemorySubtract" },
5135465d9f5SThomas Kuehne { 0x07, 0x00d5, "KeypadMemoryMultiply" },
5145465d9f5SThomas Kuehne { 0x07, 0x00d6, "KeypadMemoryDivide" },
5155465d9f5SThomas Kuehne { 0x07, 0x00d7, "KeypadPlusMinus" },
5165465d9f5SThomas Kuehne { 0x07, 0x00d8, "KeypadClear" },
5175465d9f5SThomas Kuehne { 0x07, 0x00d9, "KeypadClearEntry" },
5185465d9f5SThomas Kuehne { 0x07, 0x00da, "KeypadBinary" },
5195465d9f5SThomas Kuehne { 0x07, 0x00db, "KeypadOctal" },
5205465d9f5SThomas Kuehne { 0x07, 0x00dc, "KeypadDecimal" },
5215465d9f5SThomas Kuehne { 0x07, 0x00dd, "KeypadHexadecimal" },
5225465d9f5SThomas Kuehne { 0x07, 0x00e0, "KeyboardLeftControl" },
5235465d9f5SThomas Kuehne { 0x07, 0x00e1, "KeyboardLeftShift" },
5245465d9f5SThomas Kuehne { 0x07, 0x00e2, "KeyboardLeftAlt" },
5255465d9f5SThomas Kuehne { 0x07, 0x00e3, "KeyboardLeftGUI" },
5265465d9f5SThomas Kuehne { 0x07, 0x00e4, "KeyboardRightControl" },
5275465d9f5SThomas Kuehne { 0x07, 0x00e5, "KeyboardRightShift" },
5285465d9f5SThomas Kuehne { 0x07, 0x00e6, "KeyboardRightAlt" },
5295465d9f5SThomas Kuehne { 0x07, 0x00e7, "KeyboardRightGUI" },
5305465d9f5SThomas Kuehne { 0x08, 0, "LED" },
5315465d9f5SThomas Kuehne { 0x08, 0x0001, "NumLock" },
5325465d9f5SThomas Kuehne { 0x08, 0x0002, "CapsLock" },
5335465d9f5SThomas Kuehne { 0x08, 0x0003, "ScrollLock" },
5345465d9f5SThomas Kuehne { 0x08, 0x0004, "Compose" },
5355465d9f5SThomas Kuehne { 0x08, 0x0005, "Kana" },
5365465d9f5SThomas Kuehne { 0x08, 0x0006, "Power" },
5375465d9f5SThomas Kuehne { 0x08, 0x0007, "Shift" },
5385465d9f5SThomas Kuehne { 0x08, 0x0008, "DoNotDisturb" },
5395465d9f5SThomas Kuehne { 0x08, 0x0009, "Mute" },
5405465d9f5SThomas Kuehne { 0x08, 0x000a, "ToneEnable" },
5415465d9f5SThomas Kuehne { 0x08, 0x000b, "HighCutFilter" },
5425465d9f5SThomas Kuehne { 0x08, 0x000c, "LowCutFilter" },
5435465d9f5SThomas Kuehne { 0x08, 0x000d, "EqualizerEnable" },
5445465d9f5SThomas Kuehne { 0x08, 0x000e, "SoundFieldOn" },
5455465d9f5SThomas Kuehne { 0x08, 0x000f, "SurroundOn" },
5465465d9f5SThomas Kuehne { 0x08, 0x0010, "Repeat" },
5475465d9f5SThomas Kuehne { 0x08, 0x0011, "Stereo" },
5485465d9f5SThomas Kuehne { 0x08, 0x0012, "SamplingRateDetect" },
5495465d9f5SThomas Kuehne { 0x08, 0x0013, "Spinning" },
5505465d9f5SThomas Kuehne { 0x08, 0x0014, "CAV" },
5515465d9f5SThomas Kuehne { 0x08, 0x0015, "CLV" },
5525465d9f5SThomas Kuehne { 0x08, 0x0016, "RecordingFormatDetect" },
5535465d9f5SThomas Kuehne { 0x08, 0x0017, "OffHook" },
5545465d9f5SThomas Kuehne { 0x08, 0x0018, "Ring" },
5555465d9f5SThomas Kuehne { 0x08, 0x0019, "MessageWaiting" },
5565465d9f5SThomas Kuehne { 0x08, 0x001a, "DataMode" },
5575465d9f5SThomas Kuehne { 0x08, 0x001b, "BatteryOperation" },
5585465d9f5SThomas Kuehne { 0x08, 0x001c, "BatteryOK" },
5595465d9f5SThomas Kuehne { 0x08, 0x001d, "BatteryLow" },
5605465d9f5SThomas Kuehne { 0x08, 0x001e, "Speaker" },
5615465d9f5SThomas Kuehne { 0x08, 0x001f, "Headset" },
5625465d9f5SThomas Kuehne { 0x08, 0x0020, "Hold" },
5635465d9f5SThomas Kuehne { 0x08, 0x0021, "Microphone" },
5645465d9f5SThomas Kuehne { 0x08, 0x0022, "Coverage" },
5655465d9f5SThomas Kuehne { 0x08, 0x0023, "NightMode" },
5665465d9f5SThomas Kuehne { 0x08, 0x0024, "SendCalls" },
5675465d9f5SThomas Kuehne { 0x08, 0x0025, "CallPickup" },
5685465d9f5SThomas Kuehne { 0x08, 0x0026, "Conference" },
5695465d9f5SThomas Kuehne { 0x08, 0x0027, "Standby" },
5705465d9f5SThomas Kuehne { 0x08, 0x0028, "CameraOn" },
5715465d9f5SThomas Kuehne { 0x08, 0x0029, "CameraOff" },
5725465d9f5SThomas Kuehne { 0x08, 0x002a, "OnLine" },
5735465d9f5SThomas Kuehne { 0x08, 0x002b, "OffLine" },
5745465d9f5SThomas Kuehne { 0x08, 0x002c, "Busy" },
5755465d9f5SThomas Kuehne { 0x08, 0x002d, "Ready" },
5765465d9f5SThomas Kuehne { 0x08, 0x002e, "PaperOut" },
5775465d9f5SThomas Kuehne { 0x08, 0x002f, "PaperJam" },
5785465d9f5SThomas Kuehne { 0x08, 0x0030, "Remote" },
5795465d9f5SThomas Kuehne { 0x08, 0x0031, "Forward" },
5805465d9f5SThomas Kuehne { 0x08, 0x0032, "Reverse" },
5815465d9f5SThomas Kuehne { 0x08, 0x0033, "Stop" },
5825465d9f5SThomas Kuehne { 0x08, 0x0034, "Rewind" },
5835465d9f5SThomas Kuehne { 0x08, 0x0035, "FastForward" },
5845465d9f5SThomas Kuehne { 0x08, 0x0036, "Play" },
5855465d9f5SThomas Kuehne { 0x08, 0x0037, "Pause" },
5865465d9f5SThomas Kuehne { 0x08, 0x0038, "Record" },
5875465d9f5SThomas Kuehne { 0x08, 0x0039, "Error" },
5885465d9f5SThomas Kuehne { 0x08, 0x003a, "UsageSelectedIndicator" },
5895465d9f5SThomas Kuehne { 0x08, 0x003b, "UsageInUseIndicator" },
5905465d9f5SThomas Kuehne { 0x08, 0x003c, "UsageMultiModeIndicator" },
5915465d9f5SThomas Kuehne { 0x08, 0x003d, "IndicatorOn" },
5925465d9f5SThomas Kuehne { 0x08, 0x003e, "IndicatorFlash" },
5935465d9f5SThomas Kuehne { 0x08, 0x003f, "IndicatorSlowBlink" },
5945465d9f5SThomas Kuehne { 0x08, 0x0040, "IndicatorFastBlink" },
5955465d9f5SThomas Kuehne { 0x08, 0x0041, "IndicatorOff" },
5965465d9f5SThomas Kuehne { 0x08, 0x0042, "FlashOnTime" },
5975465d9f5SThomas Kuehne { 0x08, 0x0043, "SlowBlinkOnTime" },
5985465d9f5SThomas Kuehne { 0x08, 0x0044, "SlowBlinkOffTime" },
5995465d9f5SThomas Kuehne { 0x08, 0x0045, "FastBlinkOnTime" },
6005465d9f5SThomas Kuehne { 0x08, 0x0046, "FastBlinkOffTime" },
6015465d9f5SThomas Kuehne { 0x08, 0x0047, "UsageIndicatorColor" },
6025465d9f5SThomas Kuehne { 0x08, 0x0048, "IndicatorRed" },
6035465d9f5SThomas Kuehne { 0x08, 0x0049, "IndicatorGreen" },
6045465d9f5SThomas Kuehne { 0x08, 0x004a, "IndicatorAmber" },
6055465d9f5SThomas Kuehne { 0x08, 0x004b, "GenericIndicator" },
6065465d9f5SThomas Kuehne { 0x08, 0x004c, "SystemSuspend" },
6075465d9f5SThomas Kuehne { 0x08, 0x004d, "ExternalPowerConnected" },
6085465d9f5SThomas Kuehne { 0x08, 0x004e, "IndicatorBlue" },
6095465d9f5SThomas Kuehne { 0x08, 0x004f, "IndicatorOrange" },
6105465d9f5SThomas Kuehne { 0x08, 0x0050, "GoodStatus" },
6115465d9f5SThomas Kuehne { 0x08, 0x0051, "WarningStatus" },
6125465d9f5SThomas Kuehne { 0x08, 0x0052, "RGBLED" },
6135465d9f5SThomas Kuehne { 0x08, 0x0053, "RedLEDChannel" },
6145465d9f5SThomas Kuehne { 0x08, 0x0054, "BlueLEDChannel" },
6155465d9f5SThomas Kuehne { 0x08, 0x0055, "GreenLEDChannel" },
6165465d9f5SThomas Kuehne { 0x08, 0x0056, "LEDIntensity" },
6175465d9f5SThomas Kuehne { 0x08, 0x0057, "SystemMicrophoneMute" },
6185465d9f5SThomas Kuehne { 0x08, 0x0060, "PlayerIndicator" },
6195465d9f5SThomas Kuehne { 0x08, 0x0061, "Player1" },
6205465d9f5SThomas Kuehne { 0x08, 0x0062, "Player2" },
6215465d9f5SThomas Kuehne { 0x08, 0x0063, "Player3" },
6225465d9f5SThomas Kuehne { 0x08, 0x0064, "Player4" },
6235465d9f5SThomas Kuehne { 0x08, 0x0065, "Player5" },
6245465d9f5SThomas Kuehne { 0x08, 0x0066, "Player6" },
6255465d9f5SThomas Kuehne { 0x08, 0x0067, "Player7" },
6265465d9f5SThomas Kuehne { 0x08, 0x0068, "Player8" },
6275465d9f5SThomas Kuehne { 0x09, 0, "Button" },
6285465d9f5SThomas Kuehne { 0x0a, 0, "Ordinal" },
6295465d9f5SThomas Kuehne { 0x0b, 0, "TelephonyDevice" },
6305465d9f5SThomas Kuehne { 0x0b, 0x0001, "Phone" },
6315465d9f5SThomas Kuehne { 0x0b, 0x0002, "AnsweringMachine" },
6325465d9f5SThomas Kuehne { 0x0b, 0x0003, "MessageControls" },
6335465d9f5SThomas Kuehne { 0x0b, 0x0004, "Handset" },
6345465d9f5SThomas Kuehne { 0x0b, 0x0005, "Headset" },
6355465d9f5SThomas Kuehne { 0x0b, 0x0006, "TelephonyKeyPad" },
6365465d9f5SThomas Kuehne { 0x0b, 0x0007, "ProgrammableButton" },
6375465d9f5SThomas Kuehne { 0x0b, 0x0020, "HookSwitch" },
6385465d9f5SThomas Kuehne { 0x0b, 0x0021, "Flash" },
6395465d9f5SThomas Kuehne { 0x0b, 0x0022, "Feature" },
6405465d9f5SThomas Kuehne { 0x0b, 0x0023, "Hold" },
6415465d9f5SThomas Kuehne { 0x0b, 0x0024, "Redial" },
6425465d9f5SThomas Kuehne { 0x0b, 0x0025, "Transfer" },
6435465d9f5SThomas Kuehne { 0x0b, 0x0026, "Drop" },
6445465d9f5SThomas Kuehne { 0x0b, 0x0027, "Park" },
6455465d9f5SThomas Kuehne { 0x0b, 0x0028, "ForwardCalls" },
6465465d9f5SThomas Kuehne { 0x0b, 0x0029, "AlternateFunction" },
6475465d9f5SThomas Kuehne { 0x0b, 0x002a, "Line" },
6485465d9f5SThomas Kuehne { 0x0b, 0x002b, "SpeakerPhone" },
6495465d9f5SThomas Kuehne { 0x0b, 0x002c, "Conference" },
6505465d9f5SThomas Kuehne { 0x0b, 0x002d, "RingEnable" },
6515465d9f5SThomas Kuehne { 0x0b, 0x002e, "RingSelect" },
6525465d9f5SThomas Kuehne { 0x0b, 0x002f, "PhoneMute" },
6535465d9f5SThomas Kuehne { 0x0b, 0x0030, "CallerID" },
6545465d9f5SThomas Kuehne { 0x0b, 0x0031, "Send" },
6555465d9f5SThomas Kuehne { 0x0b, 0x0050, "SpeedDial" },
6565465d9f5SThomas Kuehne { 0x0b, 0x0051, "StoreNumber" },
6575465d9f5SThomas Kuehne { 0x0b, 0x0052, "RecallNumber" },
6585465d9f5SThomas Kuehne { 0x0b, 0x0053, "PhoneDirectory" },
6595465d9f5SThomas Kuehne { 0x0b, 0x0070, "VoiceMail" },
6605465d9f5SThomas Kuehne { 0x0b, 0x0071, "ScreenCalls" },
6615465d9f5SThomas Kuehne { 0x0b, 0x0072, "DoNotDisturb" },
6625465d9f5SThomas Kuehne { 0x0b, 0x0073, "Message" },
6635465d9f5SThomas Kuehne { 0x0b, 0x0074, "AnswerOnOff" },
6645465d9f5SThomas Kuehne { 0x0b, 0x0090, "InsideDialTone" },
6655465d9f5SThomas Kuehne { 0x0b, 0x0091, "OutsideDialTone" },
6665465d9f5SThomas Kuehne { 0x0b, 0x0092, "InsideRingTone" },
6675465d9f5SThomas Kuehne { 0x0b, 0x0093, "OutsideRingTone" },
6685465d9f5SThomas Kuehne { 0x0b, 0x0094, "PriorityRingTone" },
6695465d9f5SThomas Kuehne { 0x0b, 0x0095, "InsideRingback" },
6705465d9f5SThomas Kuehne { 0x0b, 0x0096, "PriorityRingback" },
6715465d9f5SThomas Kuehne { 0x0b, 0x0097, "LineBusyTone" },
6725465d9f5SThomas Kuehne { 0x0b, 0x0098, "ReorderTone" },
6735465d9f5SThomas Kuehne { 0x0b, 0x0099, "CallWaitingTone" },
6745465d9f5SThomas Kuehne { 0x0b, 0x009a, "ConfirmationTone1" },
6755465d9f5SThomas Kuehne { 0x0b, 0x009b, "ConfirmationTone2" },
6765465d9f5SThomas Kuehne { 0x0b, 0x009c, "TonesOff" },
6775465d9f5SThomas Kuehne { 0x0b, 0x009d, "OutsideRingback" },
6785465d9f5SThomas Kuehne { 0x0b, 0x009e, "Ringer" },
6795465d9f5SThomas Kuehne { 0x0b, 0x00b0, "PhoneKey0" },
6805465d9f5SThomas Kuehne { 0x0b, 0x00b1, "PhoneKey1" },
6815465d9f5SThomas Kuehne { 0x0b, 0x00b2, "PhoneKey2" },
6825465d9f5SThomas Kuehne { 0x0b, 0x00b3, "PhoneKey3" },
6835465d9f5SThomas Kuehne { 0x0b, 0x00b4, "PhoneKey4" },
6845465d9f5SThomas Kuehne { 0x0b, 0x00b5, "PhoneKey5" },
6855465d9f5SThomas Kuehne { 0x0b, 0x00b6, "PhoneKey6" },
6865465d9f5SThomas Kuehne { 0x0b, 0x00b7, "PhoneKey7" },
6875465d9f5SThomas Kuehne { 0x0b, 0x00b8, "PhoneKey8" },
6885465d9f5SThomas Kuehne { 0x0b, 0x00b9, "PhoneKey9" },
6895465d9f5SThomas Kuehne { 0x0b, 0x00ba, "PhoneKeyStar" },
6905465d9f5SThomas Kuehne { 0x0b, 0x00bb, "PhoneKeyPound" },
6915465d9f5SThomas Kuehne { 0x0b, 0x00bc, "PhoneKeyA" },
6925465d9f5SThomas Kuehne { 0x0b, 0x00bd, "PhoneKeyB" },
6935465d9f5SThomas Kuehne { 0x0b, 0x00be, "PhoneKeyC" },
6945465d9f5SThomas Kuehne { 0x0b, 0x00bf, "PhoneKeyD" },
6955465d9f5SThomas Kuehne { 0x0b, 0x00c0, "PhoneCallHistoryKey" },
6965465d9f5SThomas Kuehne { 0x0b, 0x00c1, "PhoneCallerIDKey" },
6975465d9f5SThomas Kuehne { 0x0b, 0x00c2, "PhoneSettingsKey" },
6985465d9f5SThomas Kuehne { 0x0b, 0x00f0, "HostControl" },
6995465d9f5SThomas Kuehne { 0x0b, 0x00f1, "HostAvailable" },
7005465d9f5SThomas Kuehne { 0x0b, 0x00f2, "HostCallActive" },
7015465d9f5SThomas Kuehne { 0x0b, 0x00f3, "ActivateHandsetAudio" },
7025465d9f5SThomas Kuehne { 0x0b, 0x00f4, "RingType" },
7035465d9f5SThomas Kuehne { 0x0b, 0x00f5, "RedialablePhoneNumber" },
7045465d9f5SThomas Kuehne { 0x0b, 0x00f8, "StopRingTone" },
7055465d9f5SThomas Kuehne { 0x0b, 0x00f9, "PSTNRingTone" },
7065465d9f5SThomas Kuehne { 0x0b, 0x00fa, "HostRingTone" },
7075465d9f5SThomas Kuehne { 0x0b, 0x00fb, "AlertSoundError" },
7085465d9f5SThomas Kuehne { 0x0b, 0x00fc, "AlertSoundConfirm" },
7095465d9f5SThomas Kuehne { 0x0b, 0x00fd, "AlertSoundNotification" },
7105465d9f5SThomas Kuehne { 0x0b, 0x00fe, "SilentRing" },
7115465d9f5SThomas Kuehne { 0x0b, 0x0108, "EmailMessageWaiting" },
7125465d9f5SThomas Kuehne { 0x0b, 0x0109, "VoicemailMessageWaiting" },
7135465d9f5SThomas Kuehne { 0x0b, 0x010a, "HostHold" },
7145465d9f5SThomas Kuehne { 0x0b, 0x0110, "IncomingCallHistoryCount" },
7155465d9f5SThomas Kuehne { 0x0b, 0x0111, "OutgoingCallHistoryCount" },
7165465d9f5SThomas Kuehne { 0x0b, 0x0112, "IncomingCallHistory" },
7175465d9f5SThomas Kuehne { 0x0b, 0x0113, "OutgoingCallHistory" },
7185465d9f5SThomas Kuehne { 0x0b, 0x0114, "PhoneLocale" },
7195465d9f5SThomas Kuehne { 0x0b, 0x0140, "PhoneTimeSecond" },
7205465d9f5SThomas Kuehne { 0x0b, 0x0141, "PhoneTimeMinute" },
7215465d9f5SThomas Kuehne { 0x0b, 0x0142, "PhoneTimeHour" },
7225465d9f5SThomas Kuehne { 0x0b, 0x0143, "PhoneDateDay" },
7235465d9f5SThomas Kuehne { 0x0b, 0x0144, "PhoneDateMonth" },
7245465d9f5SThomas Kuehne { 0x0b, 0x0145, "PhoneDateYear" },
7255465d9f5SThomas Kuehne { 0x0b, 0x0146, "HandsetNickname" },
7265465d9f5SThomas Kuehne { 0x0b, 0x0147, "AddressBookID" },
7275465d9f5SThomas Kuehne { 0x0b, 0x014a, "CallDuration" },
7285465d9f5SThomas Kuehne { 0x0b, 0x014b, "DualModePhone" },
7295465d9f5SThomas Kuehne { 0x0c, 0, "Consumer" },
7305465d9f5SThomas Kuehne { 0x0c, 0x0001, "ConsumerControl" },
7315465d9f5SThomas Kuehne { 0x0c, 0x0002, "NumericKeyPad" },
7325465d9f5SThomas Kuehne { 0x0c, 0x0003, "ProgrammableButtons" },
7335465d9f5SThomas Kuehne { 0x0c, 0x0004, "Microphone" },
7345465d9f5SThomas Kuehne { 0x0c, 0x0005, "Headphone" },
7355465d9f5SThomas Kuehne { 0x0c, 0x0006, "GraphicEqualizer" },
7365465d9f5SThomas Kuehne { 0x0c, 0x0020, "10" },
7375465d9f5SThomas Kuehne { 0x0c, 0x0021, "100" },
7385465d9f5SThomas Kuehne { 0x0c, 0x0022, "AMPM" },
7395465d9f5SThomas Kuehne { 0x0c, 0x0030, "Power" },
7405465d9f5SThomas Kuehne { 0x0c, 0x0031, "Reset" },
7415465d9f5SThomas Kuehne { 0x0c, 0x0032, "Sleep" },
7425465d9f5SThomas Kuehne { 0x0c, 0x0033, "SleepAfter" },
7435465d9f5SThomas Kuehne { 0x0c, 0x0034, "SleepMode" },
7445465d9f5SThomas Kuehne { 0x0c, 0x0035, "Illumination" },
7455465d9f5SThomas Kuehne { 0x0c, 0x0036, "FunctionButtons" },
7465465d9f5SThomas Kuehne { 0x0c, 0x0040, "Menu" },
7475465d9f5SThomas Kuehne { 0x0c, 0x0041, "MenuPick" },
7485465d9f5SThomas Kuehne { 0x0c, 0x0042, "MenuUp" },
7495465d9f5SThomas Kuehne { 0x0c, 0x0043, "MenuDown" },
7505465d9f5SThomas Kuehne { 0x0c, 0x0044, "MenuLeft" },
7515465d9f5SThomas Kuehne { 0x0c, 0x0045, "MenuRight" },
7525465d9f5SThomas Kuehne { 0x0c, 0x0046, "MenuEscape" },
7535465d9f5SThomas Kuehne { 0x0c, 0x0047, "MenuValueIncrease" },
7545465d9f5SThomas Kuehne { 0x0c, 0x0048, "MenuValueDecrease" },
7555465d9f5SThomas Kuehne { 0x0c, 0x0060, "DataOnScreen" },
7565465d9f5SThomas Kuehne { 0x0c, 0x0061, "ClosedCaption" },
7575465d9f5SThomas Kuehne { 0x0c, 0x0062, "ClosedCaptionSelect" },
7585465d9f5SThomas Kuehne { 0x0c, 0x0063, "VCRTV" },
7595465d9f5SThomas Kuehne { 0x0c, 0x0064, "BroadcastMode" },
7605465d9f5SThomas Kuehne { 0x0c, 0x0065, "Snapshot" },
7615465d9f5SThomas Kuehne { 0x0c, 0x0066, "Still" },
7625465d9f5SThomas Kuehne { 0x0c, 0x0067, "PictureinPictureToggle" },
7635465d9f5SThomas Kuehne { 0x0c, 0x0068, "PictureinPictureSwap" },
7645465d9f5SThomas Kuehne { 0x0c, 0x0069, "RedMenuButton" },
7655465d9f5SThomas Kuehne { 0x0c, 0x006a, "GreenMenuButton" },
7665465d9f5SThomas Kuehne { 0x0c, 0x006b, "BlueMenuButton" },
7675465d9f5SThomas Kuehne { 0x0c, 0x006c, "YellowMenuButton" },
7685465d9f5SThomas Kuehne { 0x0c, 0x006d, "Aspect" },
7695465d9f5SThomas Kuehne { 0x0c, 0x006e, "3DModeSelect" },
7705465d9f5SThomas Kuehne { 0x0c, 0x006f, "DisplayBrightnessIncrement" },
7715465d9f5SThomas Kuehne { 0x0c, 0x0070, "DisplayBrightnessDecrement" },
7725465d9f5SThomas Kuehne { 0x0c, 0x0071, "DisplayBrightness" },
7735465d9f5SThomas Kuehne { 0x0c, 0x0072, "DisplayBacklightToggle" },
7745465d9f5SThomas Kuehne { 0x0c, 0x0073, "DisplaySetBrightnesstoMinimum" },
7755465d9f5SThomas Kuehne { 0x0c, 0x0074, "DisplaySetBrightnesstoMaximum" },
7765465d9f5SThomas Kuehne { 0x0c, 0x0075, "DisplaySetAutoBrightness" },
7775465d9f5SThomas Kuehne { 0x0c, 0x0076, "CameraAccessEnabled" },
7785465d9f5SThomas Kuehne { 0x0c, 0x0077, "CameraAccessDisabled" },
7795465d9f5SThomas Kuehne { 0x0c, 0x0078, "CameraAccessToggle" },
7805465d9f5SThomas Kuehne { 0x0c, 0x0079, "KeyboardBrightnessIncrement" },
7815465d9f5SThomas Kuehne { 0x0c, 0x007a, "KeyboardBrightnessDecrement" },
7825465d9f5SThomas Kuehne { 0x0c, 0x007b, "KeyboardBacklightSetLevel" },
7835465d9f5SThomas Kuehne { 0x0c, 0x007c, "KeyboardBacklightOOC" },
7845465d9f5SThomas Kuehne { 0x0c, 0x007d, "KeyboardBacklightSetMinimum" },
7855465d9f5SThomas Kuehne { 0x0c, 0x007e, "KeyboardBacklightSetMaximum" },
7865465d9f5SThomas Kuehne { 0x0c, 0x007f, "KeyboardBacklightAuto" },
7875465d9f5SThomas Kuehne { 0x0c, 0x0080, "Selection" },
7885465d9f5SThomas Kuehne { 0x0c, 0x0081, "AssignSelection" },
7895465d9f5SThomas Kuehne { 0x0c, 0x0082, "ModeStep" },
7905465d9f5SThomas Kuehne { 0x0c, 0x0083, "RecallLast" },
7915465d9f5SThomas Kuehne { 0x0c, 0x0084, "EnterChannel" },
7925465d9f5SThomas Kuehne { 0x0c, 0x0085, "OrderMovie" },
7935465d9f5SThomas Kuehne { 0x0c, 0x0086, "Channel" },
7945465d9f5SThomas Kuehne { 0x0c, 0x0087, "MediaSelection" },
7955465d9f5SThomas Kuehne { 0x0c, 0x0088, "MediaSelectComputer" },
7965465d9f5SThomas Kuehne { 0x0c, 0x0089, "MediaSelectTV" },
7975465d9f5SThomas Kuehne { 0x0c, 0x008a, "MediaSelectWWW" },
7985465d9f5SThomas Kuehne { 0x0c, 0x008b, "MediaSelectDVD" },
7995465d9f5SThomas Kuehne { 0x0c, 0x008c, "MediaSelectTelephone" },
8005465d9f5SThomas Kuehne { 0x0c, 0x008d, "MediaSelectProgramGuide" },
8015465d9f5SThomas Kuehne { 0x0c, 0x008e, "MediaSelectVideoPhone" },
8025465d9f5SThomas Kuehne { 0x0c, 0x008f, "MediaSelectGames" },
8035465d9f5SThomas Kuehne { 0x0c, 0x0090, "MediaSelectMessages" },
8045465d9f5SThomas Kuehne { 0x0c, 0x0091, "MediaSelectCD" },
8055465d9f5SThomas Kuehne { 0x0c, 0x0092, "MediaSelectVCR" },
8065465d9f5SThomas Kuehne { 0x0c, 0x0093, "MediaSelectTuner" },
8075465d9f5SThomas Kuehne { 0x0c, 0x0094, "Quit" },
8085465d9f5SThomas Kuehne { 0x0c, 0x0095, "Help" },
8095465d9f5SThomas Kuehne { 0x0c, 0x0096, "MediaSelectTape" },
8105465d9f5SThomas Kuehne { 0x0c, 0x0097, "MediaSelectCable" },
8115465d9f5SThomas Kuehne { 0x0c, 0x0098, "MediaSelectSatellite" },
8125465d9f5SThomas Kuehne { 0x0c, 0x0099, "MediaSelectSecurity" },
8135465d9f5SThomas Kuehne { 0x0c, 0x009a, "MediaSelectHome" },
8145465d9f5SThomas Kuehne { 0x0c, 0x009b, "MediaSelectCall" },
8155465d9f5SThomas Kuehne { 0x0c, 0x009c, "ChannelIncrement" },
8165465d9f5SThomas Kuehne { 0x0c, 0x009d, "ChannelDecrement" },
8175465d9f5SThomas Kuehne { 0x0c, 0x009e, "MediaSelectSAP" },
8185465d9f5SThomas Kuehne { 0x0c, 0x00a0, "VCRPlus" },
8195465d9f5SThomas Kuehne { 0x0c, 0x00a1, "Once" },
8205465d9f5SThomas Kuehne { 0x0c, 0x00a2, "Daily" },
8215465d9f5SThomas Kuehne { 0x0c, 0x00a3, "Weekly" },
8225465d9f5SThomas Kuehne { 0x0c, 0x00a4, "Monthly" },
8235465d9f5SThomas Kuehne { 0x0c, 0x00b0, "Play" },
8245465d9f5SThomas Kuehne { 0x0c, 0x00b1, "Pause" },
8255465d9f5SThomas Kuehne { 0x0c, 0x00b2, "Record" },
8265465d9f5SThomas Kuehne { 0x0c, 0x00b3, "FastForward" },
8275465d9f5SThomas Kuehne { 0x0c, 0x00b4, "Rewind" },
8285465d9f5SThomas Kuehne { 0x0c, 0x00b5, "ScanNextTrack" },
8295465d9f5SThomas Kuehne { 0x0c, 0x00b6, "ScanPreviousTrack" },
8305465d9f5SThomas Kuehne { 0x0c, 0x00b7, "Stop" },
8315465d9f5SThomas Kuehne { 0x0c, 0x00b8, "Eject" },
8325465d9f5SThomas Kuehne { 0x0c, 0x00b9, "RandomPlay" },
8335465d9f5SThomas Kuehne { 0x0c, 0x00ba, "SelectDisc" },
8345465d9f5SThomas Kuehne { 0x0c, 0x00bb, "EnterDisc" },
8355465d9f5SThomas Kuehne { 0x0c, 0x00bc, "Repeat" },
8365465d9f5SThomas Kuehne { 0x0c, 0x00bd, "Tracking" },
8375465d9f5SThomas Kuehne { 0x0c, 0x00be, "TrackNormal" },
8385465d9f5SThomas Kuehne { 0x0c, 0x00bf, "SlowTracking" },
8395465d9f5SThomas Kuehne { 0x0c, 0x00c0, "FrameForward" },
8405465d9f5SThomas Kuehne { 0x0c, 0x00c1, "FrameBack" },
8415465d9f5SThomas Kuehne { 0x0c, 0x00c2, "Mark" },
8425465d9f5SThomas Kuehne { 0x0c, 0x00c3, "ClearMark" },
8435465d9f5SThomas Kuehne { 0x0c, 0x00c4, "RepeatFromMark" },
8445465d9f5SThomas Kuehne { 0x0c, 0x00c5, "ReturnToMark" },
8455465d9f5SThomas Kuehne { 0x0c, 0x00c6, "SearchMarkForward" },
8465465d9f5SThomas Kuehne { 0x0c, 0x00c7, "SearchMarkBackwards" },
8475465d9f5SThomas Kuehne { 0x0c, 0x00c8, "CounterReset" },
8485465d9f5SThomas Kuehne { 0x0c, 0x00c9, "ShowCounter" },
8495465d9f5SThomas Kuehne { 0x0c, 0x00ca, "TrackingIncrement" },
8505465d9f5SThomas Kuehne { 0x0c, 0x00cb, "TrackingDecrement" },
8515465d9f5SThomas Kuehne { 0x0c, 0x00cc, "StopEject" },
8525465d9f5SThomas Kuehne { 0x0c, 0x00cd, "PlayPause" },
8535465d9f5SThomas Kuehne { 0x0c, 0x00ce, "PlaySkip" },
8545465d9f5SThomas Kuehne { 0x0c, 0x00cf, "VoiceCommand" },
8555465d9f5SThomas Kuehne { 0x0c, 0x00d0, "InvokeCaptureInterface" },
8565465d9f5SThomas Kuehne { 0x0c, 0x00d1, "StartorStopGameRecording" },
8575465d9f5SThomas Kuehne { 0x0c, 0x00d2, "HistoricalGameCapture" },
8585465d9f5SThomas Kuehne { 0x0c, 0x00d3, "CaptureGameScreenshot" },
8595465d9f5SThomas Kuehne { 0x0c, 0x00d4, "ShoworHideRecordingIndicator" },
8605465d9f5SThomas Kuehne { 0x0c, 0x00d5, "StartorStopMicrophoneCapture" },
8615465d9f5SThomas Kuehne { 0x0c, 0x00d6, "StartorStopCameraCapture" },
8625465d9f5SThomas Kuehne { 0x0c, 0x00d7, "StartorStopGameBroadcast" },
8635465d9f5SThomas Kuehne { 0x0c, 0x00d8, "StartorStopVoiceDictationSession" },
8645465d9f5SThomas Kuehne { 0x0c, 0x00d9, "InvokeDismissEmojiPicker" },
8655465d9f5SThomas Kuehne { 0x0c, 0x00e0, "Volume" },
8665465d9f5SThomas Kuehne { 0x0c, 0x00e1, "Balance" },
8675465d9f5SThomas Kuehne { 0x0c, 0x00e2, "Mute" },
8685465d9f5SThomas Kuehne { 0x0c, 0x00e3, "Bass" },
8695465d9f5SThomas Kuehne { 0x0c, 0x00e4, "Treble" },
8705465d9f5SThomas Kuehne { 0x0c, 0x00e5, "BassBoost" },
8715465d9f5SThomas Kuehne { 0x0c, 0x00e6, "SurroundMode" },
8725465d9f5SThomas Kuehne { 0x0c, 0x00e7, "Loudness" },
8735465d9f5SThomas Kuehne { 0x0c, 0x00e8, "MPX" },
8745465d9f5SThomas Kuehne { 0x0c, 0x00e9, "VolumeIncrement" },
8755465d9f5SThomas Kuehne { 0x0c, 0x00ea, "VolumeDecrement" },
8765465d9f5SThomas Kuehne { 0x0c, 0x00f0, "SpeedSelect" },
8775465d9f5SThomas Kuehne { 0x0c, 0x00f1, "PlaybackSpeed" },
8785465d9f5SThomas Kuehne { 0x0c, 0x00f2, "StandardPlay" },
8795465d9f5SThomas Kuehne { 0x0c, 0x00f3, "LongPlay" },
8805465d9f5SThomas Kuehne { 0x0c, 0x00f4, "ExtendedPlay" },
8815465d9f5SThomas Kuehne { 0x0c, 0x00f5, "Slow" },
8825465d9f5SThomas Kuehne { 0x0c, 0x0100, "FanEnable" },
8835465d9f5SThomas Kuehne { 0x0c, 0x0101, "FanSpeed" },
8845465d9f5SThomas Kuehne { 0x0c, 0x0102, "LightEnable" },
8855465d9f5SThomas Kuehne { 0x0c, 0x0103, "LightIlluminationLevel" },
8865465d9f5SThomas Kuehne { 0x0c, 0x0104, "ClimateControlEnable" },
8875465d9f5SThomas Kuehne { 0x0c, 0x0105, "RoomTemperature" },
8885465d9f5SThomas Kuehne { 0x0c, 0x0106, "SecurityEnable" },
8895465d9f5SThomas Kuehne { 0x0c, 0x0107, "FireAlarm" },
8905465d9f5SThomas Kuehne { 0x0c, 0x0108, "PoliceAlarm" },
8915465d9f5SThomas Kuehne { 0x0c, 0x0109, "Proximity" },
8925465d9f5SThomas Kuehne { 0x0c, 0x010a, "Motion" },
8935465d9f5SThomas Kuehne { 0x0c, 0x010b, "DuressAlarm" },
8945465d9f5SThomas Kuehne { 0x0c, 0x010c, "HoldupAlarm" },
8955465d9f5SThomas Kuehne { 0x0c, 0x010d, "MedicalAlarm" },
8965465d9f5SThomas Kuehne { 0x0c, 0x0150, "BalanceRight" },
8975465d9f5SThomas Kuehne { 0x0c, 0x0151, "BalanceLeft" },
8985465d9f5SThomas Kuehne { 0x0c, 0x0152, "BassIncrement" },
8995465d9f5SThomas Kuehne { 0x0c, 0x0153, "BassDecrement" },
9005465d9f5SThomas Kuehne { 0x0c, 0x0154, "TrebleIncrement" },
9015465d9f5SThomas Kuehne { 0x0c, 0x0155, "TrebleDecrement" },
9025465d9f5SThomas Kuehne { 0x0c, 0x0160, "SpeakerSystem" },
9035465d9f5SThomas Kuehne { 0x0c, 0x0161, "ChannelLeft" },
9045465d9f5SThomas Kuehne { 0x0c, 0x0162, "ChannelRight" },
9055465d9f5SThomas Kuehne { 0x0c, 0x0163, "ChannelCenter" },
9065465d9f5SThomas Kuehne { 0x0c, 0x0164, "ChannelFront" },
9075465d9f5SThomas Kuehne { 0x0c, 0x0165, "ChannelCenterFront" },
9085465d9f5SThomas Kuehne { 0x0c, 0x0166, "ChannelSide" },
9095465d9f5SThomas Kuehne { 0x0c, 0x0167, "ChannelSurround" },
9105465d9f5SThomas Kuehne { 0x0c, 0x0168, "ChannelLowFrequencyEnhancement" },
9115465d9f5SThomas Kuehne { 0x0c, 0x0169, "ChannelTop" },
9125465d9f5SThomas Kuehne { 0x0c, 0x016a, "ChannelUnknown" },
9135465d9f5SThomas Kuehne { 0x0c, 0x0170, "Subchannel" },
9145465d9f5SThomas Kuehne { 0x0c, 0x0171, "SubchannelIncrement" },
9155465d9f5SThomas Kuehne { 0x0c, 0x0172, "SubchannelDecrement" },
9165465d9f5SThomas Kuehne { 0x0c, 0x0173, "AlternateAudioIncrement" },
9175465d9f5SThomas Kuehne { 0x0c, 0x0174, "AlternateAudioDecrement" },
9185465d9f5SThomas Kuehne { 0x0c, 0x0180, "ApplicationLaunchButtons" },
9195465d9f5SThomas Kuehne { 0x0c, 0x0181, "ALLaunchButtonConfigurationTool" },
9205465d9f5SThomas Kuehne { 0x0c, 0x0182, "ALProgrammableButtonConfiguration" },
9215465d9f5SThomas Kuehne { 0x0c, 0x0183, "ALConsumerControlConfiguration" },
9225465d9f5SThomas Kuehne { 0x0c, 0x0184, "ALWordProcessor" },
9235465d9f5SThomas Kuehne { 0x0c, 0x0185, "ALTextEditor" },
9245465d9f5SThomas Kuehne { 0x0c, 0x0186, "ALSpreadsheet" },
9255465d9f5SThomas Kuehne { 0x0c, 0x0187, "ALGraphicsEditor" },
9265465d9f5SThomas Kuehne { 0x0c, 0x0188, "ALPresentationApp" },
9275465d9f5SThomas Kuehne { 0x0c, 0x0189, "ALDatabaseApp" },
9285465d9f5SThomas Kuehne { 0x0c, 0x018a, "ALEmailReader" },
9295465d9f5SThomas Kuehne { 0x0c, 0x018b, "ALNewsreader" },
9305465d9f5SThomas Kuehne { 0x0c, 0x018c, "ALVoicemail" },
9315465d9f5SThomas Kuehne { 0x0c, 0x018d, "ALContactsAddressBook" },
9325465d9f5SThomas Kuehne { 0x0c, 0x018e, "ALCalendarSchedule" },
9335465d9f5SThomas Kuehne { 0x0c, 0x018f, "ALTaskProjectManager" },
9345465d9f5SThomas Kuehne { 0x0c, 0x0190, "ALLogJournalTimecard" },
9355465d9f5SThomas Kuehne { 0x0c, 0x0191, "ALCheckbookFinance" },
9365465d9f5SThomas Kuehne { 0x0c, 0x0192, "ALCalculator" },
9375465d9f5SThomas Kuehne { 0x0c, 0x0193, "ALAVCapturePlayback" },
9385465d9f5SThomas Kuehne { 0x0c, 0x0194, "ALLocalMachineBrowser" },
9395465d9f5SThomas Kuehne { 0x0c, 0x0195, "ALLANWANBrowser" },
9405465d9f5SThomas Kuehne { 0x0c, 0x0196, "ALInternetBrowser" },
9415465d9f5SThomas Kuehne { 0x0c, 0x0197, "ALRemoteNetworkingISPConnect" },
9425465d9f5SThomas Kuehne { 0x0c, 0x0198, "ALNetworkConference" },
9435465d9f5SThomas Kuehne { 0x0c, 0x0199, "ALNetworkChat" },
9445465d9f5SThomas Kuehne { 0x0c, 0x019a, "ALTelephonyDialer" },
9455465d9f5SThomas Kuehne { 0x0c, 0x019b, "ALLogon" },
9465465d9f5SThomas Kuehne { 0x0c, 0x019c, "ALLogoff" },
9475465d9f5SThomas Kuehne { 0x0c, 0x019d, "ALLogonLogoff" },
9485465d9f5SThomas Kuehne { 0x0c, 0x019e, "ALTerminalLockScreensaver" },
9495465d9f5SThomas Kuehne { 0x0c, 0x019f, "ALControlPanel" },
9505465d9f5SThomas Kuehne { 0x0c, 0x01a0, "ALCommandLineProcessorRun" },
9515465d9f5SThomas Kuehne { 0x0c, 0x01a1, "ALProcessTaskManager" },
9525465d9f5SThomas Kuehne { 0x0c, 0x01a2, "ALSelectTaskApplication" },
9535465d9f5SThomas Kuehne { 0x0c, 0x01a3, "ALNextTaskApplication" },
9545465d9f5SThomas Kuehne { 0x0c, 0x01a4, "ALPreviousTaskApplication" },
9555465d9f5SThomas Kuehne { 0x0c, 0x01a5, "ALPreemptiveHaltTaskApplication" },
9565465d9f5SThomas Kuehne { 0x0c, 0x01a6, "ALIntegratedHelpCenter" },
9575465d9f5SThomas Kuehne { 0x0c, 0x01a7, "ALDocuments" },
9585465d9f5SThomas Kuehne { 0x0c, 0x01a8, "ALThesaurus" },
9595465d9f5SThomas Kuehne { 0x0c, 0x01a9, "ALDictionary" },
9605465d9f5SThomas Kuehne { 0x0c, 0x01aa, "ALDesktop" },
9615465d9f5SThomas Kuehne { 0x0c, 0x01ab, "ALSpellCheck" },
9625465d9f5SThomas Kuehne { 0x0c, 0x01ac, "ALGrammarCheck" },
9635465d9f5SThomas Kuehne { 0x0c, 0x01ad, "ALWirelessStatus" },
9645465d9f5SThomas Kuehne { 0x0c, 0x01ae, "ALKeyboardLayout" },
9655465d9f5SThomas Kuehne { 0x0c, 0x01af, "ALVirusProtection" },
9665465d9f5SThomas Kuehne { 0x0c, 0x01b0, "ALEncryption" },
9675465d9f5SThomas Kuehne { 0x0c, 0x01b1, "ALScreenSaver" },
9685465d9f5SThomas Kuehne { 0x0c, 0x01b2, "ALAlarms" },
9695465d9f5SThomas Kuehne { 0x0c, 0x01b3, "ALClock" },
9705465d9f5SThomas Kuehne { 0x0c, 0x01b4, "ALFileBrowser" },
9715465d9f5SThomas Kuehne { 0x0c, 0x01b5, "ALPowerStatus" },
9725465d9f5SThomas Kuehne { 0x0c, 0x01b6, "ALImageBrowser" },
9735465d9f5SThomas Kuehne { 0x0c, 0x01b7, "ALAudioBrowser" },
9745465d9f5SThomas Kuehne { 0x0c, 0x01b8, "ALMovieBrowser" },
9755465d9f5SThomas Kuehne { 0x0c, 0x01b9, "ALDigitalRightsManager" },
9765465d9f5SThomas Kuehne { 0x0c, 0x01ba, "ALDigitalWallet" },
9775465d9f5SThomas Kuehne { 0x0c, 0x01bc, "ALInstantMessaging" },
9785465d9f5SThomas Kuehne { 0x0c, 0x01bd, "ALOEMFeaturesTipsTutorialBrowser" },
9795465d9f5SThomas Kuehne { 0x0c, 0x01be, "ALOEMHelp" },
9805465d9f5SThomas Kuehne { 0x0c, 0x01bf, "ALOnlineCommunity" },
9815465d9f5SThomas Kuehne { 0x0c, 0x01c0, "ALEntertainmentContentBrowser" },
9825465d9f5SThomas Kuehne { 0x0c, 0x01c1, "ALOnlineShoppingBrowser" },
9835465d9f5SThomas Kuehne { 0x0c, 0x01c2, "ALSmartCardInformationHelp" },
9845465d9f5SThomas Kuehne { 0x0c, 0x01c3, "ALMarketMonitorFinanceBrowser" },
9855465d9f5SThomas Kuehne { 0x0c, 0x01c4, "ALCustomizedCorporateNewsBrowser" },
9865465d9f5SThomas Kuehne { 0x0c, 0x01c5, "ALOnlineActivityBrowser" },
9875465d9f5SThomas Kuehne { 0x0c, 0x01c6, "ALResearchSearchBrowser" },
9885465d9f5SThomas Kuehne { 0x0c, 0x01c7, "ALAudioPlayer" },
9895465d9f5SThomas Kuehne { 0x0c, 0x01c8, "ALMessageStatus" },
9905465d9f5SThomas Kuehne { 0x0c, 0x01c9, "ALContactSync" },
9915465d9f5SThomas Kuehne { 0x0c, 0x01ca, "ALNavigation" },
9925465d9f5SThomas Kuehne { 0x0c, 0x01cb, "ALContextawareDesktopAssistant" },
9935465d9f5SThomas Kuehne { 0x0c, 0x0200, "GenericGUIApplicationControls" },
9945465d9f5SThomas Kuehne { 0x0c, 0x0201, "ACNew" },
9955465d9f5SThomas Kuehne { 0x0c, 0x0202, "ACOpen" },
9965465d9f5SThomas Kuehne { 0x0c, 0x0203, "ACClose" },
9975465d9f5SThomas Kuehne { 0x0c, 0x0204, "ACExit" },
9985465d9f5SThomas Kuehne { 0x0c, 0x0205, "ACMaximize" },
9995465d9f5SThomas Kuehne { 0x0c, 0x0206, "ACMinimize" },
10005465d9f5SThomas Kuehne { 0x0c, 0x0207, "ACSave" },
10015465d9f5SThomas Kuehne { 0x0c, 0x0208, "ACPrint" },
10025465d9f5SThomas Kuehne { 0x0c, 0x0209, "ACProperties" },
10035465d9f5SThomas Kuehne { 0x0c, 0x021a, "ACUndo" },
10045465d9f5SThomas Kuehne { 0x0c, 0x021b, "ACCopy" },
10055465d9f5SThomas Kuehne { 0x0c, 0x021c, "ACCut" },
10065465d9f5SThomas Kuehne { 0x0c, 0x021d, "ACPaste" },
10075465d9f5SThomas Kuehne { 0x0c, 0x021e, "ACSelectAll" },
10085465d9f5SThomas Kuehne { 0x0c, 0x021f, "ACFind" },
10095465d9f5SThomas Kuehne { 0x0c, 0x0220, "ACFindandReplace" },
10105465d9f5SThomas Kuehne { 0x0c, 0x0221, "ACSearch" },
10115465d9f5SThomas Kuehne { 0x0c, 0x0222, "ACGoTo" },
10125465d9f5SThomas Kuehne { 0x0c, 0x0223, "ACHome" },
10135465d9f5SThomas Kuehne { 0x0c, 0x0224, "ACBack" },
10145465d9f5SThomas Kuehne { 0x0c, 0x0225, "ACForward" },
10155465d9f5SThomas Kuehne { 0x0c, 0x0226, "ACStop" },
10165465d9f5SThomas Kuehne { 0x0c, 0x0227, "ACRefresh" },
10175465d9f5SThomas Kuehne { 0x0c, 0x0228, "ACPreviousLink" },
10185465d9f5SThomas Kuehne { 0x0c, 0x0229, "ACNextLink" },
10195465d9f5SThomas Kuehne { 0x0c, 0x022a, "ACBookmarks" },
10205465d9f5SThomas Kuehne { 0x0c, 0x022b, "ACHistory" },
10215465d9f5SThomas Kuehne { 0x0c, 0x022c, "ACSubscriptions" },
10225465d9f5SThomas Kuehne { 0x0c, 0x022d, "ACZoomIn" },
10235465d9f5SThomas Kuehne { 0x0c, 0x022e, "ACZoomOut" },
10245465d9f5SThomas Kuehne { 0x0c, 0x022f, "ACZoom" },
10255465d9f5SThomas Kuehne { 0x0c, 0x0230, "ACFullScreenView" },
10265465d9f5SThomas Kuehne { 0x0c, 0x0231, "ACNormalView" },
10275465d9f5SThomas Kuehne { 0x0c, 0x0232, "ACViewToggle" },
10285465d9f5SThomas Kuehne { 0x0c, 0x0233, "ACScrollUp" },
10295465d9f5SThomas Kuehne { 0x0c, 0x0234, "ACScrollDown" },
10305465d9f5SThomas Kuehne { 0x0c, 0x0235, "ACScroll" },
10315465d9f5SThomas Kuehne { 0x0c, 0x0236, "ACPanLeft" },
10325465d9f5SThomas Kuehne { 0x0c, 0x0237, "ACPanRight" },
10335465d9f5SThomas Kuehne { 0x0c, 0x0238, "ACPan" },
10345465d9f5SThomas Kuehne { 0x0c, 0x0239, "ACNewWindow" },
10355465d9f5SThomas Kuehne { 0x0c, 0x023a, "ACTileHorizontally" },
10365465d9f5SThomas Kuehne { 0x0c, 0x023b, "ACTileVertically" },
10375465d9f5SThomas Kuehne { 0x0c, 0x023c, "ACFormat" },
10385465d9f5SThomas Kuehne { 0x0c, 0x023d, "ACEdit" },
10395465d9f5SThomas Kuehne { 0x0c, 0x023e, "ACBold" },
10405465d9f5SThomas Kuehne { 0x0c, 0x023f, "ACItalics" },
10415465d9f5SThomas Kuehne { 0x0c, 0x0240, "ACUnderline" },
10425465d9f5SThomas Kuehne { 0x0c, 0x0241, "ACStrikethrough" },
10435465d9f5SThomas Kuehne { 0x0c, 0x0242, "ACSubscript" },
10445465d9f5SThomas Kuehne { 0x0c, 0x0243, "ACSuperscript" },
10455465d9f5SThomas Kuehne { 0x0c, 0x0244, "ACAllCaps" },
10465465d9f5SThomas Kuehne { 0x0c, 0x0245, "ACRotate" },
10475465d9f5SThomas Kuehne { 0x0c, 0x0246, "ACResize" },
10485465d9f5SThomas Kuehne { 0x0c, 0x0247, "ACFlipHorizontal" },
10495465d9f5SThomas Kuehne { 0x0c, 0x0248, "ACFlipVertical" },
10505465d9f5SThomas Kuehne { 0x0c, 0x0249, "ACMirrorHorizontal" },
10515465d9f5SThomas Kuehne { 0x0c, 0x024a, "ACMirrorVertical" },
10525465d9f5SThomas Kuehne { 0x0c, 0x024b, "ACFontSelect" },
10535465d9f5SThomas Kuehne { 0x0c, 0x024c, "ACFontColor" },
10545465d9f5SThomas Kuehne { 0x0c, 0x024d, "ACFontSize" },
10555465d9f5SThomas Kuehne { 0x0c, 0x024e, "ACJustifyLeft" },
10565465d9f5SThomas Kuehne { 0x0c, 0x024f, "ACJustifyCenterH" },
10575465d9f5SThomas Kuehne { 0x0c, 0x0250, "ACJustifyRight" },
10585465d9f5SThomas Kuehne { 0x0c, 0x0251, "ACJustifyBlockH" },
10595465d9f5SThomas Kuehne { 0x0c, 0x0252, "ACJustifyTop" },
10605465d9f5SThomas Kuehne { 0x0c, 0x0253, "ACJustifyCenterV" },
10615465d9f5SThomas Kuehne { 0x0c, 0x0254, "ACJustifyBottom" },
10625465d9f5SThomas Kuehne { 0x0c, 0x0255, "ACJustifyBlockV" },
10635465d9f5SThomas Kuehne { 0x0c, 0x0256, "ACIndentDecrease" },
10645465d9f5SThomas Kuehne { 0x0c, 0x0257, "ACIndentIncrease" },
10655465d9f5SThomas Kuehne { 0x0c, 0x0258, "ACNumberedList" },
10665465d9f5SThomas Kuehne { 0x0c, 0x0259, "ACRestartNumbering" },
10675465d9f5SThomas Kuehne { 0x0c, 0x025a, "ACBulletedList" },
10685465d9f5SThomas Kuehne { 0x0c, 0x025b, "ACPromote" },
10695465d9f5SThomas Kuehne { 0x0c, 0x025c, "ACDemote" },
10705465d9f5SThomas Kuehne { 0x0c, 0x025d, "ACYes" },
10715465d9f5SThomas Kuehne { 0x0c, 0x025e, "ACNo" },
10725465d9f5SThomas Kuehne { 0x0c, 0x025f, "ACCancel" },
10735465d9f5SThomas Kuehne { 0x0c, 0x0260, "ACCatalog" },
10745465d9f5SThomas Kuehne { 0x0c, 0x0261, "ACBuyCheckout" },
10755465d9f5SThomas Kuehne { 0x0c, 0x0262, "ACAddtoCart" },
10765465d9f5SThomas Kuehne { 0x0c, 0x0263, "ACExpand" },
10775465d9f5SThomas Kuehne { 0x0c, 0x0264, "ACExpandAll" },
10785465d9f5SThomas Kuehne { 0x0c, 0x0265, "ACCollapse" },
10795465d9f5SThomas Kuehne { 0x0c, 0x0266, "ACCollapseAll" },
10805465d9f5SThomas Kuehne { 0x0c, 0x0267, "ACPrintPreview" },
10815465d9f5SThomas Kuehne { 0x0c, 0x0268, "ACPasteSpecial" },
10825465d9f5SThomas Kuehne { 0x0c, 0x0269, "ACInsertMode" },
10835465d9f5SThomas Kuehne { 0x0c, 0x026a, "ACDelete" },
10845465d9f5SThomas Kuehne { 0x0c, 0x026b, "ACLock" },
10855465d9f5SThomas Kuehne { 0x0c, 0x026c, "ACUnlock" },
10865465d9f5SThomas Kuehne { 0x0c, 0x026d, "ACProtect" },
10875465d9f5SThomas Kuehne { 0x0c, 0x026e, "ACUnprotect" },
10885465d9f5SThomas Kuehne { 0x0c, 0x026f, "ACAttachComment" },
10895465d9f5SThomas Kuehne { 0x0c, 0x0270, "ACDeleteComment" },
10905465d9f5SThomas Kuehne { 0x0c, 0x0271, "ACViewComment" },
10915465d9f5SThomas Kuehne { 0x0c, 0x0272, "ACSelectWord" },
10925465d9f5SThomas Kuehne { 0x0c, 0x0273, "ACSelectSentence" },
10935465d9f5SThomas Kuehne { 0x0c, 0x0274, "ACSelectParagraph" },
10945465d9f5SThomas Kuehne { 0x0c, 0x0275, "ACSelectColumn" },
10955465d9f5SThomas Kuehne { 0x0c, 0x0276, "ACSelectRow" },
10965465d9f5SThomas Kuehne { 0x0c, 0x0277, "ACSelectTable" },
10975465d9f5SThomas Kuehne { 0x0c, 0x0278, "ACSelectObject" },
10985465d9f5SThomas Kuehne { 0x0c, 0x0279, "ACRedoRepeat" },
10995465d9f5SThomas Kuehne { 0x0c, 0x027a, "ACSort" },
11005465d9f5SThomas Kuehne { 0x0c, 0x027b, "ACSortAscending" },
11015465d9f5SThomas Kuehne { 0x0c, 0x027c, "ACSortDescending" },
11025465d9f5SThomas Kuehne { 0x0c, 0x027d, "ACFilter" },
11035465d9f5SThomas Kuehne { 0x0c, 0x027e, "ACSetClock" },
11045465d9f5SThomas Kuehne { 0x0c, 0x027f, "ACViewClock" },
11055465d9f5SThomas Kuehne { 0x0c, 0x0280, "ACSelectTimeZone" },
11065465d9f5SThomas Kuehne { 0x0c, 0x0281, "ACEditTimeZones" },
11075465d9f5SThomas Kuehne { 0x0c, 0x0282, "ACSetAlarm" },
11085465d9f5SThomas Kuehne { 0x0c, 0x0283, "ACClearAlarm" },
11095465d9f5SThomas Kuehne { 0x0c, 0x0284, "ACSnoozeAlarm" },
11105465d9f5SThomas Kuehne { 0x0c, 0x0285, "ACResetAlarm" },
11115465d9f5SThomas Kuehne { 0x0c, 0x0286, "ACSynchronize" },
11125465d9f5SThomas Kuehne { 0x0c, 0x0287, "ACSendReceive" },
11135465d9f5SThomas Kuehne { 0x0c, 0x0288, "ACSendTo" },
11145465d9f5SThomas Kuehne { 0x0c, 0x0289, "ACReply" },
11155465d9f5SThomas Kuehne { 0x0c, 0x028a, "ACReplyAll" },
11165465d9f5SThomas Kuehne { 0x0c, 0x028b, "ACForwardMsg" },
11175465d9f5SThomas Kuehne { 0x0c, 0x028c, "ACSend" },
11185465d9f5SThomas Kuehne { 0x0c, 0x028d, "ACAttachFile" },
11195465d9f5SThomas Kuehne { 0x0c, 0x028e, "ACUpload" },
11205465d9f5SThomas Kuehne { 0x0c, 0x028f, "ACDownloadSaveTargetAs" },
11215465d9f5SThomas Kuehne { 0x0c, 0x0290, "ACSetBorders" },
11225465d9f5SThomas Kuehne { 0x0c, 0x0291, "ACInsertRow" },
11235465d9f5SThomas Kuehne { 0x0c, 0x0292, "ACInsertColumn" },
11245465d9f5SThomas Kuehne { 0x0c, 0x0293, "ACInsertFile" },
11255465d9f5SThomas Kuehne { 0x0c, 0x0294, "ACInsertPicture" },
11265465d9f5SThomas Kuehne { 0x0c, 0x0295, "ACInsertObject" },
11275465d9f5SThomas Kuehne { 0x0c, 0x0296, "ACInsertSymbol" },
11285465d9f5SThomas Kuehne { 0x0c, 0x0297, "ACSaveandClose" },
11295465d9f5SThomas Kuehne { 0x0c, 0x0298, "ACRename" },
11305465d9f5SThomas Kuehne { 0x0c, 0x0299, "ACMerge" },
11315465d9f5SThomas Kuehne { 0x0c, 0x029a, "ACSplit" },
11325465d9f5SThomas Kuehne { 0x0c, 0x029b, "ACDisributeHorizontally" },
11335465d9f5SThomas Kuehne { 0x0c, 0x029c, "ACDistributeVertically" },
11345465d9f5SThomas Kuehne { 0x0c, 0x029d, "ACNextKeyboardLayoutSelect" },
11355465d9f5SThomas Kuehne { 0x0c, 0x029e, "ACNavigationGuidance" },
11365465d9f5SThomas Kuehne { 0x0c, 0x029f, "ACDesktopShowAllWindows" },
11375465d9f5SThomas Kuehne { 0x0c, 0x02a0, "ACSoftKeyLeft" },
11385465d9f5SThomas Kuehne { 0x0c, 0x02a1, "ACSoftKeyRight" },
11395465d9f5SThomas Kuehne { 0x0c, 0x02a2, "ACDesktopShowAllApplications" },
11405465d9f5SThomas Kuehne { 0x0c, 0x02b0, "ACIdleKeepAlive" },
11415465d9f5SThomas Kuehne { 0x0c, 0x02c0, "ExtendedKeyboardAttributesCollection" },
11425465d9f5SThomas Kuehne { 0x0c, 0x02c1, "KeyboardFormFactor" },
11435465d9f5SThomas Kuehne { 0x0c, 0x02c2, "KeyboardKeyType" },
11445465d9f5SThomas Kuehne { 0x0c, 0x02c3, "KeyboardPhysicalLayout" },
11455465d9f5SThomas Kuehne { 0x0c, 0x02c4, "VendorSpecificKeyboardPhysicalLayout" },
11465465d9f5SThomas Kuehne { 0x0c, 0x02c5, "KeyboardIETFLanguageTagIndex" },
11475465d9f5SThomas Kuehne { 0x0c, 0x02c6, "ImplementedKeyboardInputAssistControls" },
11485465d9f5SThomas Kuehne { 0x0c, 0x02c7, "KeyboardInputAssistPrevious" },
11495465d9f5SThomas Kuehne { 0x0c, 0x02c8, "KeyboardInputAssistNext" },
11505465d9f5SThomas Kuehne { 0x0c, 0x02c9, "KeyboardInputAssistPreviousGroup" },
11515465d9f5SThomas Kuehne { 0x0c, 0x02ca, "KeyboardInputAssistNextGroup" },
11525465d9f5SThomas Kuehne { 0x0c, 0x02cb, "KeyboardInputAssistAccept" },
11535465d9f5SThomas Kuehne { 0x0c, 0x02cc, "KeyboardInputAssistCancel" },
11545465d9f5SThomas Kuehne { 0x0c, 0x02d0, "PrivacyScreenToggle" },
11555465d9f5SThomas Kuehne { 0x0c, 0x02d1, "PrivacyScreenLevelDecrement" },
11565465d9f5SThomas Kuehne { 0x0c, 0x02d2, "PrivacyScreenLevelIncrement" },
11575465d9f5SThomas Kuehne { 0x0c, 0x02d3, "PrivacyScreenLevelMinimum" },
11585465d9f5SThomas Kuehne { 0x0c, 0x02d4, "PrivacyScreenLevelMaximum" },
11595465d9f5SThomas Kuehne { 0x0c, 0x0500, "ContactEdited" },
11605465d9f5SThomas Kuehne { 0x0c, 0x0501, "ContactAdded" },
11615465d9f5SThomas Kuehne { 0x0c, 0x0502, "ContactRecordActive" },
11625465d9f5SThomas Kuehne { 0x0c, 0x0503, "ContactIndex" },
11635465d9f5SThomas Kuehne { 0x0c, 0x0504, "ContactNickname" },
11645465d9f5SThomas Kuehne { 0x0c, 0x0505, "ContactFirstName" },
11655465d9f5SThomas Kuehne { 0x0c, 0x0506, "ContactLastName" },
11665465d9f5SThomas Kuehne { 0x0c, 0x0507, "ContactFullName" },
11675465d9f5SThomas Kuehne { 0x0c, 0x0508, "ContactPhoneNumberPersonal" },
11685465d9f5SThomas Kuehne { 0x0c, 0x0509, "ContactPhoneNumberBusiness" },
11695465d9f5SThomas Kuehne { 0x0c, 0x050a, "ContactPhoneNumberMobile" },
11705465d9f5SThomas Kuehne { 0x0c, 0x050b, "ContactPhoneNumberPager" },
11715465d9f5SThomas Kuehne { 0x0c, 0x050c, "ContactPhoneNumberFax" },
11725465d9f5SThomas Kuehne { 0x0c, 0x050d, "ContactPhoneNumberOther" },
11735465d9f5SThomas Kuehne { 0x0c, 0x050e, "ContactEmailPersonal" },
11745465d9f5SThomas Kuehne { 0x0c, 0x050f, "ContactEmailBusiness" },
11755465d9f5SThomas Kuehne { 0x0c, 0x0510, "ContactEmailOther" },
11765465d9f5SThomas Kuehne { 0x0c, 0x0511, "ContactEmailMain" },
11775465d9f5SThomas Kuehne { 0x0c, 0x0512, "ContactSpeedDialNumber" },
11785465d9f5SThomas Kuehne { 0x0c, 0x0513, "ContactStatusFlag" },
11795465d9f5SThomas Kuehne { 0x0c, 0x0514, "ContactMisc" },
11805465d9f5SThomas Kuehne { 0x0d, 0, "Digitizers" },
11815465d9f5SThomas Kuehne { 0x0d, 0x0001, "Digitizer" },
11825465d9f5SThomas Kuehne { 0x0d, 0x0002, "Pen" },
11835465d9f5SThomas Kuehne { 0x0d, 0x0003, "LightPen" },
11845465d9f5SThomas Kuehne { 0x0d, 0x0004, "TouchScreen" },
11855465d9f5SThomas Kuehne { 0x0d, 0x0005, "TouchPad" },
11865465d9f5SThomas Kuehne { 0x0d, 0x0006, "Whiteboard" },
11875465d9f5SThomas Kuehne { 0x0d, 0x0007, "CoordinateMeasuringMachine" },
11885465d9f5SThomas Kuehne { 0x0d, 0x0008, "3DDigitizer" },
11895465d9f5SThomas Kuehne { 0x0d, 0x0009, "StereoPlotter" },
11905465d9f5SThomas Kuehne { 0x0d, 0x000a, "ArticulatedArm" },
11915465d9f5SThomas Kuehne { 0x0d, 0x000b, "Armature" },
11925465d9f5SThomas Kuehne { 0x0d, 0x000c, "MultiplePointDigitizer" },
11935465d9f5SThomas Kuehne { 0x0d, 0x000d, "FreeSpaceWand" },
11945465d9f5SThomas Kuehne { 0x0d, 0x000e, "DeviceConfiguration" },
11955465d9f5SThomas Kuehne { 0x0d, 0x000f, "CapacitiveHeatMapDigitizer" },
11965465d9f5SThomas Kuehne { 0x0d, 0x0020, "Stylus" },
11975465d9f5SThomas Kuehne { 0x0d, 0x0021, "Puck" },
11985465d9f5SThomas Kuehne { 0x0d, 0x0022, "Finger" },
11995465d9f5SThomas Kuehne { 0x0d, 0x0023, "Devicesettings" },
12005465d9f5SThomas Kuehne { 0x0d, 0x0024, "CharacterGesture" },
12015465d9f5SThomas Kuehne { 0x0d, 0x0030, "TipPressure" },
12025465d9f5SThomas Kuehne { 0x0d, 0x0031, "BarrelPressure" },
12035465d9f5SThomas Kuehne { 0x0d, 0x0032, "InRange" },
12045465d9f5SThomas Kuehne { 0x0d, 0x0033, "Touch" },
12055465d9f5SThomas Kuehne { 0x0d, 0x0034, "Untouch" },
12065465d9f5SThomas Kuehne { 0x0d, 0x0035, "Tap" },
12075465d9f5SThomas Kuehne { 0x0d, 0x0036, "Quality" },
12085465d9f5SThomas Kuehne { 0x0d, 0x0037, "DataValid" },
12095465d9f5SThomas Kuehne { 0x0d, 0x0038, "TransducerIndex" },
12105465d9f5SThomas Kuehne { 0x0d, 0x0039, "TabletFunctionKeys" },
12115465d9f5SThomas Kuehne { 0x0d, 0x003a, "ProgramChangeKeys" },
12125465d9f5SThomas Kuehne { 0x0d, 0x003b, "BatteryStrength" },
12135465d9f5SThomas Kuehne { 0x0d, 0x003c, "Invert" },
12145465d9f5SThomas Kuehne { 0x0d, 0x003d, "XTilt" },
12155465d9f5SThomas Kuehne { 0x0d, 0x003e, "YTilt" },
12165465d9f5SThomas Kuehne { 0x0d, 0x003f, "Azimuth" },
12175465d9f5SThomas Kuehne { 0x0d, 0x0040, "Altitude" },
12185465d9f5SThomas Kuehne { 0x0d, 0x0041, "Twist" },
12195465d9f5SThomas Kuehne { 0x0d, 0x0042, "TipSwitch" },
12205465d9f5SThomas Kuehne { 0x0d, 0x0043, "SecondaryTipSwitch" },
12215465d9f5SThomas Kuehne { 0x0d, 0x0044, "BarrelSwitch" },
12225465d9f5SThomas Kuehne { 0x0d, 0x0045, "Eraser" },
12235465d9f5SThomas Kuehne { 0x0d, 0x0046, "TabletPick" },
12245465d9f5SThomas Kuehne { 0x0d, 0x0047, "TouchValid" },
12255465d9f5SThomas Kuehne { 0x0d, 0x0048, "Width" },
12265465d9f5SThomas Kuehne { 0x0d, 0x0049, "Height" },
12275465d9f5SThomas Kuehne { 0x0d, 0x0051, "ContactIdentifier" },
12285465d9f5SThomas Kuehne { 0x0d, 0x0052, "DeviceMode" },
12295465d9f5SThomas Kuehne { 0x0d, 0x0053, "DeviceIdentifier" },
12305465d9f5SThomas Kuehne { 0x0d, 0x0054, "ContactCount" },
12315465d9f5SThomas Kuehne { 0x0d, 0x0055, "ContactCountMaximum" },
12325465d9f5SThomas Kuehne { 0x0d, 0x0056, "ScanTime" },
12335465d9f5SThomas Kuehne { 0x0d, 0x0057, "SurfaceSwitch" },
12345465d9f5SThomas Kuehne { 0x0d, 0x0058, "ButtonSwitch" },
12355465d9f5SThomas Kuehne { 0x0d, 0x0059, "PadType" },
12365465d9f5SThomas Kuehne { 0x0d, 0x005a, "SecondaryBarrelSwitch" },
12375465d9f5SThomas Kuehne { 0x0d, 0x005b, "TransducerSerialNumber" },
12385465d9f5SThomas Kuehne { 0x0d, 0x005c, "PreferredColor" },
12395465d9f5SThomas Kuehne { 0x0d, 0x005d, "PreferredColorisLocked" },
12405465d9f5SThomas Kuehne { 0x0d, 0x005e, "PreferredLineWidth" },
12415465d9f5SThomas Kuehne { 0x0d, 0x005f, "PreferredLineWidthisLocked" },
12425465d9f5SThomas Kuehne { 0x0d, 0x0060, "LatencyMode" },
12435465d9f5SThomas Kuehne { 0x0d, 0x0061, "GestureCharacterQuality" },
12445465d9f5SThomas Kuehne { 0x0d, 0x0062, "CharacterGestureDataLength" },
12455465d9f5SThomas Kuehne { 0x0d, 0x0063, "CharacterGestureData" },
12465465d9f5SThomas Kuehne { 0x0d, 0x0064, "GestureCharacterEncoding" },
12475465d9f5SThomas Kuehne { 0x0d, 0x0065, "UTF8CharacterGestureEncoding" },
12485465d9f5SThomas Kuehne { 0x0d, 0x0066, "UTF16LittleEndianCharacterGestureEncoding" },
12495465d9f5SThomas Kuehne { 0x0d, 0x0067, "UTF16BigEndianCharacterGestureEncoding" },
12505465d9f5SThomas Kuehne { 0x0d, 0x0068, "UTF32LittleEndianCharacterGestureEncoding" },
12515465d9f5SThomas Kuehne { 0x0d, 0x0069, "UTF32BigEndianCharacterGestureEncoding" },
12525465d9f5SThomas Kuehne { 0x0d, 0x006a, "CapacitiveHeatMapProtocolVendorID" },
12535465d9f5SThomas Kuehne { 0x0d, 0x006b, "CapacitiveHeatMapProtocolVersion" },
12545465d9f5SThomas Kuehne { 0x0d, 0x006c, "CapacitiveHeatMapFrameData" },
12555465d9f5SThomas Kuehne { 0x0d, 0x006d, "GestureCharacterEnable" },
12565465d9f5SThomas Kuehne { 0x0d, 0x006e, "TransducerSerialNumberPart2" },
12575465d9f5SThomas Kuehne { 0x0d, 0x006f, "NoPreferredColor" },
12585465d9f5SThomas Kuehne { 0x0d, 0x0070, "PreferredLineStyle" },
12595465d9f5SThomas Kuehne { 0x0d, 0x0071, "PreferredLineStyleisLocked" },
12605465d9f5SThomas Kuehne { 0x0d, 0x0072, "Ink" },
12615465d9f5SThomas Kuehne { 0x0d, 0x0073, "Pencil" },
12625465d9f5SThomas Kuehne { 0x0d, 0x0074, "Highlighter" },
12635465d9f5SThomas Kuehne { 0x0d, 0x0075, "ChiselMarker" },
12645465d9f5SThomas Kuehne { 0x0d, 0x0076, "Brush" },
12655465d9f5SThomas Kuehne { 0x0d, 0x0077, "NoPreference" },
12665465d9f5SThomas Kuehne { 0x0d, 0x0080, "DigitizerDiagnostic" },
12675465d9f5SThomas Kuehne { 0x0d, 0x0081, "DigitizerError" },
12685465d9f5SThomas Kuehne { 0x0d, 0x0082, "ErrNormalStatus" },
12695465d9f5SThomas Kuehne { 0x0d, 0x0083, "ErrTransducersExceeded" },
12705465d9f5SThomas Kuehne { 0x0d, 0x0084, "ErrFullTransFeaturesUnavailable" },
12715465d9f5SThomas Kuehne { 0x0d, 0x0085, "ErrChargeLow" },
12725465d9f5SThomas Kuehne { 0x0d, 0x0090, "TransducerSoftwareInfo" },
12735465d9f5SThomas Kuehne { 0x0d, 0x0091, "TransducerVendorId" },
12745465d9f5SThomas Kuehne { 0x0d, 0x0092, "TransducerProductId" },
12755465d9f5SThomas Kuehne { 0x0d, 0x0093, "DeviceSupportedProtocols" },
12765465d9f5SThomas Kuehne { 0x0d, 0x0094, "TransducerSupportedProtocols" },
12775465d9f5SThomas Kuehne { 0x0d, 0x0095, "NoProtocol" },
12785465d9f5SThomas Kuehne { 0x0d, 0x0096, "WacomAESProtocol" },
12795465d9f5SThomas Kuehne { 0x0d, 0x0097, "USIProtocol" },
12805465d9f5SThomas Kuehne { 0x0d, 0x0098, "MicrosoftPenProtocol" },
12815465d9f5SThomas Kuehne { 0x0d, 0x00a0, "SupportedReportRates" },
12825465d9f5SThomas Kuehne { 0x0d, 0x00a1, "ReportRate" },
12835465d9f5SThomas Kuehne { 0x0d, 0x00a2, "TransducerConnected" },
12845465d9f5SThomas Kuehne { 0x0d, 0x00a3, "SwitchDisabled" },
12855465d9f5SThomas Kuehne { 0x0d, 0x00a4, "SwitchUnimplemented" },
12865465d9f5SThomas Kuehne { 0x0d, 0x00a5, "TransducerSwitches" },
12875465d9f5SThomas Kuehne { 0x0d, 0x00a6, "TransducerIndexSelector" },
12885465d9f5SThomas Kuehne { 0x0d, 0x00b0, "ButtonPressThreshold" },
12895465d9f5SThomas Kuehne { 0x0e, 0, "Haptics" },
12905465d9f5SThomas Kuehne { 0x0e, 0x0001, "SimpleHapticController" },
12915465d9f5SThomas Kuehne { 0x0e, 0x0010, "WaveformList" },
12925465d9f5SThomas Kuehne { 0x0e, 0x0011, "DurationList" },
12935465d9f5SThomas Kuehne { 0x0e, 0x0020, "AutoTrigger" },
12945465d9f5SThomas Kuehne { 0x0e, 0x0021, "ManualTrigger" },
12955465d9f5SThomas Kuehne { 0x0e, 0x0022, "AutoTriggerAssociatedControl" },
12965465d9f5SThomas Kuehne { 0x0e, 0x0023, "Intensity" },
12975465d9f5SThomas Kuehne { 0x0e, 0x0024, "RepeatCount" },
12985465d9f5SThomas Kuehne { 0x0e, 0x0025, "RetriggerPeriod" },
12995465d9f5SThomas Kuehne { 0x0e, 0x0026, "WaveformVendorPage" },
13005465d9f5SThomas Kuehne { 0x0e, 0x0027, "WaveformVendorID" },
13015465d9f5SThomas Kuehne { 0x0e, 0x0028, "WaveformCutoffTime" },
13025465d9f5SThomas Kuehne { 0x0e, 0x1001, "WaveformNone" },
13035465d9f5SThomas Kuehne { 0x0e, 0x1002, "WaveformStop" },
13045465d9f5SThomas Kuehne { 0x0e, 0x1003, "WaveformClick" },
13055465d9f5SThomas Kuehne { 0x0e, 0x1004, "WaveformBuzzContinuous" },
13065465d9f5SThomas Kuehne { 0x0e, 0x1005, "WaveformRumbleContinuous" },
13075465d9f5SThomas Kuehne { 0x0e, 0x1006, "WaveformPress" },
13085465d9f5SThomas Kuehne { 0x0e, 0x1007, "WaveformRelease" },
13095465d9f5SThomas Kuehne { 0x0e, 0x1008, "WaveformHover" },
13105465d9f5SThomas Kuehne { 0x0e, 0x1009, "WaveformSuccess" },
13115465d9f5SThomas Kuehne { 0x0e, 0x100a, "WaveformError" },
13125465d9f5SThomas Kuehne { 0x0e, 0x100b, "WaveformInkContinuous" },
13135465d9f5SThomas Kuehne { 0x0e, 0x100c, "WaveformPencilContinuous" },
13145465d9f5SThomas Kuehne { 0x0e, 0x100d, "WaveformMarkerContinuous" },
13155465d9f5SThomas Kuehne { 0x0e, 0x100e, "WaveformChiselMarkerContinuous" },
13165465d9f5SThomas Kuehne { 0x0e, 0x100f, "WaveformBrushContinuous" },
13175465d9f5SThomas Kuehne { 0x0e, 0x1010, "WaveformEraserContinuous" },
13185465d9f5SThomas Kuehne { 0x0e, 0x1011, "WaveformSparkleContinuous" },
13195465d9f5SThomas Kuehne { 0x0f, 0, "PhysicalInputDevice" },
13205465d9f5SThomas Kuehne { 0x0f, 0x0001, "PhysicalInputDevice" },
13215465d9f5SThomas Kuehne { 0x0f, 0x0020, "Normal" },
13225465d9f5SThomas Kuehne { 0x0f, 0x0021, "SetEffectReport" },
13235465d9f5SThomas Kuehne { 0x0f, 0x0022, "EffectParameterBlockIndex" },
13245465d9f5SThomas Kuehne { 0x0f, 0x0023, "ParameterBlockOffset" },
13255465d9f5SThomas Kuehne { 0x0f, 0x0024, "ROMFlag" },
13265465d9f5SThomas Kuehne { 0x0f, 0x0025, "EffectType" },
13275465d9f5SThomas Kuehne { 0x0f, 0x0026, "ETConstantForce" },
13285465d9f5SThomas Kuehne { 0x0f, 0x0027, "ETRamp" },
13295465d9f5SThomas Kuehne { 0x0f, 0x0028, "ETCustomForce" },
13305465d9f5SThomas Kuehne { 0x0f, 0x0030, "ETSquare" },
13315465d9f5SThomas Kuehne { 0x0f, 0x0031, "ETSine" },
13325465d9f5SThomas Kuehne { 0x0f, 0x0032, "ETTriangle" },
13335465d9f5SThomas Kuehne { 0x0f, 0x0033, "ETSawtoothUp" },
13345465d9f5SThomas Kuehne { 0x0f, 0x0034, "ETSawtoothDown" },
13355465d9f5SThomas Kuehne { 0x0f, 0x0040, "ETSpring" },
13365465d9f5SThomas Kuehne { 0x0f, 0x0041, "ETDamper" },
13375465d9f5SThomas Kuehne { 0x0f, 0x0042, "ETInertia" },
13385465d9f5SThomas Kuehne { 0x0f, 0x0043, "ETFriction" },
13395465d9f5SThomas Kuehne { 0x0f, 0x0050, "Duration" },
13405465d9f5SThomas Kuehne { 0x0f, 0x0051, "SamplePeriod" },
13415465d9f5SThomas Kuehne { 0x0f, 0x0052, "Gain" },
13425465d9f5SThomas Kuehne { 0x0f, 0x0053, "TriggerButton" },
13435465d9f5SThomas Kuehne { 0x0f, 0x0054, "TriggerRepeatInterval" },
13445465d9f5SThomas Kuehne { 0x0f, 0x0055, "AxesEnable" },
13455465d9f5SThomas Kuehne { 0x0f, 0x0056, "DirectionEnable" },
13465465d9f5SThomas Kuehne { 0x0f, 0x0057, "Direction" },
13475465d9f5SThomas Kuehne { 0x0f, 0x0058, "TypeSpecificBlockOffset" },
13485465d9f5SThomas Kuehne { 0x0f, 0x0059, "BlockType" },
13495465d9f5SThomas Kuehne { 0x0f, 0x005a, "SetEnvelopeReport" },
13505465d9f5SThomas Kuehne { 0x0f, 0x005b, "AttackLevel" },
13515465d9f5SThomas Kuehne { 0x0f, 0x005c, "AttackTime" },
13525465d9f5SThomas Kuehne { 0x0f, 0x005d, "FadeLevel" },
13535465d9f5SThomas Kuehne { 0x0f, 0x005e, "FadeTime" },
13545465d9f5SThomas Kuehne { 0x0f, 0x005f, "SetConditionReport" },
13555465d9f5SThomas Kuehne { 0x0f, 0x0060, "CenterPointOffset" },
13565465d9f5SThomas Kuehne { 0x0f, 0x0061, "PositiveCoefficient" },
13575465d9f5SThomas Kuehne { 0x0f, 0x0062, "NegativeCoefficient" },
13585465d9f5SThomas Kuehne { 0x0f, 0x0063, "PositiveSaturation" },
13595465d9f5SThomas Kuehne { 0x0f, 0x0064, "NegativeSaturation" },
13605465d9f5SThomas Kuehne { 0x0f, 0x0065, "DeadBand" },
13615465d9f5SThomas Kuehne { 0x0f, 0x0066, "DownloadForceSample" },
13625465d9f5SThomas Kuehne { 0x0f, 0x0067, "IsochCustomForceEnable" },
13635465d9f5SThomas Kuehne { 0x0f, 0x0068, "CustomForceDataReport" },
13645465d9f5SThomas Kuehne { 0x0f, 0x0069, "CustomForceData" },
13655465d9f5SThomas Kuehne { 0x0f, 0x006a, "CustomForceVendorDefinedData" },
13665465d9f5SThomas Kuehne { 0x0f, 0x006b, "SetCustomForceReport" },
13675465d9f5SThomas Kuehne { 0x0f, 0x006c, "CustomForceDataOffset" },
13685465d9f5SThomas Kuehne { 0x0f, 0x006d, "SampleCount" },
13695465d9f5SThomas Kuehne { 0x0f, 0x006e, "SetPeriodicReport" },
13705465d9f5SThomas Kuehne { 0x0f, 0x006f, "Offset" },
13715465d9f5SThomas Kuehne { 0x0f, 0x0070, "Magnitude" },
13725465d9f5SThomas Kuehne { 0x0f, 0x0071, "Phase" },
13735465d9f5SThomas Kuehne { 0x0f, 0x0072, "Period" },
13745465d9f5SThomas Kuehne { 0x0f, 0x0073, "SetConstantForceReport" },
13755465d9f5SThomas Kuehne { 0x0f, 0x0074, "SetRampForceReport" },
13765465d9f5SThomas Kuehne { 0x0f, 0x0075, "RampStart" },
13775465d9f5SThomas Kuehne { 0x0f, 0x0076, "RampEnd" },
13785465d9f5SThomas Kuehne { 0x0f, 0x0077, "EffectOperationReport" },
13795465d9f5SThomas Kuehne { 0x0f, 0x0078, "EffectOperation" },
13805465d9f5SThomas Kuehne { 0x0f, 0x0079, "OpEffectStart" },
13815465d9f5SThomas Kuehne { 0x0f, 0x007a, "OpEffectStartSolo" },
13825465d9f5SThomas Kuehne { 0x0f, 0x007b, "OpEffectStop" },
13835465d9f5SThomas Kuehne { 0x0f, 0x007c, "LoopCount" },
13845465d9f5SThomas Kuehne { 0x0f, 0x007d, "DeviceGainReport" },
13855465d9f5SThomas Kuehne { 0x0f, 0x007e, "DeviceGain" },
13865465d9f5SThomas Kuehne { 0x0f, 0x007f, "ParameterBlockPoolsReport" },
13875465d9f5SThomas Kuehne { 0x0f, 0x0080, "RAMPoolSize" },
13885465d9f5SThomas Kuehne { 0x0f, 0x0081, "ROMPoolSize" },
13895465d9f5SThomas Kuehne { 0x0f, 0x0082, "ROMEffectBlockCount" },
13905465d9f5SThomas Kuehne { 0x0f, 0x0083, "SimultaneousEffectsMax" },
13915465d9f5SThomas Kuehne { 0x0f, 0x0084, "PoolAlignment" },
13925465d9f5SThomas Kuehne { 0x0f, 0x0085, "ParameterBlockMoveReport" },
13935465d9f5SThomas Kuehne { 0x0f, 0x0086, "MoveSource" },
13945465d9f5SThomas Kuehne { 0x0f, 0x0087, "MoveDestination" },
13955465d9f5SThomas Kuehne { 0x0f, 0x0088, "MoveLength" },
13965465d9f5SThomas Kuehne { 0x0f, 0x0089, "EffectParameterBlockLoadReport" },
13975465d9f5SThomas Kuehne { 0x0f, 0x008b, "EffectParameterBlockLoadStatus" },
13985465d9f5SThomas Kuehne { 0x0f, 0x008c, "BlockLoadSuccess" },
13995465d9f5SThomas Kuehne { 0x0f, 0x008d, "BlockLoadFull" },
14005465d9f5SThomas Kuehne { 0x0f, 0x008e, "BlockLoadError" },
14015465d9f5SThomas Kuehne { 0x0f, 0x008f, "BlockHandle" },
14025465d9f5SThomas Kuehne { 0x0f, 0x0090, "EffectParameterBlockFreeReport" },
14035465d9f5SThomas Kuehne { 0x0f, 0x0091, "TypeSpecificBlockHandle" },
14045465d9f5SThomas Kuehne { 0x0f, 0x0092, "PIDStateReport" },
14055465d9f5SThomas Kuehne { 0x0f, 0x0094, "EffectPlaying" },
14065465d9f5SThomas Kuehne { 0x0f, 0x0095, "PIDDeviceControlReport" },
14075465d9f5SThomas Kuehne { 0x0f, 0x0096, "PIDDeviceControl" },
14085465d9f5SThomas Kuehne { 0x0f, 0x0097, "DCEnableActuators" },
14095465d9f5SThomas Kuehne { 0x0f, 0x0098, "DCDisableActuators" },
14105465d9f5SThomas Kuehne { 0x0f, 0x0099, "DCStopAllEffects" },
14115465d9f5SThomas Kuehne { 0x0f, 0x009a, "DCReset" },
14125465d9f5SThomas Kuehne { 0x0f, 0x009b, "DCPause" },
14135465d9f5SThomas Kuehne { 0x0f, 0x009c, "DCContinue" },
14145465d9f5SThomas Kuehne { 0x0f, 0x009f, "DevicePaused" },
14155465d9f5SThomas Kuehne { 0x0f, 0x00a0, "ActuatorsEnabled" },
14165465d9f5SThomas Kuehne { 0x0f, 0x00a4, "SafetySwitch" },
14175465d9f5SThomas Kuehne { 0x0f, 0x00a5, "ActuatorOverrideSwitch" },
14185465d9f5SThomas Kuehne { 0x0f, 0x00a6, "ActuatorPower" },
14195465d9f5SThomas Kuehne { 0x0f, 0x00a7, "StartDelay" },
14205465d9f5SThomas Kuehne { 0x0f, 0x00a8, "ParameterBlockSize" },
14215465d9f5SThomas Kuehne { 0x0f, 0x00a9, "DeviceManagedPool" },
14225465d9f5SThomas Kuehne { 0x0f, 0x00aa, "SharedParameterBlocks" },
14235465d9f5SThomas Kuehne { 0x0f, 0x00ab, "CreateNewEffectParameterBlockReport" },
14245465d9f5SThomas Kuehne { 0x0f, 0x00ac, "RAMPoolAvailable" },
14255465d9f5SThomas Kuehne { 0x11, 0, "SoC" },
14265465d9f5SThomas Kuehne { 0x11, 0x0001, "SocControl" },
14275465d9f5SThomas Kuehne { 0x11, 0x0002, "FirmwareTransfer" },
14285465d9f5SThomas Kuehne { 0x11, 0x0003, "FirmwareFileId" },
14295465d9f5SThomas Kuehne { 0x11, 0x0004, "FileOffsetInBytes" },
14305465d9f5SThomas Kuehne { 0x11, 0x0005, "FileTransferSizeMaxInBytes" },
14315465d9f5SThomas Kuehne { 0x11, 0x0006, "FilePayload" },
14325465d9f5SThomas Kuehne { 0x11, 0x0007, "FilePayloadSizeInBytes" },
14335465d9f5SThomas Kuehne { 0x11, 0x0008, "FilePayloadContainsLastBytes" },
14345465d9f5SThomas Kuehne { 0x11, 0x0009, "FileTransferStop" },
14355465d9f5SThomas Kuehne { 0x11, 0x000a, "FileTransferTillEnd" },
14365465d9f5SThomas Kuehne { 0x12, 0, "EyeandHeadTrackers" },
14375465d9f5SThomas Kuehne { 0x12, 0x0001, "EyeTracker" },
14385465d9f5SThomas Kuehne { 0x12, 0x0002, "HeadTracker" },
14395465d9f5SThomas Kuehne { 0x12, 0x0010, "TrackingData" },
14405465d9f5SThomas Kuehne { 0x12, 0x0011, "Capabilities" },
14415465d9f5SThomas Kuehne { 0x12, 0x0012, "Configuration" },
14425465d9f5SThomas Kuehne { 0x12, 0x0013, "Status" },
14435465d9f5SThomas Kuehne { 0x12, 0x0014, "Control" },
14445465d9f5SThomas Kuehne { 0x12, 0x0020, "SensorTimestamp" },
14455465d9f5SThomas Kuehne { 0x12, 0x0021, "PositionX" },
14465465d9f5SThomas Kuehne { 0x12, 0x0022, "PositionY" },
14475465d9f5SThomas Kuehne { 0x12, 0x0023, "PositionZ" },
14485465d9f5SThomas Kuehne { 0x12, 0x0024, "GazePoint" },
14495465d9f5SThomas Kuehne { 0x12, 0x0025, "LeftEyePosition" },
14505465d9f5SThomas Kuehne { 0x12, 0x0026, "RightEyePosition" },
14515465d9f5SThomas Kuehne { 0x12, 0x0027, "HeadPosition" },
14525465d9f5SThomas Kuehne { 0x12, 0x0028, "HeadDirectionPoint" },
14535465d9f5SThomas Kuehne { 0x12, 0x0029, "RotationaboutXaxis" },
14545465d9f5SThomas Kuehne { 0x12, 0x002a, "RotationaboutYaxis" },
14555465d9f5SThomas Kuehne { 0x12, 0x002b, "RotationaboutZaxis" },
14565465d9f5SThomas Kuehne { 0x12, 0x0100, "TrackerQuality" },
14575465d9f5SThomas Kuehne { 0x12, 0x0101, "MinimumTrackingDistance" },
14585465d9f5SThomas Kuehne { 0x12, 0x0102, "OptimumTrackingDistance" },
14595465d9f5SThomas Kuehne { 0x12, 0x0103, "MaximumTrackingDistance" },
14605465d9f5SThomas Kuehne { 0x12, 0x0104, "MaximumScreenPlaneWidth" },
14615465d9f5SThomas Kuehne { 0x12, 0x0105, "MaximumScreenPlaneHeight" },
14625465d9f5SThomas Kuehne { 0x12, 0x0200, "DisplayManufacturerID" },
14635465d9f5SThomas Kuehne { 0x12, 0x0201, "DisplayProductID" },
14645465d9f5SThomas Kuehne { 0x12, 0x0202, "DisplaySerialNumber" },
14655465d9f5SThomas Kuehne { 0x12, 0x0203, "DisplayManufacturerDate" },
14665465d9f5SThomas Kuehne { 0x12, 0x0204, "CalibratedScreenWidth" },
14675465d9f5SThomas Kuehne { 0x12, 0x0205, "CalibratedScreenHeight" },
14685465d9f5SThomas Kuehne { 0x12, 0x0300, "SamplingFrequency" },
14695465d9f5SThomas Kuehne { 0x12, 0x0301, "ConfigurationStatus" },
14705465d9f5SThomas Kuehne { 0x12, 0x0400, "DeviceModeRequest" },
14715465d9f5SThomas Kuehne { 0x14, 0, "AuxiliaryDisplay" },
14725465d9f5SThomas Kuehne { 0x14, 0x0001, "AlphanumericDisplay" },
14735465d9f5SThomas Kuehne { 0x14, 0x0002, "AuxiliaryDisplay" },
14745465d9f5SThomas Kuehne { 0x14, 0x0020, "DisplayAttributesReport" },
14755465d9f5SThomas Kuehne { 0x14, 0x0021, "ASCIICharacterSet" },
14765465d9f5SThomas Kuehne { 0x14, 0x0022, "DataReadBack" },
14775465d9f5SThomas Kuehne { 0x14, 0x0023, "FontReadBack" },
14785465d9f5SThomas Kuehne { 0x14, 0x0024, "DisplayControlReport" },
14795465d9f5SThomas Kuehne { 0x14, 0x0025, "ClearDisplay" },
14805465d9f5SThomas Kuehne { 0x14, 0x0026, "DisplayEnable" },
14815465d9f5SThomas Kuehne { 0x14, 0x0027, "ScreenSaverDelay" },
14825465d9f5SThomas Kuehne { 0x14, 0x0028, "ScreenSaverEnable" },
14835465d9f5SThomas Kuehne { 0x14, 0x0029, "VerticalScroll" },
14845465d9f5SThomas Kuehne { 0x14, 0x002a, "HorizontalScroll" },
14855465d9f5SThomas Kuehne { 0x14, 0x002b, "CharacterReport" },
14865465d9f5SThomas Kuehne { 0x14, 0x002c, "DisplayData" },
14875465d9f5SThomas Kuehne { 0x14, 0x002d, "DisplayStatus" },
14885465d9f5SThomas Kuehne { 0x14, 0x002e, "StatNotReady" },
14895465d9f5SThomas Kuehne { 0x14, 0x002f, "StatReady" },
14905465d9f5SThomas Kuehne { 0x14, 0x0030, "ErrNotaloadablecharacter" },
14915465d9f5SThomas Kuehne { 0x14, 0x0031, "ErrFontdatacannotberead" },
14925465d9f5SThomas Kuehne { 0x14, 0x0032, "CursorPositionReport" },
14935465d9f5SThomas Kuehne { 0x14, 0x0033, "Row" },
14945465d9f5SThomas Kuehne { 0x14, 0x0034, "Column" },
14955465d9f5SThomas Kuehne { 0x14, 0x0035, "Rows" },
14965465d9f5SThomas Kuehne { 0x14, 0x0036, "Columns" },
14975465d9f5SThomas Kuehne { 0x14, 0x0037, "CursorPixelPositioning" },
14985465d9f5SThomas Kuehne { 0x14, 0x0038, "CursorMode" },
14995465d9f5SThomas Kuehne { 0x14, 0x0039, "CursorEnable" },
15005465d9f5SThomas Kuehne { 0x14, 0x003a, "CursorBlink" },
15015465d9f5SThomas Kuehne { 0x14, 0x003b, "FontReport" },
15025465d9f5SThomas Kuehne { 0x14, 0x003c, "FontData" },
15035465d9f5SThomas Kuehne { 0x14, 0x003d, "CharacterWidth" },
15045465d9f5SThomas Kuehne { 0x14, 0x003e, "CharacterHeight" },
15055465d9f5SThomas Kuehne { 0x14, 0x003f, "CharacterSpacingHorizontal" },
15065465d9f5SThomas Kuehne { 0x14, 0x0040, "CharacterSpacingVertical" },
15075465d9f5SThomas Kuehne { 0x14, 0x0041, "UnicodeCharacterSet" },
15085465d9f5SThomas Kuehne { 0x14, 0x0042, "Font7Segment" },
15095465d9f5SThomas Kuehne { 0x14, 0x0043, "7SegmentDirectMap" },
15105465d9f5SThomas Kuehne { 0x14, 0x0044, "Font14Segment" },
15115465d9f5SThomas Kuehne { 0x14, 0x0045, "14SegmentDirectMap" },
15125465d9f5SThomas Kuehne { 0x14, 0x0046, "DisplayBrightness" },
15135465d9f5SThomas Kuehne { 0x14, 0x0047, "DisplayContrast" },
15145465d9f5SThomas Kuehne { 0x14, 0x0048, "CharacterAttribute" },
15155465d9f5SThomas Kuehne { 0x14, 0x0049, "AttributeReadback" },
15165465d9f5SThomas Kuehne { 0x14, 0x004a, "AttributeData" },
15175465d9f5SThomas Kuehne { 0x14, 0x004b, "CharAttrEnhance" },
15185465d9f5SThomas Kuehne { 0x14, 0x004c, "CharAttrUnderline" },
15195465d9f5SThomas Kuehne { 0x14, 0x004d, "CharAttrBlink" },
15205465d9f5SThomas Kuehne { 0x14, 0x0080, "BitmapSizeX" },
15215465d9f5SThomas Kuehne { 0x14, 0x0081, "BitmapSizeY" },
15225465d9f5SThomas Kuehne { 0x14, 0x0082, "MaxBlitSize" },
15235465d9f5SThomas Kuehne { 0x14, 0x0083, "BitDepthFormat" },
15245465d9f5SThomas Kuehne { 0x14, 0x0084, "DisplayOrientation" },
15255465d9f5SThomas Kuehne { 0x14, 0x0085, "PaletteReport" },
15265465d9f5SThomas Kuehne { 0x14, 0x0086, "PaletteDataSize" },
15275465d9f5SThomas Kuehne { 0x14, 0x0087, "PaletteDataOffset" },
15285465d9f5SThomas Kuehne { 0x14, 0x0088, "PaletteData" },
15295465d9f5SThomas Kuehne { 0x14, 0x008a, "BlitReport" },
15305465d9f5SThomas Kuehne { 0x14, 0x008b, "BlitRectangleX1" },
15315465d9f5SThomas Kuehne { 0x14, 0x008c, "BlitRectangleY1" },
15325465d9f5SThomas Kuehne { 0x14, 0x008d, "BlitRectangleX2" },
15335465d9f5SThomas Kuehne { 0x14, 0x008e, "BlitRectangleY2" },
15345465d9f5SThomas Kuehne { 0x14, 0x008f, "BlitData" },
15355465d9f5SThomas Kuehne { 0x14, 0x0090, "SoftButton" },
15365465d9f5SThomas Kuehne { 0x14, 0x0091, "SoftButtonID" },
15375465d9f5SThomas Kuehne { 0x14, 0x0092, "SoftButtonSide" },
15385465d9f5SThomas Kuehne { 0x14, 0x0093, "SoftButtonOffset1" },
15395465d9f5SThomas Kuehne { 0x14, 0x0094, "SoftButtonOffset2" },
15405465d9f5SThomas Kuehne { 0x14, 0x0095, "SoftButtonReport" },
15415465d9f5SThomas Kuehne { 0x14, 0x00c2, "SoftKeys" },
15425465d9f5SThomas Kuehne { 0x14, 0x00cc, "DisplayDataExtensions" },
15435465d9f5SThomas Kuehne { 0x14, 0x00cf, "CharacterMapping" },
15445465d9f5SThomas Kuehne { 0x14, 0x00dd, "UnicodeEquivalent" },
15455465d9f5SThomas Kuehne { 0x14, 0x00df, "CharacterPageMapping" },
15465465d9f5SThomas Kuehne { 0x14, 0x00ff, "RequestReport" },
15475465d9f5SThomas Kuehne { 0x20, 0, "Sensors" },
15485465d9f5SThomas Kuehne { 0x20, 0x0001, "Sensor" },
15495465d9f5SThomas Kuehne { 0x20, 0x0010, "Biometric" },
15505465d9f5SThomas Kuehne { 0x20, 0x0011, "BiometricHumanPresence" },
15515465d9f5SThomas Kuehne { 0x20, 0x0012, "BiometricHumanProximity" },
15525465d9f5SThomas Kuehne { 0x20, 0x0013, "BiometricHumanTouch" },
15535465d9f5SThomas Kuehne { 0x20, 0x0014, "BiometricBloodPressure" },
15545465d9f5SThomas Kuehne { 0x20, 0x0015, "BiometricBodyTemperature" },
15555465d9f5SThomas Kuehne { 0x20, 0x0016, "BiometricHeartRate" },
15565465d9f5SThomas Kuehne { 0x20, 0x0017, "BiometricHeartRateVariability" },
15575465d9f5SThomas Kuehne { 0x20, 0x0018, "BiometricPeripheralOxygenSaturation" },
15585465d9f5SThomas Kuehne { 0x20, 0x0019, "BiometricRespiratoryRate" },
15595465d9f5SThomas Kuehne { 0x20, 0x0020, "Electrical" },
15605465d9f5SThomas Kuehne { 0x20, 0x0021, "ElectricalCapacitance" },
15615465d9f5SThomas Kuehne { 0x20, 0x0022, "ElectricalCurrent" },
15625465d9f5SThomas Kuehne { 0x20, 0x0023, "ElectricalPower" },
15635465d9f5SThomas Kuehne { 0x20, 0x0024, "ElectricalInductance" },
15645465d9f5SThomas Kuehne { 0x20, 0x0025, "ElectricalResistance" },
15655465d9f5SThomas Kuehne { 0x20, 0x0026, "ElectricalVoltage" },
15665465d9f5SThomas Kuehne { 0x20, 0x0027, "ElectricalPotentiometer" },
15675465d9f5SThomas Kuehne { 0x20, 0x0028, "ElectricalFrequency" },
15685465d9f5SThomas Kuehne { 0x20, 0x0029, "ElectricalPeriod" },
15695465d9f5SThomas Kuehne { 0x20, 0x0030, "Environmental" },
15705465d9f5SThomas Kuehne { 0x20, 0x0031, "EnvironmentalAtmosphericPressure" },
15715465d9f5SThomas Kuehne { 0x20, 0x0032, "EnvironmentalHumidity" },
15725465d9f5SThomas Kuehne { 0x20, 0x0033, "EnvironmentalTemperature" },
15735465d9f5SThomas Kuehne { 0x20, 0x0034, "EnvironmentalWindDirection" },
15745465d9f5SThomas Kuehne { 0x20, 0x0035, "EnvironmentalWindSpeed" },
15755465d9f5SThomas Kuehne { 0x20, 0x0036, "EnvironmentalAirQuality" },
15765465d9f5SThomas Kuehne { 0x20, 0x0037, "EnvironmentalHeatIndex" },
15775465d9f5SThomas Kuehne { 0x20, 0x0038, "EnvironmentalSurfaceTemperature" },
15785465d9f5SThomas Kuehne { 0x20, 0x0039, "EnvironmentalVolatileOrganicCompounds" },
15795465d9f5SThomas Kuehne { 0x20, 0x003a, "EnvironmentalObjectPresence" },
15805465d9f5SThomas Kuehne { 0x20, 0x003b, "EnvironmentalObjectProximity" },
15815465d9f5SThomas Kuehne { 0x20, 0x0040, "Light" },
15825465d9f5SThomas Kuehne { 0x20, 0x0041, "LightAmbientLight" },
15835465d9f5SThomas Kuehne { 0x20, 0x0042, "LightConsumerInfrared" },
15845465d9f5SThomas Kuehne { 0x20, 0x0043, "LightInfraredLight" },
15855465d9f5SThomas Kuehne { 0x20, 0x0044, "LightVisibleLight" },
15865465d9f5SThomas Kuehne { 0x20, 0x0045, "LightUltravioletLight" },
15875465d9f5SThomas Kuehne { 0x20, 0x0050, "Location" },
15885465d9f5SThomas Kuehne { 0x20, 0x0051, "LocationBroadcast" },
15895465d9f5SThomas Kuehne { 0x20, 0x0052, "LocationDeadReckoning" },
15905465d9f5SThomas Kuehne { 0x20, 0x0053, "LocationGPSGlobalPositioningSystem" },
15915465d9f5SThomas Kuehne { 0x20, 0x0054, "LocationLookup" },
15925465d9f5SThomas Kuehne { 0x20, 0x0055, "LocationOther" },
15935465d9f5SThomas Kuehne { 0x20, 0x0056, "LocationStatic" },
15945465d9f5SThomas Kuehne { 0x20, 0x0057, "LocationTriangulation" },
15955465d9f5SThomas Kuehne { 0x20, 0x0060, "Mechanical" },
15965465d9f5SThomas Kuehne { 0x20, 0x0061, "MechanicalBooleanSwitch" },
15975465d9f5SThomas Kuehne { 0x20, 0x0062, "MechanicalBooleanSwitchArray" },
15985465d9f5SThomas Kuehne { 0x20, 0x0063, "MechanicalMultivalueSwitch" },
15995465d9f5SThomas Kuehne { 0x20, 0x0064, "MechanicalForce" },
16005465d9f5SThomas Kuehne { 0x20, 0x0065, "MechanicalPressure" },
16015465d9f5SThomas Kuehne { 0x20, 0x0066, "MechanicalStrain" },
16025465d9f5SThomas Kuehne { 0x20, 0x0067, "MechanicalWeight" },
16035465d9f5SThomas Kuehne { 0x20, 0x0068, "MechanicalHapticVibrator" },
16045465d9f5SThomas Kuehne { 0x20, 0x0069, "MechanicalHallEffectSwitch" },
16055465d9f5SThomas Kuehne { 0x20, 0x0070, "Motion" },
16065465d9f5SThomas Kuehne { 0x20, 0x0071, "MotionAccelerometer1D" },
16075465d9f5SThomas Kuehne { 0x20, 0x0072, "MotionAccelerometer2D" },
16085465d9f5SThomas Kuehne { 0x20, 0x0073, "MotionAccelerometer3D" },
16095465d9f5SThomas Kuehne { 0x20, 0x0074, "MotionGyrometer1D" },
16105465d9f5SThomas Kuehne { 0x20, 0x0075, "MotionGyrometer2D" },
16115465d9f5SThomas Kuehne { 0x20, 0x0076, "MotionGyrometer3D" },
16125465d9f5SThomas Kuehne { 0x20, 0x0077, "MotionMotionDetector" },
16135465d9f5SThomas Kuehne { 0x20, 0x0078, "MotionSpeedometer" },
16145465d9f5SThomas Kuehne { 0x20, 0x0079, "MotionAccelerometer" },
16155465d9f5SThomas Kuehne { 0x20, 0x007a, "MotionGyrometer" },
16165465d9f5SThomas Kuehne { 0x20, 0x007b, "MotionGravityVector" },
16175465d9f5SThomas Kuehne { 0x20, 0x007c, "MotionLinearAccelerometer" },
16185465d9f5SThomas Kuehne { 0x20, 0x0080, "Orientation" },
16195465d9f5SThomas Kuehne { 0x20, 0x0081, "OrientationCompass1D" },
16205465d9f5SThomas Kuehne { 0x20, 0x0082, "OrientationCompass2D" },
16215465d9f5SThomas Kuehne { 0x20, 0x0083, "OrientationCompass3D" },
16225465d9f5SThomas Kuehne { 0x20, 0x0084, "OrientationInclinometer1D" },
16235465d9f5SThomas Kuehne { 0x20, 0x0085, "OrientationInclinometer2D" },
16245465d9f5SThomas Kuehne { 0x20, 0x0086, "OrientationInclinometer3D" },
16255465d9f5SThomas Kuehne { 0x20, 0x0087, "OrientationDistance1D" },
16265465d9f5SThomas Kuehne { 0x20, 0x0088, "OrientationDistance2D" },
16275465d9f5SThomas Kuehne { 0x20, 0x0089, "OrientationDistance3D" },
16285465d9f5SThomas Kuehne { 0x20, 0x008a, "OrientationDeviceOrientation" },
16295465d9f5SThomas Kuehne { 0x20, 0x008b, "OrientationCompass" },
16305465d9f5SThomas Kuehne { 0x20, 0x008c, "OrientationInclinometer" },
16315465d9f5SThomas Kuehne { 0x20, 0x008d, "OrientationDistance" },
16325465d9f5SThomas Kuehne { 0x20, 0x008e, "OrientationRelativeOrientation" },
16335465d9f5SThomas Kuehne { 0x20, 0x008f, "OrientationSimpleOrientation" },
16345465d9f5SThomas Kuehne { 0x20, 0x0090, "Scanner" },
16355465d9f5SThomas Kuehne { 0x20, 0x0091, "ScannerBarcode" },
16365465d9f5SThomas Kuehne { 0x20, 0x0092, "ScannerRFID" },
16375465d9f5SThomas Kuehne { 0x20, 0x0093, "ScannerNFC" },
16385465d9f5SThomas Kuehne { 0x20, 0x00a0, "Time" },
16395465d9f5SThomas Kuehne { 0x20, 0x00a1, "TimeAlarmTimer" },
16405465d9f5SThomas Kuehne { 0x20, 0x00a2, "TimeRealTimeClock" },
16415465d9f5SThomas Kuehne { 0x20, 0x00b0, "PersonalActivity" },
16425465d9f5SThomas Kuehne { 0x20, 0x00b1, "PersonalActivityActivityDetection" },
16435465d9f5SThomas Kuehne { 0x20, 0x00b2, "PersonalActivityDevicePosition" },
16445465d9f5SThomas Kuehne { 0x20, 0x00b3, "PersonalActivityFloorTracker" },
16455465d9f5SThomas Kuehne { 0x20, 0x00b4, "PersonalActivityPedometer" },
16465465d9f5SThomas Kuehne { 0x20, 0x00b5, "PersonalActivityStepDetection" },
16475465d9f5SThomas Kuehne { 0x20, 0x00c0, "OrientationExtended" },
16485465d9f5SThomas Kuehne { 0x20, 0x00c1, "OrientationExtendedGeomagneticOrientation" },
16495465d9f5SThomas Kuehne { 0x20, 0x00c2, "OrientationExtendedMagnetometer" },
16505465d9f5SThomas Kuehne { 0x20, 0x00d0, "Gesture" },
16515465d9f5SThomas Kuehne { 0x20, 0x00d1, "GestureChassisFlipGesture" },
16525465d9f5SThomas Kuehne { 0x20, 0x00d2, "GestureHingeFoldGesture" },
16535465d9f5SThomas Kuehne { 0x20, 0x00e0, "Other" },
16545465d9f5SThomas Kuehne { 0x20, 0x00e1, "OtherCustom" },
16555465d9f5SThomas Kuehne { 0x20, 0x00e2, "OtherGeneric" },
16565465d9f5SThomas Kuehne { 0x20, 0x00e3, "OtherGenericEnumerator" },
16575465d9f5SThomas Kuehne { 0x20, 0x00e4, "OtherHingeAngle" },
16585465d9f5SThomas Kuehne { 0x20, 0x00f0, "VendorReserved1" },
16595465d9f5SThomas Kuehne { 0x20, 0x00f1, "VendorReserved2" },
16605465d9f5SThomas Kuehne { 0x20, 0x00f2, "VendorReserved3" },
16615465d9f5SThomas Kuehne { 0x20, 0x00f3, "VendorReserved4" },
16625465d9f5SThomas Kuehne { 0x20, 0x00f4, "VendorReserved5" },
16635465d9f5SThomas Kuehne { 0x20, 0x00f5, "VendorReserved6" },
16645465d9f5SThomas Kuehne { 0x20, 0x00f6, "VendorReserved7" },
16655465d9f5SThomas Kuehne { 0x20, 0x00f7, "VendorReserved8" },
16665465d9f5SThomas Kuehne { 0x20, 0x00f8, "VendorReserved9" },
16675465d9f5SThomas Kuehne { 0x20, 0x00f9, "VendorReserved10" },
16685465d9f5SThomas Kuehne { 0x20, 0x00fa, "VendorReserved11" },
16695465d9f5SThomas Kuehne { 0x20, 0x00fb, "VendorReserved12" },
16705465d9f5SThomas Kuehne { 0x20, 0x00fc, "VendorReserved13" },
16715465d9f5SThomas Kuehne { 0x20, 0x00fd, "VendorReserved14" },
16725465d9f5SThomas Kuehne { 0x20, 0x00fe, "VendorReserved15" },
16735465d9f5SThomas Kuehne { 0x20, 0x00ff, "VendorReserved16" },
16745465d9f5SThomas Kuehne { 0x20, 0x0200, "Event" },
16755465d9f5SThomas Kuehne { 0x20, 0x0201, "EventSensorState" },
16765465d9f5SThomas Kuehne { 0x20, 0x0202, "EventSensorEvent" },
16775465d9f5SThomas Kuehne { 0x20, 0x0300, "Property" },
16785465d9f5SThomas Kuehne { 0x20, 0x0301, "PropertyFriendlyName" },
16795465d9f5SThomas Kuehne { 0x20, 0x0302, "PropertyPersistentUniqueID" },
16805465d9f5SThomas Kuehne { 0x20, 0x0303, "PropertySensorStatus" },
16815465d9f5SThomas Kuehne { 0x20, 0x0304, "PropertyMinimumReportInterval" },
16825465d9f5SThomas Kuehne { 0x20, 0x0305, "PropertySensorManufacturer" },
16835465d9f5SThomas Kuehne { 0x20, 0x0306, "PropertySensorModel" },
16845465d9f5SThomas Kuehne { 0x20, 0x0307, "PropertySensorSerialNumber" },
16855465d9f5SThomas Kuehne { 0x20, 0x0308, "PropertySensorDescription" },
16865465d9f5SThomas Kuehne { 0x20, 0x0309, "PropertySensorConnectionType" },
16875465d9f5SThomas Kuehne { 0x20, 0x030a, "PropertySensorDevicePath" },
16885465d9f5SThomas Kuehne { 0x20, 0x030b, "PropertyHardwareRevision" },
16895465d9f5SThomas Kuehne { 0x20, 0x030c, "PropertyFirmwareVersion" },
16905465d9f5SThomas Kuehne { 0x20, 0x030d, "PropertyReleaseDate" },
16915465d9f5SThomas Kuehne { 0x20, 0x030e, "PropertyReportInterval" },
16925465d9f5SThomas Kuehne { 0x20, 0x030f, "PropertyChangeSensitivityAbsolute" },
16935465d9f5SThomas Kuehne { 0x20, 0x0310, "PropertyChangeSensitivityPercentofRange" },
16945465d9f5SThomas Kuehne { 0x20, 0x0311, "PropertyChangeSensitivityPercentRelative" },
16955465d9f5SThomas Kuehne { 0x20, 0x0312, "PropertyAccuracy" },
16965465d9f5SThomas Kuehne { 0x20, 0x0313, "PropertyResolution" },
16975465d9f5SThomas Kuehne { 0x20, 0x0314, "PropertyMaximum" },
16985465d9f5SThomas Kuehne { 0x20, 0x0315, "PropertyMinimum" },
16995465d9f5SThomas Kuehne { 0x20, 0x0316, "PropertyReportingState" },
17005465d9f5SThomas Kuehne { 0x20, 0x0317, "PropertySamplingRate" },
17015465d9f5SThomas Kuehne { 0x20, 0x0318, "PropertyResponseCurve" },
17025465d9f5SThomas Kuehne { 0x20, 0x0319, "PropertyPowerState" },
17035465d9f5SThomas Kuehne { 0x20, 0x031a, "PropertyMaximumFIFOEvents" },
17045465d9f5SThomas Kuehne { 0x20, 0x031b, "PropertyReportLatency" },
17055465d9f5SThomas Kuehne { 0x20, 0x031c, "PropertyFlushFIFOEvents" },
17065465d9f5SThomas Kuehne { 0x20, 0x031d, "PropertyMaximumPowerConsumption" },
17075465d9f5SThomas Kuehne { 0x20, 0x031e, "PropertyIsPrimary" },
17085465d9f5SThomas Kuehne { 0x20, 0x031f, "PropertyHumanPresenceDetectionType" },
17095465d9f5SThomas Kuehne { 0x20, 0x0400, "DataFieldLocation" },
17105465d9f5SThomas Kuehne { 0x20, 0x0402, "DataFieldAltitudeAntennaSeaLevel" },
17115465d9f5SThomas Kuehne { 0x20, 0x0403, "DataFieldDifferentialReferenceStationID" },
17125465d9f5SThomas Kuehne { 0x20, 0x0404, "DataFieldAltitudeEllipsoidError" },
17135465d9f5SThomas Kuehne { 0x20, 0x0405, "DataFieldAltitudeEllipsoid" },
17145465d9f5SThomas Kuehne { 0x20, 0x0406, "DataFieldAltitudeSeaLevelError" },
17155465d9f5SThomas Kuehne { 0x20, 0x0407, "DataFieldAltitudeSeaLevel" },
17165465d9f5SThomas Kuehne { 0x20, 0x0408, "DataFieldDifferentialGPSDataAge" },
17175465d9f5SThomas Kuehne { 0x20, 0x0409, "DataFieldErrorRadius" },
17185465d9f5SThomas Kuehne { 0x20, 0x040a, "DataFieldFixQuality" },
17195465d9f5SThomas Kuehne { 0x20, 0x040b, "DataFieldFixType" },
17205465d9f5SThomas Kuehne { 0x20, 0x040c, "DataFieldGeoidalSeparation" },
17215465d9f5SThomas Kuehne { 0x20, 0x040d, "DataFieldGPSOperationMode" },
17225465d9f5SThomas Kuehne { 0x20, 0x040e, "DataFieldGPSSelectionMode" },
17235465d9f5SThomas Kuehne { 0x20, 0x040f, "DataFieldGPSStatus" },
17245465d9f5SThomas Kuehne { 0x20, 0x0410, "DataFieldPositionDilutionofPrecision" },
17255465d9f5SThomas Kuehne { 0x20, 0x0411, "DataFieldHorizontalDilutionofPrecision" },
17265465d9f5SThomas Kuehne { 0x20, 0x0412, "DataFieldVerticalDilutionofPrecision" },
17275465d9f5SThomas Kuehne { 0x20, 0x0413, "DataFieldLatitude" },
17285465d9f5SThomas Kuehne { 0x20, 0x0414, "DataFieldLongitude" },
17295465d9f5SThomas Kuehne { 0x20, 0x0415, "DataFieldTrueHeading" },
17305465d9f5SThomas Kuehne { 0x20, 0x0416, "DataFieldMagneticHeading" },
17315465d9f5SThomas Kuehne { 0x20, 0x0417, "DataFieldMagneticVariation" },
17325465d9f5SThomas Kuehne { 0x20, 0x0418, "DataFieldSpeed" },
17335465d9f5SThomas Kuehne { 0x20, 0x0419, "DataFieldSatellitesinView" },
17345465d9f5SThomas Kuehne { 0x20, 0x041a, "DataFieldSatellitesinViewAzimuth" },
17355465d9f5SThomas Kuehne { 0x20, 0x041b, "DataFieldSatellitesinViewElevation" },
17365465d9f5SThomas Kuehne { 0x20, 0x041c, "DataFieldSatellitesinViewIDs" },
17375465d9f5SThomas Kuehne { 0x20, 0x041d, "DataFieldSatellitesinViewPRNs" },
17385465d9f5SThomas Kuehne { 0x20, 0x041e, "DataFieldSatellitesinViewSNRatios" },
17395465d9f5SThomas Kuehne { 0x20, 0x041f, "DataFieldSatellitesUsedCount" },
17405465d9f5SThomas Kuehne { 0x20, 0x0420, "DataFieldSatellitesUsedPRNs" },
17415465d9f5SThomas Kuehne { 0x20, 0x0421, "DataFieldNMEASentence" },
17425465d9f5SThomas Kuehne { 0x20, 0x0422, "DataFieldAddressLine1" },
17435465d9f5SThomas Kuehne { 0x20, 0x0423, "DataFieldAddressLine2" },
17445465d9f5SThomas Kuehne { 0x20, 0x0424, "DataFieldCity" },
17455465d9f5SThomas Kuehne { 0x20, 0x0425, "DataFieldStateorProvince" },
17465465d9f5SThomas Kuehne { 0x20, 0x0426, "DataFieldCountryorRegion" },
17475465d9f5SThomas Kuehne { 0x20, 0x0427, "DataFieldPostalCode" },
17485465d9f5SThomas Kuehne { 0x20, 0x042a, "PropertyLocation" },
17495465d9f5SThomas Kuehne { 0x20, 0x042b, "PropertyLocationDesiredAccuracy" },
17505465d9f5SThomas Kuehne { 0x20, 0x0430, "DataFieldEnvironmental" },
17515465d9f5SThomas Kuehne { 0x20, 0x0431, "DataFieldAtmosphericPressure" },
17525465d9f5SThomas Kuehne { 0x20, 0x0433, "DataFieldRelativeHumidity" },
17535465d9f5SThomas Kuehne { 0x20, 0x0434, "DataFieldTemperature" },
17545465d9f5SThomas Kuehne { 0x20, 0x0435, "DataFieldWindDirection" },
17555465d9f5SThomas Kuehne { 0x20, 0x0436, "DataFieldWindSpeed" },
17565465d9f5SThomas Kuehne { 0x20, 0x0437, "DataFieldAirQualityIndex" },
17575465d9f5SThomas Kuehne { 0x20, 0x0438, "DataFieldEquivalentCO2" },
17585465d9f5SThomas Kuehne { 0x20, 0x0439, "DataFieldVolatileOrganicCompoundConcentration" },
17595465d9f5SThomas Kuehne { 0x20, 0x043a, "DataFieldObjectPresence" },
17605465d9f5SThomas Kuehne { 0x20, 0x043b, "DataFieldObjectProximityRange" },
17615465d9f5SThomas Kuehne { 0x20, 0x043c, "DataFieldObjectProximityOutofRange" },
17625465d9f5SThomas Kuehne { 0x20, 0x0440, "PropertyEnvironmental" },
17635465d9f5SThomas Kuehne { 0x20, 0x0441, "PropertyReferencePressure" },
17645465d9f5SThomas Kuehne { 0x20, 0x0450, "DataFieldMotion" },
17655465d9f5SThomas Kuehne { 0x20, 0x0451, "DataFieldMotionState" },
17665465d9f5SThomas Kuehne { 0x20, 0x0452, "DataFieldAcceleration" },
17675465d9f5SThomas Kuehne { 0x20, 0x0453, "DataFieldAccelerationAxisX" },
17685465d9f5SThomas Kuehne { 0x20, 0x0454, "DataFieldAccelerationAxisY" },
17695465d9f5SThomas Kuehne { 0x20, 0x0455, "DataFieldAccelerationAxisZ" },
17705465d9f5SThomas Kuehne { 0x20, 0x0456, "DataFieldAngularVelocity" },
17715465d9f5SThomas Kuehne { 0x20, 0x0457, "DataFieldAngularVelocityaboutXAxis" },
17725465d9f5SThomas Kuehne { 0x20, 0x0458, "DataFieldAngularVelocityaboutYAxis" },
17735465d9f5SThomas Kuehne { 0x20, 0x0459, "DataFieldAngularVelocityaboutZAxis" },
17745465d9f5SThomas Kuehne { 0x20, 0x045a, "DataFieldAngularPosition" },
17755465d9f5SThomas Kuehne { 0x20, 0x045b, "DataFieldAngularPositionaboutXAxis" },
17765465d9f5SThomas Kuehne { 0x20, 0x045c, "DataFieldAngularPositionaboutYAxis" },
17775465d9f5SThomas Kuehne { 0x20, 0x045d, "DataFieldAngularPositionaboutZAxis" },
17785465d9f5SThomas Kuehne { 0x20, 0x045e, "DataFieldMotionSpeed" },
17795465d9f5SThomas Kuehne { 0x20, 0x045f, "DataFieldMotionIntensity" },
17805465d9f5SThomas Kuehne { 0x20, 0x0470, "DataFieldOrientation" },
17815465d9f5SThomas Kuehne { 0x20, 0x0471, "DataFieldHeading" },
17825465d9f5SThomas Kuehne { 0x20, 0x0472, "DataFieldHeadingXAxis" },
17835465d9f5SThomas Kuehne { 0x20, 0x0473, "DataFieldHeadingYAxis" },
17845465d9f5SThomas Kuehne { 0x20, 0x0474, "DataFieldHeadingZAxis" },
17855465d9f5SThomas Kuehne { 0x20, 0x0475, "DataFieldHeadingCompensatedMagneticNorth" },
17865465d9f5SThomas Kuehne { 0x20, 0x0476, "DataFieldHeadingCompensatedTrueNorth" },
17875465d9f5SThomas Kuehne { 0x20, 0x0477, "DataFieldHeadingMagneticNorth" },
17885465d9f5SThomas Kuehne { 0x20, 0x0478, "DataFieldHeadingTrueNorth" },
17895465d9f5SThomas Kuehne { 0x20, 0x0479, "DataFieldDistance" },
17905465d9f5SThomas Kuehne { 0x20, 0x047a, "DataFieldDistanceXAxis" },
17915465d9f5SThomas Kuehne { 0x20, 0x047b, "DataFieldDistanceYAxis" },
17925465d9f5SThomas Kuehne { 0x20, 0x047c, "DataFieldDistanceZAxis" },
17935465d9f5SThomas Kuehne { 0x20, 0x047d, "DataFieldDistanceOutofRange" },
17945465d9f5SThomas Kuehne { 0x20, 0x047e, "DataFieldTilt" },
17955465d9f5SThomas Kuehne { 0x20, 0x047f, "DataFieldTiltXAxis" },
17965465d9f5SThomas Kuehne { 0x20, 0x0480, "DataFieldTiltYAxis" },
17975465d9f5SThomas Kuehne { 0x20, 0x0481, "DataFieldTiltZAxis" },
17985465d9f5SThomas Kuehne { 0x20, 0x0482, "DataFieldRotationMatrix" },
17995465d9f5SThomas Kuehne { 0x20, 0x0483, "DataFieldQuaternion" },
18005465d9f5SThomas Kuehne { 0x20, 0x0484, "DataFieldMagneticFlux" },
18015465d9f5SThomas Kuehne { 0x20, 0x0485, "DataFieldMagneticFluxXAxis" },
18025465d9f5SThomas Kuehne { 0x20, 0x0486, "DataFieldMagneticFluxYAxis" },
18035465d9f5SThomas Kuehne { 0x20, 0x0487, "DataFieldMagneticFluxZAxis" },
18045465d9f5SThomas Kuehne { 0x20, 0x0488, "DataFieldMagnetometerAccuracy" },
18055465d9f5SThomas Kuehne { 0x20, 0x0489, "DataFieldSimpleOrientationDirection" },
18065465d9f5SThomas Kuehne { 0x20, 0x0490, "DataFieldMechanical" },
18075465d9f5SThomas Kuehne { 0x20, 0x0491, "DataFieldBooleanSwitchState" },
18085465d9f5SThomas Kuehne { 0x20, 0x0492, "DataFieldBooleanSwitchArrayStates" },
18095465d9f5SThomas Kuehne { 0x20, 0x0493, "DataFieldMultivalueSwitchValue" },
18105465d9f5SThomas Kuehne { 0x20, 0x0494, "DataFieldForce" },
18115465d9f5SThomas Kuehne { 0x20, 0x0495, "DataFieldAbsolutePressure" },
18125465d9f5SThomas Kuehne { 0x20, 0x0496, "DataFieldGaugePressure" },
18135465d9f5SThomas Kuehne { 0x20, 0x0497, "DataFieldStrain" },
18145465d9f5SThomas Kuehne { 0x20, 0x0498, "DataFieldWeight" },
18155465d9f5SThomas Kuehne { 0x20, 0x04a0, "PropertyMechanical" },
18165465d9f5SThomas Kuehne { 0x20, 0x04a1, "PropertyVibrationState" },
18175465d9f5SThomas Kuehne { 0x20, 0x04a2, "PropertyForwardVibrationSpeed" },
18185465d9f5SThomas Kuehne { 0x20, 0x04a3, "PropertyBackwardVibrationSpeed" },
18195465d9f5SThomas Kuehne { 0x20, 0x04b0, "DataFieldBiometric" },
18205465d9f5SThomas Kuehne { 0x20, 0x04b1, "DataFieldHumanPresence" },
18215465d9f5SThomas Kuehne { 0x20, 0x04b2, "DataFieldHumanProximityRange" },
18225465d9f5SThomas Kuehne { 0x20, 0x04b3, "DataFieldHumanProximityOutofRange" },
18235465d9f5SThomas Kuehne { 0x20, 0x04b4, "DataFieldHumanTouchState" },
18245465d9f5SThomas Kuehne { 0x20, 0x04b5, "DataFieldBloodPressure" },
18255465d9f5SThomas Kuehne { 0x20, 0x04b6, "DataFieldBloodPressureDiastolic" },
18265465d9f5SThomas Kuehne { 0x20, 0x04b7, "DataFieldBloodPressureSystolic" },
18275465d9f5SThomas Kuehne { 0x20, 0x04b8, "DataFieldHeartRate" },
18285465d9f5SThomas Kuehne { 0x20, 0x04b9, "DataFieldRestingHeartRate" },
18295465d9f5SThomas Kuehne { 0x20, 0x04ba, "DataFieldHeartbeatInterval" },
18305465d9f5SThomas Kuehne { 0x20, 0x04bb, "DataFieldRespiratoryRate" },
18315465d9f5SThomas Kuehne { 0x20, 0x04bc, "DataFieldSpO2" },
18325465d9f5SThomas Kuehne { 0x20, 0x04bd, "DataFieldHumanAttentionDetected" },
18335465d9f5SThomas Kuehne { 0x20, 0x04be, "DataFieldHumanHeadAzimuth" },
18345465d9f5SThomas Kuehne { 0x20, 0x04bf, "DataFieldHumanHeadAltitude" },
18355465d9f5SThomas Kuehne { 0x20, 0x04c0, "DataFieldHumanHeadRoll" },
18365465d9f5SThomas Kuehne { 0x20, 0x04c1, "DataFieldHumanHeadPitch" },
18375465d9f5SThomas Kuehne { 0x20, 0x04c2, "DataFieldHumanHeadYaw" },
18385465d9f5SThomas Kuehne { 0x20, 0x04c3, "DataFieldHumanCorrelationId" },
18395465d9f5SThomas Kuehne { 0x20, 0x04d0, "DataFieldLight" },
18405465d9f5SThomas Kuehne { 0x20, 0x04d1, "DataFieldIlluminance" },
18415465d9f5SThomas Kuehne { 0x20, 0x04d2, "DataFieldColorTemperature" },
18425465d9f5SThomas Kuehne { 0x20, 0x04d3, "DataFieldChromaticity" },
18435465d9f5SThomas Kuehne { 0x20, 0x04d4, "DataFieldChromaticityX" },
18445465d9f5SThomas Kuehne { 0x20, 0x04d5, "DataFieldChromaticityY" },
18455465d9f5SThomas Kuehne { 0x20, 0x04d6, "DataFieldConsumerIRSentenceReceive" },
18465465d9f5SThomas Kuehne { 0x20, 0x04d7, "DataFieldInfraredLight" },
18475465d9f5SThomas Kuehne { 0x20, 0x04d8, "DataFieldRedLight" },
18485465d9f5SThomas Kuehne { 0x20, 0x04d9, "DataFieldGreenLight" },
18495465d9f5SThomas Kuehne { 0x20, 0x04da, "DataFieldBlueLight" },
18505465d9f5SThomas Kuehne { 0x20, 0x04db, "DataFieldUltravioletALight" },
18515465d9f5SThomas Kuehne { 0x20, 0x04dc, "DataFieldUltravioletBLight" },
18525465d9f5SThomas Kuehne { 0x20, 0x04dd, "DataFieldUltravioletIndex" },
18535465d9f5SThomas Kuehne { 0x20, 0x04de, "DataFieldNearInfraredLight" },
18545465d9f5SThomas Kuehne { 0x20, 0x04df, "PropertyLight" },
18555465d9f5SThomas Kuehne { 0x20, 0x04e0, "PropertyConsumerIRSentenceSend" },
18565465d9f5SThomas Kuehne { 0x20, 0x04e2, "PropertyAutoBrightnessPreferred" },
18575465d9f5SThomas Kuehne { 0x20, 0x04e3, "PropertyAutoColorPreferred" },
18585465d9f5SThomas Kuehne { 0x20, 0x04f0, "DataFieldScanner" },
18595465d9f5SThomas Kuehne { 0x20, 0x04f1, "DataFieldRFIDTag40Bit" },
18605465d9f5SThomas Kuehne { 0x20, 0x04f2, "DataFieldNFCSentenceReceive" },
18615465d9f5SThomas Kuehne { 0x20, 0x04f8, "PropertyScanner" },
18625465d9f5SThomas Kuehne { 0x20, 0x04f9, "PropertyNFCSentenceSend" },
18635465d9f5SThomas Kuehne { 0x20, 0x0500, "DataFieldElectrical" },
18645465d9f5SThomas Kuehne { 0x20, 0x0501, "DataFieldCapacitance" },
18655465d9f5SThomas Kuehne { 0x20, 0x0502, "DataFieldCurrent" },
18665465d9f5SThomas Kuehne { 0x20, 0x0503, "DataFieldElectricalPower" },
18675465d9f5SThomas Kuehne { 0x20, 0x0504, "DataFieldInductance" },
18685465d9f5SThomas Kuehne { 0x20, 0x0505, "DataFieldResistance" },
18695465d9f5SThomas Kuehne { 0x20, 0x0506, "DataFieldVoltage" },
18705465d9f5SThomas Kuehne { 0x20, 0x0507, "DataFieldFrequency" },
18715465d9f5SThomas Kuehne { 0x20, 0x0508, "DataFieldPeriod" },
18725465d9f5SThomas Kuehne { 0x20, 0x0509, "DataFieldPercentofRange" },
18735465d9f5SThomas Kuehne { 0x20, 0x0520, "DataFieldTime" },
18745465d9f5SThomas Kuehne { 0x20, 0x0521, "DataFieldYear" },
18755465d9f5SThomas Kuehne { 0x20, 0x0522, "DataFieldMonth" },
18765465d9f5SThomas Kuehne { 0x20, 0x0523, "DataFieldDay" },
18775465d9f5SThomas Kuehne { 0x20, 0x0524, "DataFieldDayofWeek" },
18785465d9f5SThomas Kuehne { 0x20, 0x0525, "DataFieldHour" },
18795465d9f5SThomas Kuehne { 0x20, 0x0526, "DataFieldMinute" },
18805465d9f5SThomas Kuehne { 0x20, 0x0527, "DataFieldSecond" },
18815465d9f5SThomas Kuehne { 0x20, 0x0528, "DataFieldMillisecond" },
18825465d9f5SThomas Kuehne { 0x20, 0x0529, "DataFieldTimestamp" },
18835465d9f5SThomas Kuehne { 0x20, 0x052a, "DataFieldJulianDayofYear" },
18845465d9f5SThomas Kuehne { 0x20, 0x052b, "DataFieldTimeSinceSystemBoot" },
18855465d9f5SThomas Kuehne { 0x20, 0x0530, "PropertyTime" },
18865465d9f5SThomas Kuehne { 0x20, 0x0531, "PropertyTimeZoneOffsetfromUTC" },
18875465d9f5SThomas Kuehne { 0x20, 0x0532, "PropertyTimeZoneName" },
18885465d9f5SThomas Kuehne { 0x20, 0x0533, "PropertyDaylightSavingsTimeObserved" },
18895465d9f5SThomas Kuehne { 0x20, 0x0534, "PropertyTimeTrimAdjustment" },
18905465d9f5SThomas Kuehne { 0x20, 0x0535, "PropertyArmAlarm" },
18915465d9f5SThomas Kuehne { 0x20, 0x0540, "DataFieldCustom" },
18925465d9f5SThomas Kuehne { 0x20, 0x0541, "DataFieldCustomUsage" },
18935465d9f5SThomas Kuehne { 0x20, 0x0542, "DataFieldCustomBooleanArray" },
18945465d9f5SThomas Kuehne { 0x20, 0x0543, "DataFieldCustomValue" },
18955465d9f5SThomas Kuehne { 0x20, 0x0544, "DataFieldCustomValue1" },
18965465d9f5SThomas Kuehne { 0x20, 0x0545, "DataFieldCustomValue2" },
18975465d9f5SThomas Kuehne { 0x20, 0x0546, "DataFieldCustomValue3" },
18985465d9f5SThomas Kuehne { 0x20, 0x0547, "DataFieldCustomValue4" },
18995465d9f5SThomas Kuehne { 0x20, 0x0548, "DataFieldCustomValue5" },
19005465d9f5SThomas Kuehne { 0x20, 0x0549, "DataFieldCustomValue6" },
19015465d9f5SThomas Kuehne { 0x20, 0x054a, "DataFieldCustomValue7" },
19025465d9f5SThomas Kuehne { 0x20, 0x054b, "DataFieldCustomValue8" },
19035465d9f5SThomas Kuehne { 0x20, 0x054c, "DataFieldCustomValue9" },
19045465d9f5SThomas Kuehne { 0x20, 0x054d, "DataFieldCustomValue10" },
19055465d9f5SThomas Kuehne { 0x20, 0x054e, "DataFieldCustomValue11" },
19065465d9f5SThomas Kuehne { 0x20, 0x054f, "DataFieldCustomValue12" },
19075465d9f5SThomas Kuehne { 0x20, 0x0550, "DataFieldCustomValue13" },
19085465d9f5SThomas Kuehne { 0x20, 0x0551, "DataFieldCustomValue14" },
19095465d9f5SThomas Kuehne { 0x20, 0x0552, "DataFieldCustomValue15" },
19105465d9f5SThomas Kuehne { 0x20, 0x0553, "DataFieldCustomValue16" },
19115465d9f5SThomas Kuehne { 0x20, 0x0554, "DataFieldCustomValue17" },
19125465d9f5SThomas Kuehne { 0x20, 0x0555, "DataFieldCustomValue18" },
19135465d9f5SThomas Kuehne { 0x20, 0x0556, "DataFieldCustomValue19" },
19145465d9f5SThomas Kuehne { 0x20, 0x0557, "DataFieldCustomValue20" },
19155465d9f5SThomas Kuehne { 0x20, 0x0558, "DataFieldCustomValue21" },
19165465d9f5SThomas Kuehne { 0x20, 0x0559, "DataFieldCustomValue22" },
19175465d9f5SThomas Kuehne { 0x20, 0x055a, "DataFieldCustomValue23" },
19185465d9f5SThomas Kuehne { 0x20, 0x055b, "DataFieldCustomValue24" },
19195465d9f5SThomas Kuehne { 0x20, 0x055c, "DataFieldCustomValue25" },
19205465d9f5SThomas Kuehne { 0x20, 0x055d, "DataFieldCustomValue26" },
19215465d9f5SThomas Kuehne { 0x20, 0x055e, "DataFieldCustomValue27" },
19225465d9f5SThomas Kuehne { 0x20, 0x055f, "DataFieldCustomValue28" },
19235465d9f5SThomas Kuehne { 0x20, 0x0560, "DataFieldGeneric" },
19245465d9f5SThomas Kuehne { 0x20, 0x0561, "DataFieldGenericGUIDorPROPERTYKEY" },
19255465d9f5SThomas Kuehne { 0x20, 0x0562, "DataFieldGenericCategoryGUID" },
19265465d9f5SThomas Kuehne { 0x20, 0x0563, "DataFieldGenericTypeGUID" },
19275465d9f5SThomas Kuehne { 0x20, 0x0564, "DataFieldGenericEventPROPERTYKEY" },
19285465d9f5SThomas Kuehne { 0x20, 0x0565, "DataFieldGenericPropertyPROPERTYKEY" },
19295465d9f5SThomas Kuehne { 0x20, 0x0566, "DataFieldGenericDataFieldPROPERTYKEY" },
19305465d9f5SThomas Kuehne { 0x20, 0x0567, "DataFieldGenericEvent" },
19315465d9f5SThomas Kuehne { 0x20, 0x0568, "DataFieldGenericProperty" },
19325465d9f5SThomas Kuehne { 0x20, 0x0569, "DataFieldGenericDataField" },
19335465d9f5SThomas Kuehne { 0x20, 0x056a, "DataFieldEnumeratorTableRowIndex" },
19345465d9f5SThomas Kuehne { 0x20, 0x056b, "DataFieldEnumeratorTableRowCount" },
19355465d9f5SThomas Kuehne { 0x20, 0x056c, "DataFieldGenericGUIDorPROPERTYKEYkind" },
19365465d9f5SThomas Kuehne { 0x20, 0x056d, "DataFieldGenericGUID" },
19375465d9f5SThomas Kuehne { 0x20, 0x056e, "DataFieldGenericPROPERTYKEY" },
19385465d9f5SThomas Kuehne { 0x20, 0x056f, "DataFieldGenericTopLevelCollectionID" },
19395465d9f5SThomas Kuehne { 0x20, 0x0570, "DataFieldGenericReportID" },
19405465d9f5SThomas Kuehne { 0x20, 0x0571, "DataFieldGenericReportItemPositionIndex" },
19415465d9f5SThomas Kuehne { 0x20, 0x0572, "DataFieldGenericFirmwareVARTYPE" },
19425465d9f5SThomas Kuehne { 0x20, 0x0573, "DataFieldGenericUnitofMeasure" },
19435465d9f5SThomas Kuehne { 0x20, 0x0574, "DataFieldGenericUnitExponent" },
19445465d9f5SThomas Kuehne { 0x20, 0x0575, "DataFieldGenericReportSize" },
19455465d9f5SThomas Kuehne { 0x20, 0x0576, "DataFieldGenericReportCount" },
19465465d9f5SThomas Kuehne { 0x20, 0x0580, "PropertyGeneric" },
19475465d9f5SThomas Kuehne { 0x20, 0x0581, "PropertyEnumeratorTableRowIndex" },
19485465d9f5SThomas Kuehne { 0x20, 0x0582, "PropertyEnumeratorTableRowCount" },
19495465d9f5SThomas Kuehne { 0x20, 0x0590, "DataFieldPersonalActivity" },
19505465d9f5SThomas Kuehne { 0x20, 0x0591, "DataFieldActivityType" },
19515465d9f5SThomas Kuehne { 0x20, 0x0592, "DataFieldActivityState" },
19525465d9f5SThomas Kuehne { 0x20, 0x0593, "DataFieldDevicePosition" },
19535465d9f5SThomas Kuehne { 0x20, 0x0594, "DataFieldStepCount" },
19545465d9f5SThomas Kuehne { 0x20, 0x0595, "DataFieldStepCountReset" },
19555465d9f5SThomas Kuehne { 0x20, 0x0596, "DataFieldStepDuration" },
19565465d9f5SThomas Kuehne { 0x20, 0x0597, "DataFieldStepType" },
19575465d9f5SThomas Kuehne { 0x20, 0x05a0, "PropertyMinimumActivityDetectionInterval" },
19585465d9f5SThomas Kuehne { 0x20, 0x05a1, "PropertySupportedActivityTypes" },
19595465d9f5SThomas Kuehne { 0x20, 0x05a2, "PropertySubscribedActivityTypes" },
19605465d9f5SThomas Kuehne { 0x20, 0x05a3, "PropertySupportedStepTypes" },
19615465d9f5SThomas Kuehne { 0x20, 0x05a4, "PropertySubscribedStepTypes" },
19625465d9f5SThomas Kuehne { 0x20, 0x05a5, "PropertyFloorHeight" },
19635465d9f5SThomas Kuehne { 0x20, 0x05b0, "DataFieldCustomTypeID" },
19645465d9f5SThomas Kuehne { 0x20, 0x05c0, "PropertyCustom" },
19655465d9f5SThomas Kuehne { 0x20, 0x05c1, "PropertyCustomValue1" },
19665465d9f5SThomas Kuehne { 0x20, 0x05c2, "PropertyCustomValue2" },
19675465d9f5SThomas Kuehne { 0x20, 0x05c3, "PropertyCustomValue3" },
19685465d9f5SThomas Kuehne { 0x20, 0x05c4, "PropertyCustomValue4" },
19695465d9f5SThomas Kuehne { 0x20, 0x05c5, "PropertyCustomValue5" },
19705465d9f5SThomas Kuehne { 0x20, 0x05c6, "PropertyCustomValue6" },
19715465d9f5SThomas Kuehne { 0x20, 0x05c7, "PropertyCustomValue7" },
19725465d9f5SThomas Kuehne { 0x20, 0x05c8, "PropertyCustomValue8" },
19735465d9f5SThomas Kuehne { 0x20, 0x05c9, "PropertyCustomValue9" },
19745465d9f5SThomas Kuehne { 0x20, 0x05ca, "PropertyCustomValue10" },
19755465d9f5SThomas Kuehne { 0x20, 0x05cb, "PropertyCustomValue11" },
19765465d9f5SThomas Kuehne { 0x20, 0x05cc, "PropertyCustomValue12" },
19775465d9f5SThomas Kuehne { 0x20, 0x05cd, "PropertyCustomValue13" },
19785465d9f5SThomas Kuehne { 0x20, 0x05ce, "PropertyCustomValue14" },
19795465d9f5SThomas Kuehne { 0x20, 0x05cf, "PropertyCustomValue15" },
19805465d9f5SThomas Kuehne { 0x20, 0x05d0, "PropertyCustomValue16" },
19815465d9f5SThomas Kuehne { 0x20, 0x05e0, "DataFieldHinge" },
19825465d9f5SThomas Kuehne { 0x20, 0x05e1, "DataFieldHingeAngle" },
19835465d9f5SThomas Kuehne { 0x20, 0x05f0, "DataFieldGestureSensor" },
19845465d9f5SThomas Kuehne { 0x20, 0x05f1, "DataFieldGestureState" },
19855465d9f5SThomas Kuehne { 0x20, 0x05f2, "DataFieldHingeFoldInitialAngle" },
19865465d9f5SThomas Kuehne { 0x20, 0x05f3, "DataFieldHingeFoldFinalAngle" },
19875465d9f5SThomas Kuehne { 0x20, 0x05f4, "DataFieldHingeFoldContributingPanel" },
19885465d9f5SThomas Kuehne { 0x20, 0x05f5, "DataFieldHingeFoldType" },
19895465d9f5SThomas Kuehne { 0x20, 0x0800, "SensorStateUndefined" },
19905465d9f5SThomas Kuehne { 0x20, 0x0801, "SensorStateReady" },
19915465d9f5SThomas Kuehne { 0x20, 0x0802, "SensorStateNotAvailable" },
19925465d9f5SThomas Kuehne { 0x20, 0x0803, "SensorStateNoData" },
19935465d9f5SThomas Kuehne { 0x20, 0x0804, "SensorStateInitializing" },
19945465d9f5SThomas Kuehne { 0x20, 0x0805, "SensorStateAccessDenied" },
19955465d9f5SThomas Kuehne { 0x20, 0x0806, "SensorStateError" },
19965465d9f5SThomas Kuehne { 0x20, 0x0810, "SensorEventUnknown" },
19975465d9f5SThomas Kuehne { 0x20, 0x0811, "SensorEventStateChanged" },
19985465d9f5SThomas Kuehne { 0x20, 0x0812, "SensorEventPropertyChanged" },
19995465d9f5SThomas Kuehne { 0x20, 0x0813, "SensorEventDataUpdated" },
20005465d9f5SThomas Kuehne { 0x20, 0x0814, "SensorEventPollResponse" },
20015465d9f5SThomas Kuehne { 0x20, 0x0815, "SensorEventChangeSensitivity" },
20025465d9f5SThomas Kuehne { 0x20, 0x0816, "SensorEventRangeMaximumReached" },
20035465d9f5SThomas Kuehne { 0x20, 0x0817, "SensorEventRangeMinimumReached" },
20045465d9f5SThomas Kuehne { 0x20, 0x0818, "SensorEventHighThresholdCrossUpward" },
20055465d9f5SThomas Kuehne { 0x20, 0x0819, "SensorEventHighThresholdCrossDownward" },
20065465d9f5SThomas Kuehne { 0x20, 0x081a, "SensorEventLowThresholdCrossUpward" },
20075465d9f5SThomas Kuehne { 0x20, 0x081b, "SensorEventLowThresholdCrossDownward" },
20085465d9f5SThomas Kuehne { 0x20, 0x081c, "SensorEventZeroThresholdCrossUpward" },
20095465d9f5SThomas Kuehne { 0x20, 0x081d, "SensorEventZeroThresholdCrossDownward" },
20105465d9f5SThomas Kuehne { 0x20, 0x081e, "SensorEventPeriodExceeded" },
20115465d9f5SThomas Kuehne { 0x20, 0x081f, "SensorEventFrequencyExceeded" },
20125465d9f5SThomas Kuehne { 0x20, 0x0820, "SensorEventComplexTrigger" },
20135465d9f5SThomas Kuehne { 0x20, 0x0830, "ConnectionTypePCIntegrated" },
20145465d9f5SThomas Kuehne { 0x20, 0x0831, "ConnectionTypePCAttached" },
20155465d9f5SThomas Kuehne { 0x20, 0x0832, "ConnectionTypePCExternal" },
20165465d9f5SThomas Kuehne { 0x20, 0x0840, "ReportingStateReportNoEvents" },
20175465d9f5SThomas Kuehne { 0x20, 0x0841, "ReportingStateReportAllEvents" },
20185465d9f5SThomas Kuehne { 0x20, 0x0842, "ReportingStateReportThresholdEvents" },
20195465d9f5SThomas Kuehne { 0x20, 0x0843, "ReportingStateWakeOnNoEvents" },
20205465d9f5SThomas Kuehne { 0x20, 0x0844, "ReportingStateWakeOnAllEvents" },
20215465d9f5SThomas Kuehne { 0x20, 0x0845, "ReportingStateWakeOnThresholdEvents" },
20225465d9f5SThomas Kuehne { 0x20, 0x0846, "ReportingStateAnytime" },
20235465d9f5SThomas Kuehne { 0x20, 0x0850, "PowerStateUndefined" },
20245465d9f5SThomas Kuehne { 0x20, 0x0851, "PowerStateD0FullPower" },
20255465d9f5SThomas Kuehne { 0x20, 0x0852, "PowerStateD1LowPower" },
20265465d9f5SThomas Kuehne { 0x20, 0x0853, "PowerStateD2StandbyPowerwithWakeup" },
20275465d9f5SThomas Kuehne { 0x20, 0x0854, "PowerStateD3SleepwithWakeup" },
20285465d9f5SThomas Kuehne { 0x20, 0x0855, "PowerStateD4PowerOff" },
20295465d9f5SThomas Kuehne { 0x20, 0x0860, "AccuracyDefault" },
20305465d9f5SThomas Kuehne { 0x20, 0x0861, "AccuracyHigh" },
20315465d9f5SThomas Kuehne { 0x20, 0x0862, "AccuracyMedium" },
20325465d9f5SThomas Kuehne { 0x20, 0x0863, "AccuracyLow" },
20335465d9f5SThomas Kuehne { 0x20, 0x0870, "FixQualityNoFix" },
20345465d9f5SThomas Kuehne { 0x20, 0x0871, "FixQualityGPS" },
20355465d9f5SThomas Kuehne { 0x20, 0x0872, "FixQualityDGPS" },
20365465d9f5SThomas Kuehne { 0x20, 0x0880, "FixTypeNoFix" },
20375465d9f5SThomas Kuehne { 0x20, 0x0881, "FixTypeGPSSPSModeFixValid" },
20385465d9f5SThomas Kuehne { 0x20, 0x0882, "FixTypeDGPSSPSModeFixValid" },
20395465d9f5SThomas Kuehne { 0x20, 0x0883, "FixTypeGPSPPSModeFixValid" },
20405465d9f5SThomas Kuehne { 0x20, 0x0884, "FixTypeRealTimeKinematic" },
20415465d9f5SThomas Kuehne { 0x20, 0x0885, "FixTypeFloatRTK" },
20425465d9f5SThomas Kuehne { 0x20, 0x0886, "FixTypeEstimateddeadreckoned" },
20435465d9f5SThomas Kuehne { 0x20, 0x0887, "FixTypeManualInputMode" },
20445465d9f5SThomas Kuehne { 0x20, 0x0888, "FixTypeSimulatorMode" },
20455465d9f5SThomas Kuehne { 0x20, 0x0890, "GPSOperationModeManual" },
20465465d9f5SThomas Kuehne { 0x20, 0x0891, "GPSOperationModeAutomatic" },
20475465d9f5SThomas Kuehne { 0x20, 0x08a0, "GPSSelectionModeAutonomous" },
20485465d9f5SThomas Kuehne { 0x20, 0x08a1, "GPSSelectionModeDGPS" },
20495465d9f5SThomas Kuehne { 0x20, 0x08a2, "GPSSelectionModeEstimateddeadreckoned" },
20505465d9f5SThomas Kuehne { 0x20, 0x08a3, "GPSSelectionModeManualInput" },
20515465d9f5SThomas Kuehne { 0x20, 0x08a4, "GPSSelectionModeSimulator" },
20525465d9f5SThomas Kuehne { 0x20, 0x08a5, "GPSSelectionModeDataNotValid" },
20535465d9f5SThomas Kuehne { 0x20, 0x08b0, "GPSStatusDataValid" },
20545465d9f5SThomas Kuehne { 0x20, 0x08b1, "GPSStatusDataNotValid" },
20555465d9f5SThomas Kuehne { 0x20, 0x08c0, "DayofWeekSunday" },
20565465d9f5SThomas Kuehne { 0x20, 0x08c1, "DayofWeekMonday" },
20575465d9f5SThomas Kuehne { 0x20, 0x08c2, "DayofWeekTuesday" },
20585465d9f5SThomas Kuehne { 0x20, 0x08c3, "DayofWeekWednesday" },
20595465d9f5SThomas Kuehne { 0x20, 0x08c4, "DayofWeekThursday" },
20605465d9f5SThomas Kuehne { 0x20, 0x08c5, "DayofWeekFriday" },
20615465d9f5SThomas Kuehne { 0x20, 0x08c6, "DayofWeekSaturday" },
20625465d9f5SThomas Kuehne { 0x20, 0x08d0, "KindCategory" },
20635465d9f5SThomas Kuehne { 0x20, 0x08d1, "KindType" },
20645465d9f5SThomas Kuehne { 0x20, 0x08d2, "KindEvent" },
20655465d9f5SThomas Kuehne { 0x20, 0x08d3, "KindProperty" },
20665465d9f5SThomas Kuehne { 0x20, 0x08d4, "KindDataField" },
20675465d9f5SThomas Kuehne { 0x20, 0x08e0, "MagnetometerAccuracyLow" },
20685465d9f5SThomas Kuehne { 0x20, 0x08e1, "MagnetometerAccuracyMedium" },
20695465d9f5SThomas Kuehne { 0x20, 0x08e2, "MagnetometerAccuracyHigh" },
20705465d9f5SThomas Kuehne { 0x20, 0x08f0, "SimpleOrientationDirectionNotRotated" },
20715465d9f5SThomas Kuehne { 0x20, 0x08f1, "SimpleOrientationDirectionRotated90DegreesCCW" },
20725465d9f5SThomas Kuehne { 0x20, 0x08f2, "SimpleOrientationDirectionRotated180DegreesCCW" },
20735465d9f5SThomas Kuehne { 0x20, 0x08f3, "SimpleOrientationDirectionRotated270DegreesCCW" },
20745465d9f5SThomas Kuehne { 0x20, 0x08f4, "SimpleOrientationDirectionFaceUp" },
20755465d9f5SThomas Kuehne { 0x20, 0x08f5, "SimpleOrientationDirectionFaceDown" },
20765465d9f5SThomas Kuehne { 0x20, 0x0900, "VT_NULL" },
20775465d9f5SThomas Kuehne { 0x20, 0x0901, "VT_BOOL" },
20785465d9f5SThomas Kuehne { 0x20, 0x0902, "VT_UI1" },
20795465d9f5SThomas Kuehne { 0x20, 0x0903, "VT_I1" },
20805465d9f5SThomas Kuehne { 0x20, 0x0904, "VT_UI2" },
20815465d9f5SThomas Kuehne { 0x20, 0x0905, "VT_I2" },
20825465d9f5SThomas Kuehne { 0x20, 0x0906, "VT_UI4" },
20835465d9f5SThomas Kuehne { 0x20, 0x0907, "VT_I4" },
20845465d9f5SThomas Kuehne { 0x20, 0x0908, "VT_UI8" },
20855465d9f5SThomas Kuehne { 0x20, 0x0909, "VT_I8" },
20865465d9f5SThomas Kuehne { 0x20, 0x090a, "VT_R4" },
20875465d9f5SThomas Kuehne { 0x20, 0x090b, "VT_R8" },
20885465d9f5SThomas Kuehne { 0x20, 0x090c, "VT_WSTR" },
20895465d9f5SThomas Kuehne { 0x20, 0x090d, "VT_STR" },
20905465d9f5SThomas Kuehne { 0x20, 0x090e, "VT_CLSID" },
20915465d9f5SThomas Kuehne { 0x20, 0x090f, "VT_VECTORVT_UI1" },
20925465d9f5SThomas Kuehne { 0x20, 0x0910, "VT_F16E0" },
20935465d9f5SThomas Kuehne { 0x20, 0x0911, "VT_F16E1" },
20945465d9f5SThomas Kuehne { 0x20, 0x0912, "VT_F16E2" },
20955465d9f5SThomas Kuehne { 0x20, 0x0913, "VT_F16E3" },
20965465d9f5SThomas Kuehne { 0x20, 0x0914, "VT_F16E4" },
20975465d9f5SThomas Kuehne { 0x20, 0x0915, "VT_F16E5" },
20985465d9f5SThomas Kuehne { 0x20, 0x0916, "VT_F16E6" },
20995465d9f5SThomas Kuehne { 0x20, 0x0917, "VT_F16E7" },
21005465d9f5SThomas Kuehne { 0x20, 0x0918, "VT_F16E8" },
21015465d9f5SThomas Kuehne { 0x20, 0x0919, "VT_F16E9" },
21025465d9f5SThomas Kuehne { 0x20, 0x091a, "VT_F16EA" },
21035465d9f5SThomas Kuehne { 0x20, 0x091b, "VT_F16EB" },
21045465d9f5SThomas Kuehne { 0x20, 0x091c, "VT_F16EC" },
21055465d9f5SThomas Kuehne { 0x20, 0x091d, "VT_F16ED" },
21065465d9f5SThomas Kuehne { 0x20, 0x091e, "VT_F16EE" },
21075465d9f5SThomas Kuehne { 0x20, 0x091f, "VT_F16EF" },
21085465d9f5SThomas Kuehne { 0x20, 0x0920, "VT_F32E0" },
21095465d9f5SThomas Kuehne { 0x20, 0x0921, "VT_F32E1" },
21105465d9f5SThomas Kuehne { 0x20, 0x0922, "VT_F32E2" },
21115465d9f5SThomas Kuehne { 0x20, 0x0923, "VT_F32E3" },
21125465d9f5SThomas Kuehne { 0x20, 0x0924, "VT_F32E4" },
21135465d9f5SThomas Kuehne { 0x20, 0x0925, "VT_F32E5" },
21145465d9f5SThomas Kuehne { 0x20, 0x0926, "VT_F32E6" },
21155465d9f5SThomas Kuehne { 0x20, 0x0927, "VT_F32E7" },
21165465d9f5SThomas Kuehne { 0x20, 0x0928, "VT_F32E8" },
21175465d9f5SThomas Kuehne { 0x20, 0x0929, "VT_F32E9" },
21185465d9f5SThomas Kuehne { 0x20, 0x092a, "VT_F32EA" },
21195465d9f5SThomas Kuehne { 0x20, 0x092b, "VT_F32EB" },
21205465d9f5SThomas Kuehne { 0x20, 0x092c, "VT_F32EC" },
21215465d9f5SThomas Kuehne { 0x20, 0x092d, "VT_F32ED" },
21225465d9f5SThomas Kuehne { 0x20, 0x092e, "VT_F32EE" },
21235465d9f5SThomas Kuehne { 0x20, 0x092f, "VT_F32EF" },
21245465d9f5SThomas Kuehne { 0x20, 0x0930, "ActivityTypeUnknown" },
21255465d9f5SThomas Kuehne { 0x20, 0x0931, "ActivityTypeStationary" },
21265465d9f5SThomas Kuehne { 0x20, 0x0932, "ActivityTypeFidgeting" },
21275465d9f5SThomas Kuehne { 0x20, 0x0933, "ActivityTypeWalking" },
21285465d9f5SThomas Kuehne { 0x20, 0x0934, "ActivityTypeRunning" },
21295465d9f5SThomas Kuehne { 0x20, 0x0935, "ActivityTypeInVehicle" },
21305465d9f5SThomas Kuehne { 0x20, 0x0936, "ActivityTypeBiking" },
21315465d9f5SThomas Kuehne { 0x20, 0x0937, "ActivityTypeIdle" },
21325465d9f5SThomas Kuehne { 0x20, 0x0940, "UnitNotSpecified" },
21335465d9f5SThomas Kuehne { 0x20, 0x0941, "UnitLux" },
21345465d9f5SThomas Kuehne { 0x20, 0x0942, "UnitDegreesKelvin" },
21355465d9f5SThomas Kuehne { 0x20, 0x0943, "UnitDegreesCelsius" },
21365465d9f5SThomas Kuehne { 0x20, 0x0944, "UnitPascal" },
21375465d9f5SThomas Kuehne { 0x20, 0x0945, "UnitNewton" },
21385465d9f5SThomas Kuehne { 0x20, 0x0946, "UnitMetersSecond" },
21395465d9f5SThomas Kuehne { 0x20, 0x0947, "UnitKilogram" },
21405465d9f5SThomas Kuehne { 0x20, 0x0948, "UnitMeter" },
21415465d9f5SThomas Kuehne { 0x20, 0x0949, "UnitMetersSecondSecond" },
21425465d9f5SThomas Kuehne { 0x20, 0x094a, "UnitFarad" },
21435465d9f5SThomas Kuehne { 0x20, 0x094b, "UnitAmpere" },
21445465d9f5SThomas Kuehne { 0x20, 0x094c, "UnitWatt" },
21455465d9f5SThomas Kuehne { 0x20, 0x094d, "UnitHenry" },
21465465d9f5SThomas Kuehne { 0x20, 0x094e, "UnitOhm" },
21475465d9f5SThomas Kuehne { 0x20, 0x094f, "UnitVolt" },
21485465d9f5SThomas Kuehne { 0x20, 0x0950, "UnitHertz" },
21495465d9f5SThomas Kuehne { 0x20, 0x0951, "UnitBar" },
21505465d9f5SThomas Kuehne { 0x20, 0x0952, "UnitDegreesAnticlockwise" },
21515465d9f5SThomas Kuehne { 0x20, 0x0953, "UnitDegreesClockwise" },
21525465d9f5SThomas Kuehne { 0x20, 0x0954, "UnitDegrees" },
21535465d9f5SThomas Kuehne { 0x20, 0x0955, "UnitDegreesSecond" },
21545465d9f5SThomas Kuehne { 0x20, 0x0956, "UnitDegreesSecondSecond" },
21555465d9f5SThomas Kuehne { 0x20, 0x0957, "UnitKnot" },
21565465d9f5SThomas Kuehne { 0x20, 0x0958, "UnitPercent" },
21575465d9f5SThomas Kuehne { 0x20, 0x0959, "UnitSecond" },
21585465d9f5SThomas Kuehne { 0x20, 0x095a, "UnitMillisecond" },
21595465d9f5SThomas Kuehne { 0x20, 0x095b, "UnitG" },
21605465d9f5SThomas Kuehne { 0x20, 0x095c, "UnitBytes" },
21615465d9f5SThomas Kuehne { 0x20, 0x095d, "UnitMilligauss" },
21625465d9f5SThomas Kuehne { 0x20, 0x095e, "UnitBits" },
21635465d9f5SThomas Kuehne { 0x20, 0x0960, "ActivityStateNoStateChange" },
21645465d9f5SThomas Kuehne { 0x20, 0x0961, "ActivityStateStartActivity" },
21655465d9f5SThomas Kuehne { 0x20, 0x0962, "ActivityStateEndActivity" },
21665465d9f5SThomas Kuehne { 0x20, 0x0970, "Exponent0" },
21675465d9f5SThomas Kuehne { 0x20, 0x0971, "Exponent1" },
21685465d9f5SThomas Kuehne { 0x20, 0x0972, "Exponent2" },
21695465d9f5SThomas Kuehne { 0x20, 0x0973, "Exponent3" },
21705465d9f5SThomas Kuehne { 0x20, 0x0974, "Exponent4" },
21715465d9f5SThomas Kuehne { 0x20, 0x0975, "Exponent5" },
21725465d9f5SThomas Kuehne { 0x20, 0x0976, "Exponent6" },
21735465d9f5SThomas Kuehne { 0x20, 0x0977, "Exponent7" },
21745465d9f5SThomas Kuehne { 0x20, 0x0978, "Exponent8" },
21755465d9f5SThomas Kuehne { 0x20, 0x0979, "Exponent9" },
21765465d9f5SThomas Kuehne { 0x20, 0x097a, "ExponentA" },
21775465d9f5SThomas Kuehne { 0x20, 0x097b, "ExponentB" },
21785465d9f5SThomas Kuehne { 0x20, 0x097c, "ExponentC" },
21795465d9f5SThomas Kuehne { 0x20, 0x097d, "ExponentD" },
21805465d9f5SThomas Kuehne { 0x20, 0x097e, "ExponentE" },
21815465d9f5SThomas Kuehne { 0x20, 0x097f, "ExponentF" },
21825465d9f5SThomas Kuehne { 0x20, 0x0980, "DevicePositionUnknown" },
21835465d9f5SThomas Kuehne { 0x20, 0x0981, "DevicePositionUnchanged" },
21845465d9f5SThomas Kuehne { 0x20, 0x0982, "DevicePositionOnDesk" },
21855465d9f5SThomas Kuehne { 0x20, 0x0983, "DevicePositionInHand" },
21865465d9f5SThomas Kuehne { 0x20, 0x0984, "DevicePositionMovinginBag" },
21875465d9f5SThomas Kuehne { 0x20, 0x0985, "DevicePositionStationaryinBag" },
21885465d9f5SThomas Kuehne { 0x20, 0x0990, "StepTypeUnknown" },
21895465d9f5SThomas Kuehne { 0x20, 0x0991, "StepTypeWalking" },
21905465d9f5SThomas Kuehne { 0x20, 0x0992, "StepTypeRunning" },
21915465d9f5SThomas Kuehne { 0x20, 0x09a0, "GestureStateUnknown" },
21925465d9f5SThomas Kuehne { 0x20, 0x09a1, "GestureStateStarted" },
21935465d9f5SThomas Kuehne { 0x20, 0x09a2, "GestureStateCompleted" },
21945465d9f5SThomas Kuehne { 0x20, 0x09a3, "GestureStateCancelled" },
21955465d9f5SThomas Kuehne { 0x20, 0x09b0, "HingeFoldContributingPanelUnknown" },
21965465d9f5SThomas Kuehne { 0x20, 0x09b1, "HingeFoldContributingPanelPanel1" },
21975465d9f5SThomas Kuehne { 0x20, 0x09b2, "HingeFoldContributingPanelPanel2" },
21985465d9f5SThomas Kuehne { 0x20, 0x09b3, "HingeFoldContributingPanelBoth" },
21995465d9f5SThomas Kuehne { 0x20, 0x09b4, "HingeFoldTypeUnknown" },
22005465d9f5SThomas Kuehne { 0x20, 0x09b5, "HingeFoldTypeIncreasing" },
22015465d9f5SThomas Kuehne { 0x20, 0x09b6, "HingeFoldTypeDecreasing" },
22025465d9f5SThomas Kuehne { 0x20, 0x09c0, "HumanPresenceDetectionTypeVendorDefinedNonBiometric" },
22035465d9f5SThomas Kuehne { 0x20, 0x09c1, "HumanPresenceDetectionTypeVendorDefinedBiometric" },
22045465d9f5SThomas Kuehne { 0x20, 0x09c2, "HumanPresenceDetectionTypeFacialBiometric" },
22055465d9f5SThomas Kuehne { 0x20, 0x09c3, "HumanPresenceDetectionTypeAudioBiometric" },
22065465d9f5SThomas Kuehne { 0x20, 0x1000, "ModifierChangeSensitivityAbsolute" },
22075465d9f5SThomas Kuehne { 0x20, 0x2000, "ModifierMaximum" },
22085465d9f5SThomas Kuehne { 0x20, 0x3000, "ModifierMinimum" },
22095465d9f5SThomas Kuehne { 0x20, 0x4000, "ModifierAccuracy" },
22105465d9f5SThomas Kuehne { 0x20, 0x5000, "ModifierResolution" },
22115465d9f5SThomas Kuehne { 0x20, 0x6000, "ModifierThresholdHigh" },
22125465d9f5SThomas Kuehne { 0x20, 0x7000, "ModifierThresholdLow" },
22135465d9f5SThomas Kuehne { 0x20, 0x8000, "ModifierCalibrationOffset" },
22145465d9f5SThomas Kuehne { 0x20, 0x9000, "ModifierCalibrationMultiplier" },
22155465d9f5SThomas Kuehne { 0x20, 0xa000, "ModifierReportInterval" },
22165465d9f5SThomas Kuehne { 0x20, 0xb000, "ModifierFrequencyMax" },
22175465d9f5SThomas Kuehne { 0x20, 0xc000, "ModifierPeriodMax" },
22185465d9f5SThomas Kuehne { 0x20, 0xd000, "ModifierChangeSensitivityPercentofRange" },
22195465d9f5SThomas Kuehne { 0x20, 0xe000, "ModifierChangeSensitivityPercentRelative" },
22205465d9f5SThomas Kuehne { 0x20, 0xf000, "ModifierVendorReserved" },
22215465d9f5SThomas Kuehne { 0x40, 0, "MedicalInstrument" },
22225465d9f5SThomas Kuehne { 0x40, 0x0001, "MedicalUltrasound" },
22235465d9f5SThomas Kuehne { 0x40, 0x0020, "VCRAcquisition" },
22245465d9f5SThomas Kuehne { 0x40, 0x0021, "FreezeThaw" },
22255465d9f5SThomas Kuehne { 0x40, 0x0022, "ClipStore" },
22265465d9f5SThomas Kuehne { 0x40, 0x0023, "Update" },
22275465d9f5SThomas Kuehne { 0x40, 0x0024, "Next" },
22285465d9f5SThomas Kuehne { 0x40, 0x0025, "Save" },
22295465d9f5SThomas Kuehne { 0x40, 0x0026, "Print" },
22305465d9f5SThomas Kuehne { 0x40, 0x0027, "MicrophoneEnable" },
22315465d9f5SThomas Kuehne { 0x40, 0x0040, "Cine" },
22325465d9f5SThomas Kuehne { 0x40, 0x0041, "TransmitPower" },
22335465d9f5SThomas Kuehne { 0x40, 0x0042, "Volume" },
22345465d9f5SThomas Kuehne { 0x40, 0x0043, "Focus" },
22355465d9f5SThomas Kuehne { 0x40, 0x0044, "Depth" },
22365465d9f5SThomas Kuehne { 0x40, 0x0060, "SoftStepPrimary" },
22375465d9f5SThomas Kuehne { 0x40, 0x0061, "SoftStepSecondary" },
22385465d9f5SThomas Kuehne { 0x40, 0x0070, "DepthGainCompensation" },
22395465d9f5SThomas Kuehne { 0x40, 0x0080, "ZoomSelect" },
22405465d9f5SThomas Kuehne { 0x40, 0x0081, "ZoomAdjust" },
22415465d9f5SThomas Kuehne { 0x40, 0x0082, "SpectralDopplerModeSelect" },
22425465d9f5SThomas Kuehne { 0x40, 0x0083, "SpectralDopplerAdjust" },
22435465d9f5SThomas Kuehne { 0x40, 0x0084, "ColorDopplerModeSelect" },
22445465d9f5SThomas Kuehne { 0x40, 0x0085, "ColorDopplerAdjust" },
22455465d9f5SThomas Kuehne { 0x40, 0x0086, "MotionModeSelect" },
22465465d9f5SThomas Kuehne { 0x40, 0x0087, "MotionModeAdjust" },
22475465d9f5SThomas Kuehne { 0x40, 0x0088, "2DModeSelect" },
22485465d9f5SThomas Kuehne { 0x40, 0x0089, "2DModeAdjust" },
22495465d9f5SThomas Kuehne { 0x40, 0x00a0, "SoftControlSelect" },
22505465d9f5SThomas Kuehne { 0x40, 0x00a1, "SoftControlAdjust" },
22515465d9f5SThomas Kuehne { 0x41, 0, "BrailleDisplay" },
22525465d9f5SThomas Kuehne { 0x41, 0x0001, "BrailleDisplay" },
22535465d9f5SThomas Kuehne { 0x41, 0x0002, "BrailleRow" },
22545465d9f5SThomas Kuehne { 0x41, 0x0003, "8DotBrailleCell" },
22555465d9f5SThomas Kuehne { 0x41, 0x0004, "6DotBrailleCell" },
22565465d9f5SThomas Kuehne { 0x41, 0x0005, "NumberofBrailleCells" },
22575465d9f5SThomas Kuehne { 0x41, 0x0006, "ScreenReaderControl" },
22585465d9f5SThomas Kuehne { 0x41, 0x0007, "ScreenReaderIdentifier" },
22595465d9f5SThomas Kuehne { 0x41, 0x00fa, "RouterSet1" },
22605465d9f5SThomas Kuehne { 0x41, 0x00fb, "RouterSet2" },
22615465d9f5SThomas Kuehne { 0x41, 0x00fc, "RouterSet3" },
22625465d9f5SThomas Kuehne { 0x41, 0x0100, "RouterKey" },
22635465d9f5SThomas Kuehne { 0x41, 0x0101, "RowRouterKey" },
22645465d9f5SThomas Kuehne { 0x41, 0x0200, "BrailleButtons" },
22655465d9f5SThomas Kuehne { 0x41, 0x0201, "BrailleKeyboardDot1" },
22665465d9f5SThomas Kuehne { 0x41, 0x0202, "BrailleKeyboardDot2" },
22675465d9f5SThomas Kuehne { 0x41, 0x0203, "BrailleKeyboardDot3" },
22685465d9f5SThomas Kuehne { 0x41, 0x0204, "BrailleKeyboardDot4" },
22695465d9f5SThomas Kuehne { 0x41, 0x0205, "BrailleKeyboardDot5" },
22705465d9f5SThomas Kuehne { 0x41, 0x0206, "BrailleKeyboardDot6" },
22715465d9f5SThomas Kuehne { 0x41, 0x0207, "BrailleKeyboardDot7" },
22725465d9f5SThomas Kuehne { 0x41, 0x0208, "BrailleKeyboardDot8" },
22735465d9f5SThomas Kuehne { 0x41, 0x0209, "BrailleKeyboardSpace" },
22745465d9f5SThomas Kuehne { 0x41, 0x020a, "BrailleKeyboardLeftSpace" },
22755465d9f5SThomas Kuehne { 0x41, 0x020b, "BrailleKeyboardRightSpace" },
22765465d9f5SThomas Kuehne { 0x41, 0x020c, "BrailleFaceControls" },
22775465d9f5SThomas Kuehne { 0x41, 0x020d, "BrailleLeftControls" },
22785465d9f5SThomas Kuehne { 0x41, 0x020e, "BrailleRightControls" },
22795465d9f5SThomas Kuehne { 0x41, 0x020f, "BrailleTopControls" },
22805465d9f5SThomas Kuehne { 0x41, 0x0210, "BrailleJoystickCenter" },
22815465d9f5SThomas Kuehne { 0x41, 0x0211, "BrailleJoystickUp" },
22825465d9f5SThomas Kuehne { 0x41, 0x0212, "BrailleJoystickDown" },
22835465d9f5SThomas Kuehne { 0x41, 0x0213, "BrailleJoystickLeft" },
22845465d9f5SThomas Kuehne { 0x41, 0x0214, "BrailleJoystickRight" },
22855465d9f5SThomas Kuehne { 0x41, 0x0215, "BrailleDPadCenter" },
22865465d9f5SThomas Kuehne { 0x41, 0x0216, "BrailleDPadUp" },
22875465d9f5SThomas Kuehne { 0x41, 0x0217, "BrailleDPadDown" },
22885465d9f5SThomas Kuehne { 0x41, 0x0218, "BrailleDPadLeft" },
22895465d9f5SThomas Kuehne { 0x41, 0x0219, "BrailleDPadRight" },
22905465d9f5SThomas Kuehne { 0x41, 0x021a, "BraillePanLeft" },
22915465d9f5SThomas Kuehne { 0x41, 0x021b, "BraillePanRight" },
22925465d9f5SThomas Kuehne { 0x41, 0x021c, "BrailleRockerUp" },
22935465d9f5SThomas Kuehne { 0x41, 0x021d, "BrailleRockerDown" },
22945465d9f5SThomas Kuehne { 0x41, 0x021e, "BrailleRockerPress" },
22955465d9f5SThomas Kuehne { 0x59, 0, "LightingAndIllumination" },
22965465d9f5SThomas Kuehne { 0x59, 0x0001, "LampArray" },
22975465d9f5SThomas Kuehne { 0x59, 0x0002, "LampArrayAttributesReport" },
22985465d9f5SThomas Kuehne { 0x59, 0x0003, "LampCount" },
22995465d9f5SThomas Kuehne { 0x59, 0x0004, "BoundingBoxWidthInMicrometers" },
23005465d9f5SThomas Kuehne { 0x59, 0x0005, "BoundingBoxHeightInMicrometers" },
23015465d9f5SThomas Kuehne { 0x59, 0x0006, "BoundingBoxDepthInMicrometers" },
23025465d9f5SThomas Kuehne { 0x59, 0x0007, "LampArrayKind" },
23035465d9f5SThomas Kuehne { 0x59, 0x0008, "MinUpdateIntervalInMicroseconds" },
23045465d9f5SThomas Kuehne { 0x59, 0x0020, "LampAttributesRequestReport" },
23055465d9f5SThomas Kuehne { 0x59, 0x0021, "LampId" },
23065465d9f5SThomas Kuehne { 0x59, 0x0022, "LampAttributesResponseReport" },
23075465d9f5SThomas Kuehne { 0x59, 0x0023, "PositionXInMicrometers" },
23085465d9f5SThomas Kuehne { 0x59, 0x0024, "PositionYInMicrometers" },
23095465d9f5SThomas Kuehne { 0x59, 0x0025, "PositionZInMicrometers" },
23105465d9f5SThomas Kuehne { 0x59, 0x0026, "LampPurposes" },
23115465d9f5SThomas Kuehne { 0x59, 0x0027, "UpdateLatencyInMicroseconds" },
23125465d9f5SThomas Kuehne { 0x59, 0x0028, "RedLevelCount" },
23135465d9f5SThomas Kuehne { 0x59, 0x0029, "GreenLevelCount" },
23145465d9f5SThomas Kuehne { 0x59, 0x002a, "BlueLevelCount" },
23155465d9f5SThomas Kuehne { 0x59, 0x002b, "IntensityLevelCount" },
23165465d9f5SThomas Kuehne { 0x59, 0x002c, "IsProgrammable" },
23175465d9f5SThomas Kuehne { 0x59, 0x002d, "InputBinding" },
23185465d9f5SThomas Kuehne { 0x59, 0x0050, "LampMultiUpdateReport" },
23195465d9f5SThomas Kuehne { 0x59, 0x0051, "RedUpdateChannel" },
23205465d9f5SThomas Kuehne { 0x59, 0x0052, "GreenUpdateChannel" },
23215465d9f5SThomas Kuehne { 0x59, 0x0053, "BlueUpdateChannel" },
23225465d9f5SThomas Kuehne { 0x59, 0x0054, "IntensityUpdateChannel" },
23235465d9f5SThomas Kuehne { 0x59, 0x0055, "LampUpdateFlags" },
23245465d9f5SThomas Kuehne { 0x59, 0x0060, "LampRangeUpdateReport" },
23255465d9f5SThomas Kuehne { 0x59, 0x0061, "LampIdStart" },
23265465d9f5SThomas Kuehne { 0x59, 0x0062, "LampIdEnd" },
23275465d9f5SThomas Kuehne { 0x59, 0x0070, "LampArrayControlReport" },
23285465d9f5SThomas Kuehne { 0x59, 0x0071, "AutonomousMode" },
23295465d9f5SThomas Kuehne { 0x80, 0, "Monitor" },
23305465d9f5SThomas Kuehne { 0x80, 0x0001, "MonitorControl" },
23315465d9f5SThomas Kuehne { 0x80, 0x0002, "EDIDInformation" },
23325465d9f5SThomas Kuehne { 0x80, 0x0003, "VDIFInformation" },
23335465d9f5SThomas Kuehne { 0x80, 0x0004, "VESAVersion" },
23345465d9f5SThomas Kuehne { 0x81, 0, "MonitorEnumerated" },
23355465d9f5SThomas Kuehne { 0x82, 0, "VESAVirtualControls" },
23365465d9f5SThomas Kuehne { 0x82, 0x0001, "Degauss" },
23375465d9f5SThomas Kuehne { 0x82, 0x0010, "Brightness" },
23385465d9f5SThomas Kuehne { 0x82, 0x0012, "Contrast" },
23395465d9f5SThomas Kuehne { 0x82, 0x0016, "RedVideoGain" },
23405465d9f5SThomas Kuehne { 0x82, 0x0018, "GreenVideoGain" },
23415465d9f5SThomas Kuehne { 0x82, 0x001a, "BlueVideoGain" },
23425465d9f5SThomas Kuehne { 0x82, 0x001c, "Focus" },
23435465d9f5SThomas Kuehne { 0x82, 0x0020, "HorizontalPosition" },
23445465d9f5SThomas Kuehne { 0x82, 0x0022, "HorizontalSize" },
23455465d9f5SThomas Kuehne { 0x82, 0x0024, "HorizontalPincushion" },
23465465d9f5SThomas Kuehne { 0x82, 0x0026, "HorizontalPincushionBalance" },
23475465d9f5SThomas Kuehne { 0x82, 0x0028, "HorizontalMisconvergence" },
23485465d9f5SThomas Kuehne { 0x82, 0x002a, "HorizontalLinearity" },
23495465d9f5SThomas Kuehne { 0x82, 0x002c, "HorizontalLinearityBalance" },
23505465d9f5SThomas Kuehne { 0x82, 0x0030, "VerticalPosition" },
23515465d9f5SThomas Kuehne { 0x82, 0x0032, "VerticalSize" },
23525465d9f5SThomas Kuehne { 0x82, 0x0034, "VerticalPincushion" },
23535465d9f5SThomas Kuehne { 0x82, 0x0036, "VerticalPincushionBalance" },
23545465d9f5SThomas Kuehne { 0x82, 0x0038, "VerticalMisconvergence" },
23555465d9f5SThomas Kuehne { 0x82, 0x003a, "VerticalLinearity" },
23565465d9f5SThomas Kuehne { 0x82, 0x003c, "VerticalLinearityBalance" },
23575465d9f5SThomas Kuehne { 0x82, 0x0040, "ParallelogramDistortionKeyBalance" },
23585465d9f5SThomas Kuehne { 0x82, 0x0042, "TrapezoidalDistortionKey" },
23595465d9f5SThomas Kuehne { 0x82, 0x0044, "TiltRotation" },
23605465d9f5SThomas Kuehne { 0x82, 0x0046, "TopCornerDistortionControl" },
23615465d9f5SThomas Kuehne { 0x82, 0x0048, "TopCornerDistortionBalance" },
23625465d9f5SThomas Kuehne { 0x82, 0x004a, "BottomCornerDistortionControl" },
23635465d9f5SThomas Kuehne { 0x82, 0x004c, "BottomCornerDistortionBalance" },
2364815234a4SThomas Kuehne { 0x82, 0x0056, "HorizontalMoire" },
2365815234a4SThomas Kuehne { 0x82, 0x0058, "VerticalMoire" },
23665465d9f5SThomas Kuehne { 0x82, 0x005e, "InputLevelSelect" },
23675465d9f5SThomas Kuehne { 0x82, 0x0060, "InputSourceSelect" },
23685465d9f5SThomas Kuehne { 0x82, 0x006c, "RedVideoBlackLevel" },
23695465d9f5SThomas Kuehne { 0x82, 0x006e, "GreenVideoBlackLevel" },
23705465d9f5SThomas Kuehne { 0x82, 0x0070, "BlueVideoBlackLevel" },
23715465d9f5SThomas Kuehne { 0x82, 0x00a2, "AutoSizeCenter" },
23725465d9f5SThomas Kuehne { 0x82, 0x00a4, "PolarityHorizontalSynchronization" },
23735465d9f5SThomas Kuehne { 0x82, 0x00a6, "PolarityVerticalSynchronization" },
23745465d9f5SThomas Kuehne { 0x82, 0x00a8, "SynchronizationType" },
23755465d9f5SThomas Kuehne { 0x82, 0x00aa, "ScreenOrientation" },
23765465d9f5SThomas Kuehne { 0x82, 0x00ac, "HorizontalFrequency" },
23775465d9f5SThomas Kuehne { 0x82, 0x00ae, "VerticalFrequency" },
23785465d9f5SThomas Kuehne { 0x82, 0x00b0, "Settings" },
23795465d9f5SThomas Kuehne { 0x82, 0x00ca, "OnScreenDisplay" },
23805465d9f5SThomas Kuehne { 0x82, 0x00d4, "StereoMode" },
23815465d9f5SThomas Kuehne { 0x84, 0, "Power" },
23825465d9f5SThomas Kuehne { 0x84, 0x0001, "iName" },
23835465d9f5SThomas Kuehne { 0x84, 0x0002, "PresentStatus" },
23845465d9f5SThomas Kuehne { 0x84, 0x0003, "ChangedStatus" },
23855465d9f5SThomas Kuehne { 0x84, 0x0004, "UPS" },
23865465d9f5SThomas Kuehne { 0x84, 0x0005, "PowerSupply" },
23875465d9f5SThomas Kuehne { 0x84, 0x0010, "BatterySystem" },
23885465d9f5SThomas Kuehne { 0x84, 0x0011, "BatterySystemId" },
23895465d9f5SThomas Kuehne { 0x84, 0x0012, "Battery" },
23905465d9f5SThomas Kuehne { 0x84, 0x0013, "BatteryId" },
23915465d9f5SThomas Kuehne { 0x84, 0x0014, "Charger" },
23925465d9f5SThomas Kuehne { 0x84, 0x0015, "ChargerId" },
23935465d9f5SThomas Kuehne { 0x84, 0x0016, "PowerConverter" },
23945465d9f5SThomas Kuehne { 0x84, 0x0017, "PowerConverterId" },
23955465d9f5SThomas Kuehne { 0x84, 0x0018, "OutletSystem" },
23965465d9f5SThomas Kuehne { 0x84, 0x0019, "OutletSystemId" },
23975465d9f5SThomas Kuehne { 0x84, 0x001a, "Input" },
23985465d9f5SThomas Kuehne { 0x84, 0x001b, "InputId" },
23995465d9f5SThomas Kuehne { 0x84, 0x001c, "Output" },
24005465d9f5SThomas Kuehne { 0x84, 0x001d, "OutputId" },
24015465d9f5SThomas Kuehne { 0x84, 0x001e, "Flow" },
24025465d9f5SThomas Kuehne { 0x84, 0x001f, "FlowId" },
24035465d9f5SThomas Kuehne { 0x84, 0x0020, "Outlet" },
24045465d9f5SThomas Kuehne { 0x84, 0x0021, "OutletId" },
24055465d9f5SThomas Kuehne { 0x84, 0x0022, "Gang" },
24065465d9f5SThomas Kuehne { 0x84, 0x0023, "GangId" },
24075465d9f5SThomas Kuehne { 0x84, 0x0024, "PowerSummary" },
24085465d9f5SThomas Kuehne { 0x84, 0x0025, "PowerSummaryId" },
24095465d9f5SThomas Kuehne { 0x84, 0x0030, "Voltage" },
24105465d9f5SThomas Kuehne { 0x84, 0x0031, "Current" },
24115465d9f5SThomas Kuehne { 0x84, 0x0032, "Frequency" },
24125465d9f5SThomas Kuehne { 0x84, 0x0033, "ApparentPower" },
24135465d9f5SThomas Kuehne { 0x84, 0x0034, "ActivePower" },
24145465d9f5SThomas Kuehne { 0x84, 0x0035, "PercentLoad" },
24155465d9f5SThomas Kuehne { 0x84, 0x0036, "Temperature" },
24165465d9f5SThomas Kuehne { 0x84, 0x0037, "Humidity" },
24175465d9f5SThomas Kuehne { 0x84, 0x0038, "BadCount" },
24185465d9f5SThomas Kuehne { 0x84, 0x0040, "ConfigVoltage" },
24195465d9f5SThomas Kuehne { 0x84, 0x0041, "ConfigCurrent" },
24205465d9f5SThomas Kuehne { 0x84, 0x0042, "ConfigFrequency" },
24215465d9f5SThomas Kuehne { 0x84, 0x0043, "ConfigApparentPower" },
24225465d9f5SThomas Kuehne { 0x84, 0x0044, "ConfigActivePower" },
24235465d9f5SThomas Kuehne { 0x84, 0x0045, "ConfigPercentLoad" },
24245465d9f5SThomas Kuehne { 0x84, 0x0046, "ConfigTemperature" },
24255465d9f5SThomas Kuehne { 0x84, 0x0047, "ConfigHumidity" },
24265465d9f5SThomas Kuehne { 0x84, 0x0050, "SwitchOnControl" },
24275465d9f5SThomas Kuehne { 0x84, 0x0051, "SwitchOffControl" },
24285465d9f5SThomas Kuehne { 0x84, 0x0052, "ToggleControl" },
24295465d9f5SThomas Kuehne { 0x84, 0x0053, "LowVoltageTransfer" },
24305465d9f5SThomas Kuehne { 0x84, 0x0054, "HighVoltageTransfer" },
24315465d9f5SThomas Kuehne { 0x84, 0x0055, "DelayBeforeReboot" },
24325465d9f5SThomas Kuehne { 0x84, 0x0056, "DelayBeforeStartup" },
24335465d9f5SThomas Kuehne { 0x84, 0x0057, "DelayBeforeShutdown" },
24345465d9f5SThomas Kuehne { 0x84, 0x0058, "Test" },
24355465d9f5SThomas Kuehne { 0x84, 0x0059, "ModuleReset" },
24365465d9f5SThomas Kuehne { 0x84, 0x005a, "AudibleAlarmControl" },
24375465d9f5SThomas Kuehne { 0x84, 0x0060, "Present" },
24385465d9f5SThomas Kuehne { 0x84, 0x0061, "Good" },
24395465d9f5SThomas Kuehne { 0x84, 0x0062, "InternalFailure" },
24405465d9f5SThomas Kuehne { 0x84, 0x0063, "VoltagOutOfRange" },
24415465d9f5SThomas Kuehne { 0x84, 0x0064, "FrequencyOutOfRange" },
24425465d9f5SThomas Kuehne { 0x84, 0x0065, "Overload" },
24435465d9f5SThomas Kuehne { 0x84, 0x0066, "OverCharged" },
24445465d9f5SThomas Kuehne { 0x84, 0x0067, "OverTemperature" },
24455465d9f5SThomas Kuehne { 0x84, 0x0068, "ShutdownRequested" },
24465465d9f5SThomas Kuehne { 0x84, 0x0069, "ShutdownImminent" },
24475465d9f5SThomas Kuehne { 0x84, 0x006b, "SwitchOnOff" },
24485465d9f5SThomas Kuehne { 0x84, 0x006c, "Switchable" },
24495465d9f5SThomas Kuehne { 0x84, 0x006d, "Used" },
24505465d9f5SThomas Kuehne { 0x84, 0x006e, "Boost" },
24515465d9f5SThomas Kuehne { 0x84, 0x006f, "Buck" },
24525465d9f5SThomas Kuehne { 0x84, 0x0070, "Initialized" },
24535465d9f5SThomas Kuehne { 0x84, 0x0071, "Tested" },
24545465d9f5SThomas Kuehne { 0x84, 0x0072, "AwaitingPower" },
24555465d9f5SThomas Kuehne { 0x84, 0x0073, "CommunicationLost" },
24565465d9f5SThomas Kuehne { 0x84, 0x00fd, "iManufacturer" },
24575465d9f5SThomas Kuehne { 0x84, 0x00fe, "iProduct" },
24585465d9f5SThomas Kuehne { 0x84, 0x00ff, "iSerialNumber" },
2459c080d89aSJiri Kosina { 0x85, 0, "BatterySystem" },
24605465d9f5SThomas Kuehne { 0x85, 0x0001, "SmartBatteryBatteryMode" },
24615465d9f5SThomas Kuehne { 0x85, 0x0002, "SmartBatteryBatteryStatus" },
24625465d9f5SThomas Kuehne { 0x85, 0x0003, "SmartBatteryAlarmWarning" },
24635465d9f5SThomas Kuehne { 0x85, 0x0004, "SmartBatteryChargerMode" },
24645465d9f5SThomas Kuehne { 0x85, 0x0005, "SmartBatteryChargerStatus" },
24655465d9f5SThomas Kuehne { 0x85, 0x0006, "SmartBatteryChargerSpecInfo" },
24665465d9f5SThomas Kuehne { 0x85, 0x0007, "SmartBatterySelectorState" },
24675465d9f5SThomas Kuehne { 0x85, 0x0008, "SmartBatterySelectorPresets" },
24685465d9f5SThomas Kuehne { 0x85, 0x0009, "SmartBatterySelectorInfo" },
24695465d9f5SThomas Kuehne { 0x85, 0x0010, "OptionalMfgFunction1" },
24705465d9f5SThomas Kuehne { 0x85, 0x0011, "OptionalMfgFunction2" },
24715465d9f5SThomas Kuehne { 0x85, 0x0012, "OptionalMfgFunction3" },
24725465d9f5SThomas Kuehne { 0x85, 0x0013, "OptionalMfgFunction4" },
24735465d9f5SThomas Kuehne { 0x85, 0x0014, "OptionalMfgFunction5" },
24745465d9f5SThomas Kuehne { 0x85, 0x0015, "ConnectionToSMBus" },
24755465d9f5SThomas Kuehne { 0x85, 0x0016, "OutputConnection" },
24765465d9f5SThomas Kuehne { 0x85, 0x0017, "ChargerConnection" },
24775465d9f5SThomas Kuehne { 0x85, 0x0018, "BatteryInsertion" },
24785465d9f5SThomas Kuehne { 0x85, 0x0019, "UseNext" },
24795465d9f5SThomas Kuehne { 0x85, 0x001a, "OKToUse" },
24805465d9f5SThomas Kuehne { 0x85, 0x001b, "BatterySupported" },
24815465d9f5SThomas Kuehne { 0x85, 0x001c, "SelectorRevision" },
24825465d9f5SThomas Kuehne { 0x85, 0x001d, "ChargingIndicator" },
24835465d9f5SThomas Kuehne { 0x85, 0x0028, "ManufacturerAccess" },
24845465d9f5SThomas Kuehne { 0x85, 0x0029, "RemainingCapacityLimit" },
24855465d9f5SThomas Kuehne { 0x85, 0x002a, "RemainingTimeLimit" },
24865465d9f5SThomas Kuehne { 0x85, 0x002b, "AtRate" },
24875465d9f5SThomas Kuehne { 0x85, 0x002c, "CapacityMode" },
24885465d9f5SThomas Kuehne { 0x85, 0x002d, "BroadcastToCharger" },
24895465d9f5SThomas Kuehne { 0x85, 0x002e, "PrimaryBattery" },
24905465d9f5SThomas Kuehne { 0x85, 0x002f, "ChargeController" },
24915465d9f5SThomas Kuehne { 0x85, 0x0040, "TerminateCharge" },
24925465d9f5SThomas Kuehne { 0x85, 0x0041, "TerminateDischarge" },
24935465d9f5SThomas Kuehne { 0x85, 0x0042, "BelowRemainingCapacityLimit" },
24945465d9f5SThomas Kuehne { 0x85, 0x0043, "RemainingTimeLimitExpired" },
24955465d9f5SThomas Kuehne { 0x85, 0x0044, "Charging" },
24965465d9f5SThomas Kuehne { 0x85, 0x0045, "Discharging" },
24975465d9f5SThomas Kuehne { 0x85, 0x0046, "FullyCharged" },
24985465d9f5SThomas Kuehne { 0x85, 0x0047, "FullyDischarged" },
24995465d9f5SThomas Kuehne { 0x85, 0x0048, "ConditioningFlag" },
25005465d9f5SThomas Kuehne { 0x85, 0x0049, "AtRateOK" },
25015465d9f5SThomas Kuehne { 0x85, 0x004a, "SmartBatteryErrorCode" },
25025465d9f5SThomas Kuehne { 0x85, 0x004b, "NeedReplacement" },
25035465d9f5SThomas Kuehne { 0x85, 0x0060, "AtRateTimeToFull" },
25045465d9f5SThomas Kuehne { 0x85, 0x0061, "AtRateTimeToEmpty" },
25055465d9f5SThomas Kuehne { 0x85, 0x0062, "AverageCurrent" },
25065465d9f5SThomas Kuehne { 0x85, 0x0063, "MaxError" },
25075465d9f5SThomas Kuehne { 0x85, 0x0064, "RelativeStateOfCharge" },
25085465d9f5SThomas Kuehne { 0x85, 0x0065, "AbsoluteStateOfCharge" },
25095465d9f5SThomas Kuehne { 0x85, 0x0066, "RemainingCapacity" },
25105465d9f5SThomas Kuehne { 0x85, 0x0067, "FullChargeCapacity" },
25115465d9f5SThomas Kuehne { 0x85, 0x0068, "RunTimeToEmpty" },
25125465d9f5SThomas Kuehne { 0x85, 0x0069, "AverageTimeToEmpty" },
25135465d9f5SThomas Kuehne { 0x85, 0x006a, "AverageTimeToFull" },
25145465d9f5SThomas Kuehne { 0x85, 0x006b, "CycleCount" },
25155465d9f5SThomas Kuehne { 0x85, 0x0080, "BatteryPackModelLevel" },
25165465d9f5SThomas Kuehne { 0x85, 0x0081, "InternalChargeController" },
25175465d9f5SThomas Kuehne { 0x85, 0x0082, "PrimaryBatterySupport" },
25185465d9f5SThomas Kuehne { 0x85, 0x0083, "DesignCapacity" },
25195465d9f5SThomas Kuehne { 0x85, 0x0084, "SpecificationInfo" },
25205465d9f5SThomas Kuehne { 0x85, 0x0085, "ManufactureDate" },
25215465d9f5SThomas Kuehne { 0x85, 0x0086, "SerialNumber" },
25225465d9f5SThomas Kuehne { 0x85, 0x0087, "iManufacturerName" },
25235465d9f5SThomas Kuehne { 0x85, 0x0088, "iDeviceName" },
25245465d9f5SThomas Kuehne { 0x85, 0x0089, "iDeviceChemistry" },
25255465d9f5SThomas Kuehne { 0x85, 0x008a, "ManufacturerData" },
25265465d9f5SThomas Kuehne { 0x85, 0x008b, "Rechargable" },
25275465d9f5SThomas Kuehne { 0x85, 0x008c, "WarningCapacityLimit" },
25285465d9f5SThomas Kuehne { 0x85, 0x008d, "CapacityGranularity1" },
25295465d9f5SThomas Kuehne { 0x85, 0x008e, "CapacityGranularity2" },
25305465d9f5SThomas Kuehne { 0x85, 0x008f, "iOEMInformation" },
25315465d9f5SThomas Kuehne { 0x85, 0x00c0, "InhibitCharge" },
25325465d9f5SThomas Kuehne { 0x85, 0x00c1, "EnablePolling" },
25335465d9f5SThomas Kuehne { 0x85, 0x00c2, "ResetToZero" },
25345465d9f5SThomas Kuehne { 0x85, 0x00d0, "ACPresent" },
25355465d9f5SThomas Kuehne { 0x85, 0x00d1, "BatteryPresent" },
25365465d9f5SThomas Kuehne { 0x85, 0x00d2, "PowerFail" },
25375465d9f5SThomas Kuehne { 0x85, 0x00d3, "AlarmInhibited" },
25385465d9f5SThomas Kuehne { 0x85, 0x00d4, "ThermistorUnderRange" },
25395465d9f5SThomas Kuehne { 0x85, 0x00d5, "ThermistorHot" },
25405465d9f5SThomas Kuehne { 0x85, 0x00d6, "ThermistorCold" },
25415465d9f5SThomas Kuehne { 0x85, 0x00d7, "ThermistorOverRange" },
25425465d9f5SThomas Kuehne { 0x85, 0x00d8, "VoltageOutOfRange" },
25435465d9f5SThomas Kuehne { 0x85, 0x00d9, "CurrentOutOfRange" },
25445465d9f5SThomas Kuehne { 0x85, 0x00da, "CurrentNotRegulated" },
25455465d9f5SThomas Kuehne { 0x85, 0x00db, "VoltageNotRegulated" },
25465465d9f5SThomas Kuehne { 0x85, 0x00dc, "MasterMode" },
25475465d9f5SThomas Kuehne { 0x85, 0x00f0, "ChargerSelectorSupport" },
25485465d9f5SThomas Kuehne { 0x85, 0x00f1, "ChargerSpec" },
25495465d9f5SThomas Kuehne { 0x85, 0x00f2, "Level2" },
25505465d9f5SThomas Kuehne { 0x85, 0x00f3, "Level3" },
25515465d9f5SThomas Kuehne { 0x8c, 0, "BarcodeScanner" },
25525465d9f5SThomas Kuehne { 0x8c, 0x0001, "BarcodeBadgeReader" },
25535465d9f5SThomas Kuehne { 0x8c, 0x0002, "BarcodeScanner" },
25545465d9f5SThomas Kuehne { 0x8c, 0x0003, "DumbBarCodeScanner" },
25555465d9f5SThomas Kuehne { 0x8c, 0x0004, "CordlessScannerBase" },
25565465d9f5SThomas Kuehne { 0x8c, 0x0005, "BarCodeScannerCradle" },
25575465d9f5SThomas Kuehne { 0x8c, 0x0010, "AttributeReport" },
25585465d9f5SThomas Kuehne { 0x8c, 0x0011, "SettingsReport" },
25595465d9f5SThomas Kuehne { 0x8c, 0x0012, "ScannedDataReport" },
25605465d9f5SThomas Kuehne { 0x8c, 0x0013, "RawScannedDataReport" },
25615465d9f5SThomas Kuehne { 0x8c, 0x0014, "TriggerReport" },
25625465d9f5SThomas Kuehne { 0x8c, 0x0015, "StatusReport" },
25635465d9f5SThomas Kuehne { 0x8c, 0x0016, "UPCEANControlReport" },
25645465d9f5SThomas Kuehne { 0x8c, 0x0017, "EAN23LabelControlReport" },
25655465d9f5SThomas Kuehne { 0x8c, 0x0018, "Code39ControlReport" },
25665465d9f5SThomas Kuehne { 0x8c, 0x0019, "Interleaved2of5ControlReport" },
25675465d9f5SThomas Kuehne { 0x8c, 0x001a, "Standard2of5ControlReport" },
25685465d9f5SThomas Kuehne { 0x8c, 0x001b, "MSIPlesseyControlReport" },
25695465d9f5SThomas Kuehne { 0x8c, 0x001c, "CodabarControlReport" },
25705465d9f5SThomas Kuehne { 0x8c, 0x001d, "Code128ControlReport" },
25715465d9f5SThomas Kuehne { 0x8c, 0x001e, "Misc1DControlReport" },
25725465d9f5SThomas Kuehne { 0x8c, 0x001f, "2DControlReport" },
25735465d9f5SThomas Kuehne { 0x8c, 0x0030, "AimingPointerMode" },
25745465d9f5SThomas Kuehne { 0x8c, 0x0031, "BarCodePresentSensor" },
25755465d9f5SThomas Kuehne { 0x8c, 0x0032, "Class1ALaser" },
25765465d9f5SThomas Kuehne { 0x8c, 0x0033, "Class2Laser" },
25775465d9f5SThomas Kuehne { 0x8c, 0x0034, "HeaterPresent" },
25785465d9f5SThomas Kuehne { 0x8c, 0x0035, "ContactScanner" },
25795465d9f5SThomas Kuehne { 0x8c, 0x0036, "ElectronicArticleSurveillanceNotification" },
25805465d9f5SThomas Kuehne { 0x8c, 0x0037, "ConstantElectronicArticleSurveillance" },
25815465d9f5SThomas Kuehne { 0x8c, 0x0038, "ErrorIndication" },
25825465d9f5SThomas Kuehne { 0x8c, 0x0039, "FixedBeeper" },
25835465d9f5SThomas Kuehne { 0x8c, 0x003a, "GoodDecodeIndication" },
25845465d9f5SThomas Kuehne { 0x8c, 0x003b, "HandsFreeScanning" },
25855465d9f5SThomas Kuehne { 0x8c, 0x003c, "IntrinsicallySafe" },
25865465d9f5SThomas Kuehne { 0x8c, 0x003d, "KlasseEinsLaser" },
25875465d9f5SThomas Kuehne { 0x8c, 0x003e, "LongRangeScanner" },
25885465d9f5SThomas Kuehne { 0x8c, 0x003f, "MirrorSpeedControl" },
25895465d9f5SThomas Kuehne { 0x8c, 0x0040, "NotOnFileIndication" },
25905465d9f5SThomas Kuehne { 0x8c, 0x0041, "ProgrammableBeeper" },
25915465d9f5SThomas Kuehne { 0x8c, 0x0042, "Triggerless" },
25925465d9f5SThomas Kuehne { 0x8c, 0x0043, "Wand" },
25935465d9f5SThomas Kuehne { 0x8c, 0x0044, "WaterResistant" },
25945465d9f5SThomas Kuehne { 0x8c, 0x0045, "MultiRangeScanner" },
25955465d9f5SThomas Kuehne { 0x8c, 0x0046, "ProximitySensor" },
25965465d9f5SThomas Kuehne { 0x8c, 0x004d, "FragmentDecoding" },
25975465d9f5SThomas Kuehne { 0x8c, 0x004e, "ScannerReadConfidence" },
25985465d9f5SThomas Kuehne { 0x8c, 0x004f, "DataPrefix" },
25995465d9f5SThomas Kuehne { 0x8c, 0x0050, "PrefixAIMI" },
26005465d9f5SThomas Kuehne { 0x8c, 0x0051, "PrefixNone" },
26015465d9f5SThomas Kuehne { 0x8c, 0x0052, "PrefixProprietary" },
26025465d9f5SThomas Kuehne { 0x8c, 0x0055, "ActiveTime" },
26035465d9f5SThomas Kuehne { 0x8c, 0x0056, "AimingLaserPattern" },
26045465d9f5SThomas Kuehne { 0x8c, 0x0057, "BarCodePresent" },
26055465d9f5SThomas Kuehne { 0x8c, 0x0058, "BeeperState" },
26065465d9f5SThomas Kuehne { 0x8c, 0x0059, "LaserOnTime" },
26075465d9f5SThomas Kuehne { 0x8c, 0x005a, "LaserState" },
26085465d9f5SThomas Kuehne { 0x8c, 0x005b, "LockoutTime" },
26095465d9f5SThomas Kuehne { 0x8c, 0x005c, "MotorState" },
26105465d9f5SThomas Kuehne { 0x8c, 0x005d, "MotorTimeout" },
26115465d9f5SThomas Kuehne { 0x8c, 0x005e, "PowerOnResetScanner" },
26125465d9f5SThomas Kuehne { 0x8c, 0x005f, "PreventReadofBarcodes" },
26135465d9f5SThomas Kuehne { 0x8c, 0x0060, "InitiateBarcodeRead" },
26145465d9f5SThomas Kuehne { 0x8c, 0x0061, "TriggerState" },
26155465d9f5SThomas Kuehne { 0x8c, 0x0062, "TriggerMode" },
26165465d9f5SThomas Kuehne { 0x8c, 0x0063, "TriggerModeBlinkingLaserOn" },
26175465d9f5SThomas Kuehne { 0x8c, 0x0064, "TriggerModeContinuousLaserOn" },
26185465d9f5SThomas Kuehne { 0x8c, 0x0065, "TriggerModeLaseronwhilePulled" },
26195465d9f5SThomas Kuehne { 0x8c, 0x0066, "TriggerModeLaserstaysonafterrelease" },
26205465d9f5SThomas Kuehne { 0x8c, 0x006d, "CommitParameterstoNVM" },
26215465d9f5SThomas Kuehne { 0x8c, 0x006e, "ParameterScanning" },
26225465d9f5SThomas Kuehne { 0x8c, 0x006f, "ParametersChanged" },
26235465d9f5SThomas Kuehne { 0x8c, 0x0070, "Setparameterdefaultvalues" },
26245465d9f5SThomas Kuehne { 0x8c, 0x0075, "ScannerInCradle" },
26255465d9f5SThomas Kuehne { 0x8c, 0x0076, "ScannerInRange" },
26265465d9f5SThomas Kuehne { 0x8c, 0x007a, "AimDuration" },
26275465d9f5SThomas Kuehne { 0x8c, 0x007b, "GoodReadLampDuration" },
26285465d9f5SThomas Kuehne { 0x8c, 0x007c, "GoodReadLampIntensity" },
26295465d9f5SThomas Kuehne { 0x8c, 0x007d, "GoodReadLED" },
26305465d9f5SThomas Kuehne { 0x8c, 0x007e, "GoodReadToneFrequency" },
26315465d9f5SThomas Kuehne { 0x8c, 0x007f, "GoodReadToneLength" },
26325465d9f5SThomas Kuehne { 0x8c, 0x0080, "GoodReadToneVolume" },
26335465d9f5SThomas Kuehne { 0x8c, 0x0082, "NoReadMessage" },
26345465d9f5SThomas Kuehne { 0x8c, 0x0083, "NotonFileVolume" },
26355465d9f5SThomas Kuehne { 0x8c, 0x0084, "PowerupBeep" },
26365465d9f5SThomas Kuehne { 0x8c, 0x0085, "SoundErrorBeep" },
26375465d9f5SThomas Kuehne { 0x8c, 0x0086, "SoundGoodReadBeep" },
26385465d9f5SThomas Kuehne { 0x8c, 0x0087, "SoundNotOnFileBeep" },
26395465d9f5SThomas Kuehne { 0x8c, 0x0088, "GoodReadWhentoWrite" },
26405465d9f5SThomas Kuehne { 0x8c, 0x0089, "GRWTIAfterDecode" },
26415465d9f5SThomas Kuehne { 0x8c, 0x008a, "GRWTIBeepLampaftertransmit" },
26425465d9f5SThomas Kuehne { 0x8c, 0x008b, "GRWTINoBeepLampuseatall" },
26435465d9f5SThomas Kuehne { 0x8c, 0x0091, "BooklandEAN" },
26445465d9f5SThomas Kuehne { 0x8c, 0x0092, "ConvertEAN8to13Type" },
26455465d9f5SThomas Kuehne { 0x8c, 0x0093, "ConvertUPCAtoEAN13" },
26465465d9f5SThomas Kuehne { 0x8c, 0x0094, "ConvertUPCEtoA" },
26475465d9f5SThomas Kuehne { 0x8c, 0x0095, "EAN13" },
26485465d9f5SThomas Kuehne { 0x8c, 0x0096, "EAN8" },
26495465d9f5SThomas Kuehne { 0x8c, 0x0097, "EAN99128Mandatory" },
26505465d9f5SThomas Kuehne { 0x8c, 0x0098, "EAN99P5128Optional" },
26515465d9f5SThomas Kuehne { 0x8c, 0x0099, "EnableEANTwoLabel" },
26525465d9f5SThomas Kuehne { 0x8c, 0x009a, "UPCEAN" },
26535465d9f5SThomas Kuehne { 0x8c, 0x009b, "UPCEANCouponCode" },
26545465d9f5SThomas Kuehne { 0x8c, 0x009c, "UPCEANPeriodicals" },
26555465d9f5SThomas Kuehne { 0x8c, 0x009d, "UPCA" },
26565465d9f5SThomas Kuehne { 0x8c, 0x009e, "UPCAwith128Mandatory" },
26575465d9f5SThomas Kuehne { 0x8c, 0x009f, "UPCAwith128Optional" },
26585465d9f5SThomas Kuehne { 0x8c, 0x00a0, "UPCAwithP5Optional" },
26595465d9f5SThomas Kuehne { 0x8c, 0x00a1, "UPCE" },
26605465d9f5SThomas Kuehne { 0x8c, 0x00a2, "UPCE1" },
26615465d9f5SThomas Kuehne { 0x8c, 0x00a9, "Periodical" },
26625465d9f5SThomas Kuehne { 0x8c, 0x00aa, "PeriodicalAutoDiscriminate2" },
26635465d9f5SThomas Kuehne { 0x8c, 0x00ab, "PeriodicalOnlyDecodewith2" },
26645465d9f5SThomas Kuehne { 0x8c, 0x00ac, "PeriodicalIgnore2" },
26655465d9f5SThomas Kuehne { 0x8c, 0x00ad, "PeriodicalAutoDiscriminate5" },
26665465d9f5SThomas Kuehne { 0x8c, 0x00ae, "PeriodicalOnlyDecodewith5" },
26675465d9f5SThomas Kuehne { 0x8c, 0x00af, "PeriodicalIgnore5" },
26685465d9f5SThomas Kuehne { 0x8c, 0x00b0, "Check" },
26695465d9f5SThomas Kuehne { 0x8c, 0x00b1, "CheckDisablePrice" },
26705465d9f5SThomas Kuehne { 0x8c, 0x00b2, "CheckEnable4digitPrice" },
26715465d9f5SThomas Kuehne { 0x8c, 0x00b3, "CheckEnable5digitPrice" },
26725465d9f5SThomas Kuehne { 0x8c, 0x00b4, "CheckEnableEuropean4digitPrice" },
26735465d9f5SThomas Kuehne { 0x8c, 0x00b5, "CheckEnableEuropean5digitPrice" },
26745465d9f5SThomas Kuehne { 0x8c, 0x00b7, "EANTwoLabel" },
26755465d9f5SThomas Kuehne { 0x8c, 0x00b8, "EANThreeLabel" },
26765465d9f5SThomas Kuehne { 0x8c, 0x00b9, "EAN8FlagDigit1" },
26775465d9f5SThomas Kuehne { 0x8c, 0x00ba, "EAN8FlagDigit2" },
26785465d9f5SThomas Kuehne { 0x8c, 0x00bb, "EAN8FlagDigit3" },
26795465d9f5SThomas Kuehne { 0x8c, 0x00bc, "EAN13FlagDigit1" },
26805465d9f5SThomas Kuehne { 0x8c, 0x00bd, "EAN13FlagDigit2" },
26815465d9f5SThomas Kuehne { 0x8c, 0x00be, "EAN13FlagDigit3" },
26825465d9f5SThomas Kuehne { 0x8c, 0x00bf, "AddEAN23LabelDefinition" },
26835465d9f5SThomas Kuehne { 0x8c, 0x00c0, "ClearallEAN23LabelDefinitions" },
26845465d9f5SThomas Kuehne { 0x8c, 0x00c3, "Codabar" },
26855465d9f5SThomas Kuehne { 0x8c, 0x00c4, "Code128" },
26865465d9f5SThomas Kuehne { 0x8c, 0x00c7, "Code39" },
26875465d9f5SThomas Kuehne { 0x8c, 0x00c8, "Code93" },
26885465d9f5SThomas Kuehne { 0x8c, 0x00c9, "FullASCIIConversion" },
26895465d9f5SThomas Kuehne { 0x8c, 0x00ca, "Interleaved2of5" },
26905465d9f5SThomas Kuehne { 0x8c, 0x00cb, "ItalianPharmacyCode" },
26915465d9f5SThomas Kuehne { 0x8c, 0x00cc, "MSIPlessey" },
26925465d9f5SThomas Kuehne { 0x8c, 0x00cd, "Standard2of5IATA" },
26935465d9f5SThomas Kuehne { 0x8c, 0x00ce, "Standard2of5" },
26945465d9f5SThomas Kuehne { 0x8c, 0x00d3, "TransmitStartStop" },
26955465d9f5SThomas Kuehne { 0x8c, 0x00d4, "TriOptic" },
26965465d9f5SThomas Kuehne { 0x8c, 0x00d5, "UCCEAN128" },
26975465d9f5SThomas Kuehne { 0x8c, 0x00d6, "CheckDigit" },
26985465d9f5SThomas Kuehne { 0x8c, 0x00d7, "CheckDigitDisable" },
26995465d9f5SThomas Kuehne { 0x8c, 0x00d8, "CheckDigitEnableInterleaved2of5OPCC" },
27005465d9f5SThomas Kuehne { 0x8c, 0x00d9, "CheckDigitEnableInterleaved2of5USS" },
27015465d9f5SThomas Kuehne { 0x8c, 0x00da, "CheckDigitEnableStandard2of5OPCC" },
27025465d9f5SThomas Kuehne { 0x8c, 0x00db, "CheckDigitEnableStandard2of5USS" },
27035465d9f5SThomas Kuehne { 0x8c, 0x00dc, "CheckDigitEnableOneMSIPlessey" },
27045465d9f5SThomas Kuehne { 0x8c, 0x00dd, "CheckDigitEnableTwoMSIPlessey" },
27055465d9f5SThomas Kuehne { 0x8c, 0x00de, "CheckDigitCodabarEnable" },
27065465d9f5SThomas Kuehne { 0x8c, 0x00df, "CheckDigitCode39Enable" },
27075465d9f5SThomas Kuehne { 0x8c, 0x00f0, "TransmitCheckDigit" },
27085465d9f5SThomas Kuehne { 0x8c, 0x00f1, "DisableCheckDigitTransmit" },
27095465d9f5SThomas Kuehne { 0x8c, 0x00f2, "EnableCheckDigitTransmit" },
27105465d9f5SThomas Kuehne { 0x8c, 0x00fb, "SymbologyIdentifier1" },
27115465d9f5SThomas Kuehne { 0x8c, 0x00fc, "SymbologyIdentifier2" },
27125465d9f5SThomas Kuehne { 0x8c, 0x00fd, "SymbologyIdentifier3" },
27135465d9f5SThomas Kuehne { 0x8c, 0x00fe, "DecodedData" },
27145465d9f5SThomas Kuehne { 0x8c, 0x00ff, "DecodeDataContinued" },
27155465d9f5SThomas Kuehne { 0x8c, 0x0100, "BarSpaceData" },
27165465d9f5SThomas Kuehne { 0x8c, 0x0101, "ScannerDataAccuracy" },
27175465d9f5SThomas Kuehne { 0x8c, 0x0102, "RawDataPolarity" },
27185465d9f5SThomas Kuehne { 0x8c, 0x0103, "PolarityInvertedBarCode" },
27195465d9f5SThomas Kuehne { 0x8c, 0x0104, "PolarityNormalBarCode" },
27205465d9f5SThomas Kuehne { 0x8c, 0x0106, "MinimumLengthtoDecode" },
27215465d9f5SThomas Kuehne { 0x8c, 0x0107, "MaximumLengthtoDecode" },
27225465d9f5SThomas Kuehne { 0x8c, 0x0108, "DiscreteLengthtoDecode1" },
27235465d9f5SThomas Kuehne { 0x8c, 0x0109, "DiscreteLengthtoDecode2" },
27245465d9f5SThomas Kuehne { 0x8c, 0x010a, "DataLengthMethod" },
27255465d9f5SThomas Kuehne { 0x8c, 0x010b, "DLMethodReadany" },
27265465d9f5SThomas Kuehne { 0x8c, 0x010c, "DLMethodCheckinRange" },
27275465d9f5SThomas Kuehne { 0x8c, 0x010d, "DLMethodCheckforDiscrete" },
27285465d9f5SThomas Kuehne { 0x8c, 0x0110, "AztecCode" },
27295465d9f5SThomas Kuehne { 0x8c, 0x0111, "BC412" },
27305465d9f5SThomas Kuehne { 0x8c, 0x0112, "ChannelCode" },
27315465d9f5SThomas Kuehne { 0x8c, 0x0113, "Code16" },
27325465d9f5SThomas Kuehne { 0x8c, 0x0114, "Code32" },
27335465d9f5SThomas Kuehne { 0x8c, 0x0115, "Code49" },
27345465d9f5SThomas Kuehne { 0x8c, 0x0116, "CodeOne" },
27355465d9f5SThomas Kuehne { 0x8c, 0x0117, "Colorcode" },
27365465d9f5SThomas Kuehne { 0x8c, 0x0118, "DataMatrix" },
27375465d9f5SThomas Kuehne { 0x8c, 0x0119, "MaxiCode" },
27385465d9f5SThomas Kuehne { 0x8c, 0x011a, "MicroPDF" },
27395465d9f5SThomas Kuehne { 0x8c, 0x011b, "PDF417" },
27405465d9f5SThomas Kuehne { 0x8c, 0x011c, "PosiCode" },
27415465d9f5SThomas Kuehne { 0x8c, 0x011d, "QRCode" },
27425465d9f5SThomas Kuehne { 0x8c, 0x011e, "SuperCode" },
27435465d9f5SThomas Kuehne { 0x8c, 0x011f, "UltraCode" },
27445465d9f5SThomas Kuehne { 0x8c, 0x0120, "USD5SlugCode" },
27455465d9f5SThomas Kuehne { 0x8c, 0x0121, "VeriCode" },
27465465d9f5SThomas Kuehne { 0x8d, 0, "Scales" },
27475465d9f5SThomas Kuehne { 0x8d, 0x0001, "Scales" },
27485465d9f5SThomas Kuehne { 0x8d, 0x0020, "ScaleDevice" },
27495465d9f5SThomas Kuehne { 0x8d, 0x0021, "ScaleClass" },
27505465d9f5SThomas Kuehne { 0x8d, 0x0022, "ScaleClassIMetric" },
27515465d9f5SThomas Kuehne { 0x8d, 0x0023, "ScaleClassIIMetric" },
27525465d9f5SThomas Kuehne { 0x8d, 0x0024, "ScaleClassIIIMetric" },
27535465d9f5SThomas Kuehne { 0x8d, 0x0025, "ScaleClassIIILMetric" },
27545465d9f5SThomas Kuehne { 0x8d, 0x0026, "ScaleClassIVMetric" },
27555465d9f5SThomas Kuehne { 0x8d, 0x0027, "ScaleClassIIIEnglish" },
27565465d9f5SThomas Kuehne { 0x8d, 0x0028, "ScaleClassIIILEnglish" },
27575465d9f5SThomas Kuehne { 0x8d, 0x0029, "ScaleClassIVEnglish" },
27585465d9f5SThomas Kuehne { 0x8d, 0x002a, "ScaleClassGeneric" },
27595465d9f5SThomas Kuehne { 0x8d, 0x0030, "ScaleAttributeReport" },
27605465d9f5SThomas Kuehne { 0x8d, 0x0031, "ScaleControlReport" },
27615465d9f5SThomas Kuehne { 0x8d, 0x0032, "ScaleDataReport" },
27625465d9f5SThomas Kuehne { 0x8d, 0x0033, "ScaleStatusReport" },
27635465d9f5SThomas Kuehne { 0x8d, 0x0034, "ScaleWeightLimitReport" },
27645465d9f5SThomas Kuehne { 0x8d, 0x0035, "ScaleStatisticsReport" },
27655465d9f5SThomas Kuehne { 0x8d, 0x0040, "DataWeight" },
27665465d9f5SThomas Kuehne { 0x8d, 0x0041, "DataScaling" },
27675465d9f5SThomas Kuehne { 0x8d, 0x0050, "WeightUnit" },
27685465d9f5SThomas Kuehne { 0x8d, 0x0051, "WeightUnitMilligram" },
27695465d9f5SThomas Kuehne { 0x8d, 0x0052, "WeightUnitGram" },
27705465d9f5SThomas Kuehne { 0x8d, 0x0053, "WeightUnitKilogram" },
27715465d9f5SThomas Kuehne { 0x8d, 0x0054, "WeightUnitCarats" },
27725465d9f5SThomas Kuehne { 0x8d, 0x0055, "WeightUnitTaels" },
27735465d9f5SThomas Kuehne { 0x8d, 0x0056, "WeightUnitGrains" },
27745465d9f5SThomas Kuehne { 0x8d, 0x0057, "WeightUnitPennyweights" },
27755465d9f5SThomas Kuehne { 0x8d, 0x0058, "WeightUnitMetricTon" },
27765465d9f5SThomas Kuehne { 0x8d, 0x0059, "WeightUnitAvoirTon" },
27775465d9f5SThomas Kuehne { 0x8d, 0x005a, "WeightUnitTroyOunce" },
27785465d9f5SThomas Kuehne { 0x8d, 0x005b, "WeightUnitOunce" },
27795465d9f5SThomas Kuehne { 0x8d, 0x005c, "WeightUnitPound" },
27805465d9f5SThomas Kuehne { 0x8d, 0x0060, "CalibrationCount" },
27815465d9f5SThomas Kuehne { 0x8d, 0x0061, "ReZeroCount" },
27825465d9f5SThomas Kuehne { 0x8d, 0x0070, "ScaleStatus" },
27835465d9f5SThomas Kuehne { 0x8d, 0x0071, "ScaleStatusFault" },
27845465d9f5SThomas Kuehne { 0x8d, 0x0072, "ScaleStatusStableatCenterofZero" },
27855465d9f5SThomas Kuehne { 0x8d, 0x0073, "ScaleStatusInMotion" },
27865465d9f5SThomas Kuehne { 0x8d, 0x0074, "ScaleStatusWeightStable" },
27875465d9f5SThomas Kuehne { 0x8d, 0x0075, "ScaleStatusUnderZero" },
27885465d9f5SThomas Kuehne { 0x8d, 0x0076, "ScaleStatusOverWeightLimit" },
27895465d9f5SThomas Kuehne { 0x8d, 0x0077, "ScaleStatusRequiresCalibration" },
27905465d9f5SThomas Kuehne { 0x8d, 0x0078, "ScaleStatusRequiresRezeroing" },
27915465d9f5SThomas Kuehne { 0x8d, 0x0080, "ZeroScale" },
27925465d9f5SThomas Kuehne { 0x8d, 0x0081, "EnforcedZeroReturn" },
27935465d9f5SThomas Kuehne { 0x8e, 0, "MagneticStripeReader" },
27945465d9f5SThomas Kuehne { 0x8e, 0x0001, "MSRDeviceReadOnly" },
27955465d9f5SThomas Kuehne { 0x8e, 0x0011, "Track1Length" },
27965465d9f5SThomas Kuehne { 0x8e, 0x0012, "Track2Length" },
27975465d9f5SThomas Kuehne { 0x8e, 0x0013, "Track3Length" },
27985465d9f5SThomas Kuehne { 0x8e, 0x0014, "TrackJISLength" },
27995465d9f5SThomas Kuehne { 0x8e, 0x0020, "TrackData" },
28005465d9f5SThomas Kuehne { 0x8e, 0x0021, "Track1Data" },
28015465d9f5SThomas Kuehne { 0x8e, 0x0022, "Track2Data" },
28025465d9f5SThomas Kuehne { 0x8e, 0x0023, "Track3Data" },
28035465d9f5SThomas Kuehne { 0x8e, 0x0024, "TrackJISData" },
28045465d9f5SThomas Kuehne { 0x90, 0, "CameraControl" },
28055465d9f5SThomas Kuehne { 0x90, 0x0020, "CameraAutofocus" },
28065465d9f5SThomas Kuehne { 0x90, 0x0021, "CameraShutter" },
28075465d9f5SThomas Kuehne { 0x91, 0, "Arcade" },
28085465d9f5SThomas Kuehne { 0x91, 0x0001, "GeneralPurposeIOCard" },
28095465d9f5SThomas Kuehne { 0x91, 0x0002, "CoinDoor" },
28105465d9f5SThomas Kuehne { 0x91, 0x0003, "WatchdogTimer" },
28115465d9f5SThomas Kuehne { 0x91, 0x0030, "GeneralPurposeAnalogInputState" },
28125465d9f5SThomas Kuehne { 0x91, 0x0031, "GeneralPurposeDigitalInputState" },
28135465d9f5SThomas Kuehne { 0x91, 0x0032, "GeneralPurposeOpticalInputState" },
28145465d9f5SThomas Kuehne { 0x91, 0x0033, "GeneralPurposeDigitalOutputState" },
28155465d9f5SThomas Kuehne { 0x91, 0x0034, "NumberofCoinDoors" },
28165465d9f5SThomas Kuehne { 0x91, 0x0035, "CoinDrawerDropCount" },
28175465d9f5SThomas Kuehne { 0x91, 0x0036, "CoinDrawerStart" },
28185465d9f5SThomas Kuehne { 0x91, 0x0037, "CoinDrawerService" },
28195465d9f5SThomas Kuehne { 0x91, 0x0038, "CoinDrawerTilt" },
28205465d9f5SThomas Kuehne { 0x91, 0x0039, "CoinDoorTest" },
28215465d9f5SThomas Kuehne { 0x91, 0x0040, "CoinDoorLockout" },
28225465d9f5SThomas Kuehne { 0x91, 0x0041, "WatchdogTimeout" },
28235465d9f5SThomas Kuehne { 0x91, 0x0042, "WatchdogAction" },
28245465d9f5SThomas Kuehne { 0x91, 0x0043, "WatchdogReboot" },
28255465d9f5SThomas Kuehne { 0x91, 0x0044, "WatchdogRestart" },
28265465d9f5SThomas Kuehne { 0x91, 0x0045, "AlarmInput" },
28275465d9f5SThomas Kuehne { 0x91, 0x0046, "CoinDoorCounter" },
28285465d9f5SThomas Kuehne { 0x91, 0x0047, "IODirectionMapping" },
28295465d9f5SThomas Kuehne { 0x91, 0x0048, "SetIODirectionMapping" },
28305465d9f5SThomas Kuehne { 0x91, 0x0049, "ExtendedOpticalInputState" },
28315465d9f5SThomas Kuehne { 0x91, 0x004a, "PinPadInputState" },
28325465d9f5SThomas Kuehne { 0x91, 0x004b, "PinPadStatus" },
28335465d9f5SThomas Kuehne { 0x91, 0x004c, "PinPadOutput" },
28345465d9f5SThomas Kuehne { 0x91, 0x004d, "PinPadCommand" },
28355465d9f5SThomas Kuehne { 0xf1d0, 0, "FIDOAlliance" },
28365465d9f5SThomas Kuehne { 0xf1d0, 0x0001, "U2FAuthenticatorDevice" },
28375465d9f5SThomas Kuehne { 0xf1d0, 0x0020, "InputReportData" },
28385465d9f5SThomas Kuehne { 0xf1d0, 0x0021, "OutputReportData" },
2839c080d89aSJiri Kosina /* pages 0xff00 to 0xffff are vendor-specific */
2840c080d89aSJiri Kosina { 0xffff, 0, "Vendor-specific-FF" },
2841c080d89aSJiri Kosina { 0, 0, NULL }
2842c080d89aSJiri Kosina };
2843c080d89aSJiri Kosina
2844cd667ce2SJiri Kosina /* Either output directly into simple seq_file, or (if f == NULL)
2845cd667ce2SJiri Kosina * allocate a separate buffer that will then be passed to the 'events'
2846cd667ce2SJiri Kosina * ringbuffer.
2847cd667ce2SJiri Kosina *
2848cd667ce2SJiri Kosina * This is because these functions can be called both for "one-shot"
2849cd667ce2SJiri Kosina * "rdesc" while resolving, or for blocking "events".
2850cd667ce2SJiri Kosina *
2851cd667ce2SJiri Kosina * This holds both for resolv_usage_page() and hid_resolv_usage().
2852cd667ce2SJiri Kosina */
resolv_usage_page(unsigned page,struct seq_file * f)2853cd667ce2SJiri Kosina static char *resolv_usage_page(unsigned page, struct seq_file *f) {
2854c080d89aSJiri Kosina const struct hid_usage_entry *p;
2855cd667ce2SJiri Kosina char *buf = NULL;
2856cd667ce2SJiri Kosina
2857cd667ce2SJiri Kosina if (!f) {
28586396bb22SKees Cook buf = kzalloc(HID_DEBUG_BUFSIZE, GFP_ATOMIC);
2859cd667ce2SJiri Kosina if (!buf)
2860cd667ce2SJiri Kosina return ERR_PTR(-ENOMEM);
2861cd667ce2SJiri Kosina }
2862c080d89aSJiri Kosina
2863c080d89aSJiri Kosina for (p = hid_usage_table; p->description; p++)
2864c080d89aSJiri Kosina if (p->page == page) {
2865cd667ce2SJiri Kosina if (!f) {
2866cd667ce2SJiri Kosina snprintf(buf, HID_DEBUG_BUFSIZE, "%s",
2867cd667ce2SJiri Kosina p->description);
2868cd667ce2SJiri Kosina return buf;
2869c080d89aSJiri Kosina }
2870cd667ce2SJiri Kosina else {
2871a635f9ddSJiri Kosina seq_printf(f, "%s", p->description);
2872cd667ce2SJiri Kosina return NULL;
2873cd667ce2SJiri Kosina }
2874c080d89aSJiri Kosina }
2875a635f9ddSJiri Kosina if (!f)
2876cd667ce2SJiri Kosina snprintf(buf, HID_DEBUG_BUFSIZE, "%04x", page);
2877a635f9ddSJiri Kosina else
2878a635f9ddSJiri Kosina seq_printf(f, "%04x", page);
2879cd667ce2SJiri Kosina return buf;
2880c080d89aSJiri Kosina }
2881c080d89aSJiri Kosina
hid_resolv_usage(unsigned usage,struct seq_file * f)2882cd667ce2SJiri Kosina char *hid_resolv_usage(unsigned usage, struct seq_file *f) {
2883c080d89aSJiri Kosina const struct hid_usage_entry *p;
28845465d9f5SThomas Kuehne const struct hid_usage_entry *m;
2885cd667ce2SJiri Kosina char *buf = NULL;
2886cd667ce2SJiri Kosina int len = 0;
28875465d9f5SThomas Kuehne const char *modifier = NULL;
28885465d9f5SThomas Kuehne unsigned int usage_modifier = usage & 0xF000;
28895465d9f5SThomas Kuehne unsigned int usage_actual = usage & 0xFFFF;
2890c080d89aSJiri Kosina
2891cd667ce2SJiri Kosina buf = resolv_usage_page(usage >> 16, f);
2892cd667ce2SJiri Kosina if (IS_ERR(buf)) {
28934291ee30SJoe Perches pr_err("error allocating HID debug buffer\n");
2894cd667ce2SJiri Kosina return NULL;
2895cd667ce2SJiri Kosina }
289658037eb9SJiri Kosina
2897cd667ce2SJiri Kosina
2898cd667ce2SJiri Kosina if (!f) {
2899cd667ce2SJiri Kosina len = strlen(buf);
2900a68f3bd1SDan Carpenter len += scnprintf(buf + len, HID_DEBUG_BUFSIZE - len, ".");
2901cd667ce2SJiri Kosina }
2902cd667ce2SJiri Kosina else {
2903a635f9ddSJiri Kosina seq_printf(f, ".");
2904cd667ce2SJiri Kosina }
2905c080d89aSJiri Kosina for (p = hid_usage_table; p->description; p++)
2906c080d89aSJiri Kosina if (p->page == (usage >> 16)) {
29075465d9f5SThomas Kuehne if (p->page == 0x20 && usage_modifier) {
29085465d9f5SThomas Kuehne for (m = p; m->description; m++) {
29095465d9f5SThomas Kuehne if (p->page == m->page && m->usage
29105465d9f5SThomas Kuehne == usage_modifier) {
29115465d9f5SThomas Kuehne modifier = m->description;
29125465d9f5SThomas Kuehne break;
29135465d9f5SThomas Kuehne }
29145465d9f5SThomas Kuehne }
29155465d9f5SThomas Kuehne if (modifier)
29165465d9f5SThomas Kuehne usage_actual = usage_actual & 0x0FFF;
29175465d9f5SThomas Kuehne }
29185465d9f5SThomas Kuehne
29195465d9f5SThomas Kuehne if (!modifier)
29205465d9f5SThomas Kuehne modifier = "";
29215465d9f5SThomas Kuehne
2922c080d89aSJiri Kosina for(++p; p->description && p->usage != 0; p++)
29235465d9f5SThomas Kuehne if (p->usage == usage_actual) {
2924a635f9ddSJiri Kosina if (!f)
2925cd667ce2SJiri Kosina snprintf(buf + len,
2926a68f3bd1SDan Carpenter HID_DEBUG_BUFSIZE - len,
29275465d9f5SThomas Kuehne "%s%s", p->description,
29285465d9f5SThomas Kuehne modifier);
2929a635f9ddSJiri Kosina else
2930a635f9ddSJiri Kosina seq_printf(f,
29315465d9f5SThomas Kuehne "%s%s",
29325465d9f5SThomas Kuehne p->description,
29335465d9f5SThomas Kuehne modifier);
2934cd667ce2SJiri Kosina return buf;
2935c080d89aSJiri Kosina }
2936c080d89aSJiri Kosina break;
2937c080d89aSJiri Kosina }
2938a635f9ddSJiri Kosina if (!f)
2939a68f3bd1SDan Carpenter snprintf(buf + len, HID_DEBUG_BUFSIZE - len, "%04x",
2940a68f3bd1SDan Carpenter usage & 0xffff);
2941a635f9ddSJiri Kosina else
2942a635f9ddSJiri Kosina seq_printf(f, "%04x", usage & 0xffff);
2943cd667ce2SJiri Kosina return buf;
2944c080d89aSJiri Kosina }
2945c080d89aSJiri Kosina EXPORT_SYMBOL_GPL(hid_resolv_usage);
2946c080d89aSJiri Kosina
tab(int n,struct seq_file * f)2947a635f9ddSJiri Kosina static void tab(int n, struct seq_file *f) {
2948a635f9ddSJiri Kosina seq_printf(f, "%*s", n, "");
2949c080d89aSJiri Kosina }
2950c080d89aSJiri Kosina
hid_dump_field(struct hid_field * field,int n,struct seq_file * f)2951a635f9ddSJiri Kosina void hid_dump_field(struct hid_field *field, int n, struct seq_file *f) {
2952c080d89aSJiri Kosina int j;
2953c080d89aSJiri Kosina
2954c080d89aSJiri Kosina if (field->physical) {
2955a635f9ddSJiri Kosina tab(n, f);
2956a635f9ddSJiri Kosina seq_printf(f, "Physical(");
2957a635f9ddSJiri Kosina hid_resolv_usage(field->physical, f); seq_printf(f, ")\n");
2958c080d89aSJiri Kosina }
2959c080d89aSJiri Kosina if (field->logical) {
2960a635f9ddSJiri Kosina tab(n, f);
2961a635f9ddSJiri Kosina seq_printf(f, "Logical(");
2962a635f9ddSJiri Kosina hid_resolv_usage(field->logical, f); seq_printf(f, ")\n");
2963c080d89aSJiri Kosina }
296454d3339aSJeff Brown if (field->application) {
296554d3339aSJeff Brown tab(n, f);
296654d3339aSJeff Brown seq_printf(f, "Application(");
296754d3339aSJeff Brown hid_resolv_usage(field->application, f); seq_printf(f, ")\n");
296854d3339aSJeff Brown }
2969a635f9ddSJiri Kosina tab(n, f); seq_printf(f, "Usage(%d)\n", field->maxusage);
2970c080d89aSJiri Kosina for (j = 0; j < field->maxusage; j++) {
2971a635f9ddSJiri Kosina tab(n+2, f); hid_resolv_usage(field->usage[j].hid, f); seq_printf(f, "\n");
2972c080d89aSJiri Kosina }
2973c080d89aSJiri Kosina if (field->logical_minimum != field->logical_maximum) {
2974a635f9ddSJiri Kosina tab(n, f); seq_printf(f, "Logical Minimum(%d)\n", field->logical_minimum);
2975a635f9ddSJiri Kosina tab(n, f); seq_printf(f, "Logical Maximum(%d)\n", field->logical_maximum);
2976c080d89aSJiri Kosina }
2977c080d89aSJiri Kosina if (field->physical_minimum != field->physical_maximum) {
2978a635f9ddSJiri Kosina tab(n, f); seq_printf(f, "Physical Minimum(%d)\n", field->physical_minimum);
2979a635f9ddSJiri Kosina tab(n, f); seq_printf(f, "Physical Maximum(%d)\n", field->physical_maximum);
2980c080d89aSJiri Kosina }
2981c080d89aSJiri Kosina if (field->unit_exponent) {
2982a635f9ddSJiri Kosina tab(n, f); seq_printf(f, "Unit Exponent(%d)\n", field->unit_exponent);
2983c080d89aSJiri Kosina }
2984c080d89aSJiri Kosina if (field->unit) {
29850ce1ac3bSJoe Perches static const char *systems[5] = { "None", "SI Linear", "SI Rotation", "English Linear", "English Rotation" };
29860ce1ac3bSJoe Perches static const char *units[5][8] = {
2987c080d89aSJiri Kosina { "None", "None", "None", "None", "None", "None", "None", "None" },
2988c080d89aSJiri Kosina { "None", "Centimeter", "Gram", "Seconds", "Kelvin", "Ampere", "Candela", "None" },
2989c080d89aSJiri Kosina { "None", "Radians", "Gram", "Seconds", "Kelvin", "Ampere", "Candela", "None" },
2990c080d89aSJiri Kosina { "None", "Inch", "Slug", "Seconds", "Fahrenheit", "Ampere", "Candela", "None" },
2991c080d89aSJiri Kosina { "None", "Degrees", "Slug", "Seconds", "Fahrenheit", "Ampere", "Candela", "None" }
2992c080d89aSJiri Kosina };
2993c080d89aSJiri Kosina
2994c080d89aSJiri Kosina int i;
2995c080d89aSJiri Kosina int sys;
2996c080d89aSJiri Kosina __u32 data = field->unit;
2997c080d89aSJiri Kosina
2998c080d89aSJiri Kosina /* First nibble tells us which system we're in. */
2999c080d89aSJiri Kosina sys = data & 0xf;
3000c080d89aSJiri Kosina data >>= 4;
3001c080d89aSJiri Kosina
3002c080d89aSJiri Kosina if(sys > 4) {
3003a635f9ddSJiri Kosina tab(n, f); seq_printf(f, "Unit(Invalid)\n");
3004c080d89aSJiri Kosina }
3005c080d89aSJiri Kosina else {
3006c080d89aSJiri Kosina int earlier_unit = 0;
3007c080d89aSJiri Kosina
3008a635f9ddSJiri Kosina tab(n, f); seq_printf(f, "Unit(%s : ", systems[sys]);
3009c080d89aSJiri Kosina
3010c080d89aSJiri Kosina for (i=1 ; i<sizeof(__u32)*2 ; i++) {
3011c080d89aSJiri Kosina char nibble = data & 0xf;
3012c080d89aSJiri Kosina data >>= 4;
3013c080d89aSJiri Kosina if (nibble != 0) {
3014c080d89aSJiri Kosina if(earlier_unit++ > 0)
3015a635f9ddSJiri Kosina seq_printf(f, "*");
3016a635f9ddSJiri Kosina seq_printf(f, "%s", units[sys][i]);
3017c080d89aSJiri Kosina if(nibble != 1) {
3018c080d89aSJiri Kosina /* This is a _signed_ nibble(!) */
3019c080d89aSJiri Kosina
3020c080d89aSJiri Kosina int val = nibble & 0x7;
3021c080d89aSJiri Kosina if(nibble & 0x08)
3022c080d89aSJiri Kosina val = -((0x7 & ~val) +1);
3023a635f9ddSJiri Kosina seq_printf(f, "^%d", val);
3024c080d89aSJiri Kosina }
3025c080d89aSJiri Kosina }
3026c080d89aSJiri Kosina }
3027a635f9ddSJiri Kosina seq_printf(f, ")\n");
3028c080d89aSJiri Kosina }
3029c080d89aSJiri Kosina }
3030a635f9ddSJiri Kosina tab(n, f); seq_printf(f, "Report Size(%u)\n", field->report_size);
3031a635f9ddSJiri Kosina tab(n, f); seq_printf(f, "Report Count(%u)\n", field->report_count);
3032a635f9ddSJiri Kosina tab(n, f); seq_printf(f, "Report Offset(%u)\n", field->report_offset);
3033c080d89aSJiri Kosina
3034a635f9ddSJiri Kosina tab(n, f); seq_printf(f, "Flags( ");
3035c080d89aSJiri Kosina j = field->flags;
3036a635f9ddSJiri Kosina seq_printf(f, "%s", HID_MAIN_ITEM_CONSTANT & j ? "Constant " : "");
3037a635f9ddSJiri Kosina seq_printf(f, "%s", HID_MAIN_ITEM_VARIABLE & j ? "Variable " : "Array ");
3038a635f9ddSJiri Kosina seq_printf(f, "%s", HID_MAIN_ITEM_RELATIVE & j ? "Relative " : "Absolute ");
3039a635f9ddSJiri Kosina seq_printf(f, "%s", HID_MAIN_ITEM_WRAP & j ? "Wrap " : "");
3040a635f9ddSJiri Kosina seq_printf(f, "%s", HID_MAIN_ITEM_NONLINEAR & j ? "NonLinear " : "");
3041a635f9ddSJiri Kosina seq_printf(f, "%s", HID_MAIN_ITEM_NO_PREFERRED & j ? "NoPreferredState " : "");
3042a635f9ddSJiri Kosina seq_printf(f, "%s", HID_MAIN_ITEM_NULL_STATE & j ? "NullState " : "");
3043a635f9ddSJiri Kosina seq_printf(f, "%s", HID_MAIN_ITEM_VOLATILE & j ? "Volatile " : "");
3044a635f9ddSJiri Kosina seq_printf(f, "%s", HID_MAIN_ITEM_BUFFERED_BYTE & j ? "BufferedByte " : "");
3045a635f9ddSJiri Kosina seq_printf(f, ")\n");
3046c080d89aSJiri Kosina }
3047c080d89aSJiri Kosina EXPORT_SYMBOL_GPL(hid_dump_field);
3048c080d89aSJiri Kosina
hid_dump_device(struct hid_device * device,struct seq_file * f)3049a635f9ddSJiri Kosina void hid_dump_device(struct hid_device *device, struct seq_file *f)
3050a635f9ddSJiri Kosina {
3051c080d89aSJiri Kosina struct hid_report_enum *report_enum;
3052c080d89aSJiri Kosina struct hid_report *report;
3053c080d89aSJiri Kosina struct list_head *list;
3054c080d89aSJiri Kosina unsigned i,k;
30550ce1ac3bSJoe Perches static const char *table[] = {"INPUT", "OUTPUT", "FEATURE"};
3056c080d89aSJiri Kosina
3057c080d89aSJiri Kosina for (i = 0; i < HID_REPORT_TYPES; i++) {
3058c080d89aSJiri Kosina report_enum = device->report_enum + i;
3059c080d89aSJiri Kosina list = report_enum->report_list.next;
3060c080d89aSJiri Kosina while (list != &report_enum->report_list) {
3061c080d89aSJiri Kosina report = (struct hid_report *) list;
3062a635f9ddSJiri Kosina tab(2, f);
3063a635f9ddSJiri Kosina seq_printf(f, "%s", table[i]);
3064c080d89aSJiri Kosina if (report->id)
3065a635f9ddSJiri Kosina seq_printf(f, "(%d)", report->id);
3066a635f9ddSJiri Kosina seq_printf(f, "[%s]", table[report->type]);
3067a635f9ddSJiri Kosina seq_printf(f, "\n");
3068c080d89aSJiri Kosina for (k = 0; k < report->maxfield; k++) {
3069a635f9ddSJiri Kosina tab(4, f);
3070a635f9ddSJiri Kosina seq_printf(f, "Field(%d)\n", k);
3071a635f9ddSJiri Kosina hid_dump_field(report->field[k], 6, f);
3072c080d89aSJiri Kosina }
3073c080d89aSJiri Kosina list = list->next;
3074c080d89aSJiri Kosina }
3075c080d89aSJiri Kosina }
3076c080d89aSJiri Kosina }
3077c080d89aSJiri Kosina EXPORT_SYMBOL_GPL(hid_dump_device);
3078c080d89aSJiri Kosina
3079cd667ce2SJiri Kosina /* enqueue string to 'events' ring buffer */
hid_debug_event(struct hid_device * hdev,char * buf)3080cd667ce2SJiri Kosina void hid_debug_event(struct hid_device *hdev, char *buf)
3081cd667ce2SJiri Kosina {
3082cd667ce2SJiri Kosina struct hid_debug_list *list;
30831deb9d34SJiri Kosina unsigned long flags;
308458037eb9SJiri Kosina
30851deb9d34SJiri Kosina spin_lock_irqsave(&hdev->debug_list_lock, flags);
308613054abbSVladis Dronov list_for_each_entry(list, &hdev->debug_list, node)
308713054abbSVladis Dronov kfifo_in(&list->hid_debug_fifo, buf, strlen(buf));
30881deb9d34SJiri Kosina spin_unlock_irqrestore(&hdev->debug_list_lock, flags);
30891debfb33SChase Douglas
30901debfb33SChase Douglas wake_up_interruptible(&hdev->debug_wait);
3091cd667ce2SJiri Kosina }
3092cd667ce2SJiri Kosina EXPORT_SYMBOL_GPL(hid_debug_event);
3093cd667ce2SJiri Kosina
hid_dump_report(struct hid_device * hid,int type,u8 * data,int size)3094a5f04b9dSBenjamin Tissoires void hid_dump_report(struct hid_device *hid, int type, u8 *data,
3095a5f04b9dSBenjamin Tissoires int size)
3096a5f04b9dSBenjamin Tissoires {
3097a5f04b9dSBenjamin Tissoires struct hid_report_enum *report_enum;
3098a5f04b9dSBenjamin Tissoires char *buf;
3099a5f04b9dSBenjamin Tissoires unsigned int i;
3100a5f04b9dSBenjamin Tissoires
31016da2ec56SKees Cook buf = kmalloc(HID_DEBUG_BUFSIZE, GFP_ATOMIC);
3102a5f04b9dSBenjamin Tissoires
3103a5f04b9dSBenjamin Tissoires if (!buf)
3104a5f04b9dSBenjamin Tissoires return;
3105a5f04b9dSBenjamin Tissoires
3106a5f04b9dSBenjamin Tissoires report_enum = hid->report_enum + type;
3107a5f04b9dSBenjamin Tissoires
3108a5f04b9dSBenjamin Tissoires /* dump the report */
3109a5f04b9dSBenjamin Tissoires snprintf(buf, HID_DEBUG_BUFSIZE - 1,
3110a5f04b9dSBenjamin Tissoires "\nreport (size %u) (%snumbered) = ", size,
3111a5f04b9dSBenjamin Tissoires report_enum->numbered ? "" : "un");
3112a5f04b9dSBenjamin Tissoires hid_debug_event(hid, buf);
3113a5f04b9dSBenjamin Tissoires
3114a5f04b9dSBenjamin Tissoires for (i = 0; i < size; i++) {
3115a5f04b9dSBenjamin Tissoires snprintf(buf, HID_DEBUG_BUFSIZE - 1,
3116a5f04b9dSBenjamin Tissoires " %02x", data[i]);
3117a5f04b9dSBenjamin Tissoires hid_debug_event(hid, buf);
3118a5f04b9dSBenjamin Tissoires }
3119a5f04b9dSBenjamin Tissoires hid_debug_event(hid, "\n");
3120a5f04b9dSBenjamin Tissoires kfree(buf);
3121a5f04b9dSBenjamin Tissoires }
3122a5f04b9dSBenjamin Tissoires EXPORT_SYMBOL_GPL(hid_dump_report);
3123a5f04b9dSBenjamin Tissoires
hid_dump_input(struct hid_device * hdev,struct hid_usage * usage,__s32 value)3124cd667ce2SJiri Kosina void hid_dump_input(struct hid_device *hdev, struct hid_usage *usage, __s32 value)
3125cd667ce2SJiri Kosina {
3126cd667ce2SJiri Kosina char *buf;
3127cd667ce2SJiri Kosina int len;
3128cd667ce2SJiri Kosina
3129cd667ce2SJiri Kosina buf = hid_resolv_usage(usage->hid, NULL);
3130cd667ce2SJiri Kosina if (!buf)
3131cd667ce2SJiri Kosina return;
3132cd667ce2SJiri Kosina len = strlen(buf);
3133cd667ce2SJiri Kosina snprintf(buf + len, HID_DEBUG_BUFSIZE - len - 1, " = %d\n", value);
3134cd667ce2SJiri Kosina
3135cd667ce2SJiri Kosina hid_debug_event(hdev, buf);
3136cd667ce2SJiri Kosina
3137cd667ce2SJiri Kosina kfree(buf);
3138cd667ce2SJiri Kosina wake_up_interruptible(&hdev->debug_wait);
3139c080d89aSJiri Kosina }
3140c080d89aSJiri Kosina EXPORT_SYMBOL_GPL(hid_dump_input);
3141c080d89aSJiri Kosina
31420ce1ac3bSJoe Perches static const char *events[EV_MAX + 1] = {
3143c080d89aSJiri Kosina [EV_SYN] = "Sync", [EV_KEY] = "Key",
3144c080d89aSJiri Kosina [EV_REL] = "Relative", [EV_ABS] = "Absolute",
3145c080d89aSJiri Kosina [EV_MSC] = "Misc", [EV_LED] = "LED",
3146c080d89aSJiri Kosina [EV_SND] = "Sound", [EV_REP] = "Repeat",
3147c080d89aSJiri Kosina [EV_FF] = "ForceFeedback", [EV_PWR] = "Power",
31485465d9f5SThomas Kuehne [EV_FF_STATUS] = "ForceFeedbackStatus", [EV_SW] = "Software",
3149c080d89aSJiri Kosina };
3150c080d89aSJiri Kosina
31515465d9f5SThomas Kuehne static const char *syncs[SYN_CNT] = {
3152c080d89aSJiri Kosina [SYN_REPORT] = "Report", [SYN_CONFIG] = "Config",
31535465d9f5SThomas Kuehne [SYN_MT_REPORT] = "MT Report", [SYN_DROPPED] = "Dropped",
3154c080d89aSJiri Kosina };
315589f536ccSStephane Chatty
31560ce1ac3bSJoe Perches static const char *keys[KEY_MAX + 1] = {
3157c080d89aSJiri Kosina [KEY_RESERVED] = "Reserved", [KEY_ESC] = "Esc",
3158c080d89aSJiri Kosina [KEY_1] = "1", [KEY_2] = "2",
3159c080d89aSJiri Kosina [KEY_3] = "3", [KEY_4] = "4",
3160c080d89aSJiri Kosina [KEY_5] = "5", [KEY_6] = "6",
3161c080d89aSJiri Kosina [KEY_7] = "7", [KEY_8] = "8",
3162c080d89aSJiri Kosina [KEY_9] = "9", [KEY_0] = "0",
3163c080d89aSJiri Kosina [KEY_MINUS] = "Minus", [KEY_EQUAL] = "Equal",
3164c080d89aSJiri Kosina [KEY_BACKSPACE] = "Backspace", [KEY_TAB] = "Tab",
3165c080d89aSJiri Kosina [KEY_Q] = "Q", [KEY_W] = "W",
3166c080d89aSJiri Kosina [KEY_E] = "E", [KEY_R] = "R",
3167c080d89aSJiri Kosina [KEY_T] = "T", [KEY_Y] = "Y",
3168c080d89aSJiri Kosina [KEY_U] = "U", [KEY_I] = "I",
3169c080d89aSJiri Kosina [KEY_O] = "O", [KEY_P] = "P",
3170c080d89aSJiri Kosina [KEY_LEFTBRACE] = "LeftBrace", [KEY_RIGHTBRACE] = "RightBrace",
3171c080d89aSJiri Kosina [KEY_ENTER] = "Enter", [KEY_LEFTCTRL] = "LeftControl",
3172c080d89aSJiri Kosina [KEY_A] = "A", [KEY_S] = "S",
3173c080d89aSJiri Kosina [KEY_D] = "D", [KEY_F] = "F",
3174c080d89aSJiri Kosina [KEY_G] = "G", [KEY_H] = "H",
3175c080d89aSJiri Kosina [KEY_J] = "J", [KEY_K] = "K",
3176c080d89aSJiri Kosina [KEY_L] = "L", [KEY_SEMICOLON] = "Semicolon",
3177c080d89aSJiri Kosina [KEY_APOSTROPHE] = "Apostrophe", [KEY_GRAVE] = "Grave",
3178c080d89aSJiri Kosina [KEY_LEFTSHIFT] = "LeftShift", [KEY_BACKSLASH] = "BackSlash",
3179c080d89aSJiri Kosina [KEY_Z] = "Z", [KEY_X] = "X",
3180c080d89aSJiri Kosina [KEY_C] = "C", [KEY_V] = "V",
3181c080d89aSJiri Kosina [KEY_B] = "B", [KEY_N] = "N",
3182c080d89aSJiri Kosina [KEY_M] = "M", [KEY_COMMA] = "Comma",
3183c080d89aSJiri Kosina [KEY_DOT] = "Dot", [KEY_SLASH] = "Slash",
3184c080d89aSJiri Kosina [KEY_RIGHTSHIFT] = "RightShift", [KEY_KPASTERISK] = "KPAsterisk",
3185c080d89aSJiri Kosina [KEY_LEFTALT] = "LeftAlt", [KEY_SPACE] = "Space",
3186c080d89aSJiri Kosina [KEY_CAPSLOCK] = "CapsLock", [KEY_F1] = "F1",
3187c080d89aSJiri Kosina [KEY_F2] = "F2", [KEY_F3] = "F3",
3188c080d89aSJiri Kosina [KEY_F4] = "F4", [KEY_F5] = "F5",
3189c080d89aSJiri Kosina [KEY_F6] = "F6", [KEY_F7] = "F7",
3190c080d89aSJiri Kosina [KEY_F8] = "F8", [KEY_F9] = "F9",
3191c080d89aSJiri Kosina [KEY_F10] = "F10", [KEY_NUMLOCK] = "NumLock",
3192c080d89aSJiri Kosina [KEY_SCROLLLOCK] = "ScrollLock", [KEY_KP7] = "KP7",
3193c080d89aSJiri Kosina [KEY_KP8] = "KP8", [KEY_KP9] = "KP9",
3194c080d89aSJiri Kosina [KEY_KPMINUS] = "KPMinus", [KEY_KP4] = "KP4",
3195c080d89aSJiri Kosina [KEY_KP5] = "KP5", [KEY_KP6] = "KP6",
3196c080d89aSJiri Kosina [KEY_KPPLUS] = "KPPlus", [KEY_KP1] = "KP1",
3197c080d89aSJiri Kosina [KEY_KP2] = "KP2", [KEY_KP3] = "KP3",
3198c080d89aSJiri Kosina [KEY_KP0] = "KP0", [KEY_KPDOT] = "KPDot",
3199c080d89aSJiri Kosina [KEY_ZENKAKUHANKAKU] = "Zenkaku/Hankaku", [KEY_102ND] = "102nd",
3200c080d89aSJiri Kosina [KEY_F11] = "F11", [KEY_F12] = "F12",
3201c080d89aSJiri Kosina [KEY_RO] = "RO", [KEY_KATAKANA] = "Katakana",
3202c080d89aSJiri Kosina [KEY_HIRAGANA] = "HIRAGANA", [KEY_HENKAN] = "Henkan",
3203c080d89aSJiri Kosina [KEY_KATAKANAHIRAGANA] = "Katakana/Hiragana", [KEY_MUHENKAN] = "Muhenkan",
3204c080d89aSJiri Kosina [KEY_KPJPCOMMA] = "KPJpComma", [KEY_KPENTER] = "KPEnter",
3205c080d89aSJiri Kosina [KEY_RIGHTCTRL] = "RightCtrl", [KEY_KPSLASH] = "KPSlash",
3206c080d89aSJiri Kosina [KEY_SYSRQ] = "SysRq", [KEY_RIGHTALT] = "RightAlt",
3207c080d89aSJiri Kosina [KEY_LINEFEED] = "LineFeed", [KEY_HOME] = "Home",
3208c080d89aSJiri Kosina [KEY_UP] = "Up", [KEY_PAGEUP] = "PageUp",
3209c080d89aSJiri Kosina [KEY_LEFT] = "Left", [KEY_RIGHT] = "Right",
3210c080d89aSJiri Kosina [KEY_END] = "End", [KEY_DOWN] = "Down",
3211c080d89aSJiri Kosina [KEY_PAGEDOWN] = "PageDown", [KEY_INSERT] = "Insert",
3212c080d89aSJiri Kosina [KEY_DELETE] = "Delete", [KEY_MACRO] = "Macro",
3213c080d89aSJiri Kosina [KEY_MUTE] = "Mute", [KEY_VOLUMEDOWN] = "VolumeDown",
3214c080d89aSJiri Kosina [KEY_VOLUMEUP] = "VolumeUp", [KEY_POWER] = "Power",
3215c080d89aSJiri Kosina [KEY_KPEQUAL] = "KPEqual", [KEY_KPPLUSMINUS] = "KPPlusMinus",
3216c080d89aSJiri Kosina [KEY_PAUSE] = "Pause", [KEY_KPCOMMA] = "KPComma",
3217c080d89aSJiri Kosina [KEY_HANGUEL] = "Hangeul", [KEY_HANJA] = "Hanja",
3218c080d89aSJiri Kosina [KEY_YEN] = "Yen", [KEY_LEFTMETA] = "LeftMeta",
3219c080d89aSJiri Kosina [KEY_RIGHTMETA] = "RightMeta", [KEY_COMPOSE] = "Compose",
3220c080d89aSJiri Kosina [KEY_STOP] = "Stop", [KEY_AGAIN] = "Again",
3221c080d89aSJiri Kosina [KEY_PROPS] = "Props", [KEY_UNDO] = "Undo",
3222c080d89aSJiri Kosina [KEY_FRONT] = "Front", [KEY_COPY] = "Copy",
3223c080d89aSJiri Kosina [KEY_OPEN] = "Open", [KEY_PASTE] = "Paste",
3224c080d89aSJiri Kosina [KEY_FIND] = "Find", [KEY_CUT] = "Cut",
3225c080d89aSJiri Kosina [KEY_HELP] = "Help", [KEY_MENU] = "Menu",
3226c080d89aSJiri Kosina [KEY_CALC] = "Calc", [KEY_SETUP] = "Setup",
3227c080d89aSJiri Kosina [KEY_SLEEP] = "Sleep", [KEY_WAKEUP] = "WakeUp",
3228c080d89aSJiri Kosina [KEY_FILE] = "File", [KEY_SENDFILE] = "SendFile",
3229c080d89aSJiri Kosina [KEY_DELETEFILE] = "DeleteFile", [KEY_XFER] = "X-fer",
3230c080d89aSJiri Kosina [KEY_PROG1] = "Prog1", [KEY_PROG2] = "Prog2",
3231c080d89aSJiri Kosina [KEY_WWW] = "WWW", [KEY_MSDOS] = "MSDOS",
3232e92865edSStefan Brüns [KEY_COFFEE] = "Coffee", [KEY_ROTATE_DISPLAY] = "RotateDisplay",
3233c080d89aSJiri Kosina [KEY_CYCLEWINDOWS] = "CycleWindows", [KEY_MAIL] = "Mail",
3234c080d89aSJiri Kosina [KEY_BOOKMARKS] = "Bookmarks", [KEY_COMPUTER] = "Computer",
3235c080d89aSJiri Kosina [KEY_BACK] = "Back", [KEY_FORWARD] = "Forward",
3236c080d89aSJiri Kosina [KEY_CLOSECD] = "CloseCD", [KEY_EJECTCD] = "EjectCD",
3237c080d89aSJiri Kosina [KEY_EJECTCLOSECD] = "EjectCloseCD", [KEY_NEXTSONG] = "NextSong",
3238c080d89aSJiri Kosina [KEY_PLAYPAUSE] = "PlayPause", [KEY_PREVIOUSSONG] = "PreviousSong",
3239c080d89aSJiri Kosina [KEY_STOPCD] = "StopCD", [KEY_RECORD] = "Record",
3240c080d89aSJiri Kosina [KEY_REWIND] = "Rewind", [KEY_PHONE] = "Phone",
3241c080d89aSJiri Kosina [KEY_ISO] = "ISOKey", [KEY_CONFIG] = "Config",
3242c080d89aSJiri Kosina [KEY_HOMEPAGE] = "HomePage", [KEY_REFRESH] = "Refresh",
3243c080d89aSJiri Kosina [KEY_EXIT] = "Exit", [KEY_MOVE] = "Move",
3244c080d89aSJiri Kosina [KEY_EDIT] = "Edit", [KEY_SCROLLUP] = "ScrollUp",
3245c080d89aSJiri Kosina [KEY_SCROLLDOWN] = "ScrollDown", [KEY_KPLEFTPAREN] = "KPLeftParenthesis",
3246c080d89aSJiri Kosina [KEY_KPRIGHTPAREN] = "KPRightParenthesis", [KEY_NEW] = "New",
3247c080d89aSJiri Kosina [KEY_REDO] = "Redo", [KEY_F13] = "F13",
3248c080d89aSJiri Kosina [KEY_F14] = "F14", [KEY_F15] = "F15",
3249c080d89aSJiri Kosina [KEY_F16] = "F16", [KEY_F17] = "F17",
3250c080d89aSJiri Kosina [KEY_F18] = "F18", [KEY_F19] = "F19",
3251c080d89aSJiri Kosina [KEY_F20] = "F20", [KEY_F21] = "F21",
3252c080d89aSJiri Kosina [KEY_F22] = "F22", [KEY_F23] = "F23",
3253c080d89aSJiri Kosina [KEY_F24] = "F24", [KEY_PLAYCD] = "PlayCD",
3254c080d89aSJiri Kosina [KEY_PAUSECD] = "PauseCD", [KEY_PROG3] = "Prog3",
3255327b89f0SWilliam Mahon [KEY_PROG4] = "Prog4",
3256327b89f0SWilliam Mahon [KEY_ALL_APPLICATIONS] = "AllApplications",
3257327b89f0SWilliam Mahon [KEY_SUSPEND] = "Suspend",
3258c080d89aSJiri Kosina [KEY_CLOSE] = "Close", [KEY_PLAY] = "Play",
3259c080d89aSJiri Kosina [KEY_FASTFORWARD] = "FastForward", [KEY_BASSBOOST] = "BassBoost",
3260c080d89aSJiri Kosina [KEY_PRINT] = "Print", [KEY_HP] = "HP",
3261c080d89aSJiri Kosina [KEY_CAMERA] = "Camera", [KEY_SOUND] = "Sound",
3262c080d89aSJiri Kosina [KEY_QUESTION] = "Question", [KEY_EMAIL] = "Email",
3263c080d89aSJiri Kosina [KEY_CHAT] = "Chat", [KEY_SEARCH] = "Search",
3264c080d89aSJiri Kosina [KEY_CONNECT] = "Connect", [KEY_FINANCE] = "Finance",
3265c080d89aSJiri Kosina [KEY_SPORT] = "Sport", [KEY_SHOP] = "Shop",
3266c080d89aSJiri Kosina [KEY_ALTERASE] = "AlternateErase", [KEY_CANCEL] = "Cancel",
3267c080d89aSJiri Kosina [KEY_BRIGHTNESSDOWN] = "BrightnessDown", [KEY_BRIGHTNESSUP] = "BrightnessUp",
3268c080d89aSJiri Kosina [KEY_MEDIA] = "Media", [KEY_UNKNOWN] = "Unknown",
3269a443255cSAntonio Ospite [BTN_DPAD_UP] = "BtnDPadUp", [BTN_DPAD_DOWN] = "BtnDPadDown",
3270a443255cSAntonio Ospite [BTN_DPAD_LEFT] = "BtnDPadLeft", [BTN_DPAD_RIGHT] = "BtnDPadRight",
3271c080d89aSJiri Kosina [BTN_0] = "Btn0", [BTN_1] = "Btn1",
3272c080d89aSJiri Kosina [BTN_2] = "Btn2", [BTN_3] = "Btn3",
3273c080d89aSJiri Kosina [BTN_4] = "Btn4", [BTN_5] = "Btn5",
3274c080d89aSJiri Kosina [BTN_6] = "Btn6", [BTN_7] = "Btn7",
3275c080d89aSJiri Kosina [BTN_8] = "Btn8", [BTN_9] = "Btn9",
3276c080d89aSJiri Kosina [BTN_LEFT] = "LeftBtn", [BTN_RIGHT] = "RightBtn",
3277c080d89aSJiri Kosina [BTN_MIDDLE] = "MiddleBtn", [BTN_SIDE] = "SideBtn",
3278c080d89aSJiri Kosina [BTN_EXTRA] = "ExtraBtn", [BTN_FORWARD] = "ForwardBtn",
3279c080d89aSJiri Kosina [BTN_BACK] = "BackBtn", [BTN_TASK] = "TaskBtn",
3280c080d89aSJiri Kosina [BTN_TRIGGER] = "Trigger", [BTN_THUMB] = "ThumbBtn",
3281c080d89aSJiri Kosina [BTN_THUMB2] = "ThumbBtn2", [BTN_TOP] = "TopBtn",
3282c080d89aSJiri Kosina [BTN_TOP2] = "TopBtn2", [BTN_PINKIE] = "PinkieBtn",
3283c080d89aSJiri Kosina [BTN_BASE] = "BaseBtn", [BTN_BASE2] = "BaseBtn2",
3284c080d89aSJiri Kosina [BTN_BASE3] = "BaseBtn3", [BTN_BASE4] = "BaseBtn4",
3285c080d89aSJiri Kosina [BTN_BASE5] = "BaseBtn5", [BTN_BASE6] = "BaseBtn6",
3286c080d89aSJiri Kosina [BTN_DEAD] = "BtnDead", [BTN_A] = "BtnA",
3287c080d89aSJiri Kosina [BTN_B] = "BtnB", [BTN_C] = "BtnC",
3288c080d89aSJiri Kosina [BTN_X] = "BtnX", [BTN_Y] = "BtnY",
3289c080d89aSJiri Kosina [BTN_Z] = "BtnZ", [BTN_TL] = "BtnTL",
3290c080d89aSJiri Kosina [BTN_TR] = "BtnTR", [BTN_TL2] = "BtnTL2",
3291c080d89aSJiri Kosina [BTN_TR2] = "BtnTR2", [BTN_SELECT] = "BtnSelect",
3292c080d89aSJiri Kosina [BTN_START] = "BtnStart", [BTN_MODE] = "BtnMode",
3293c080d89aSJiri Kosina [BTN_THUMBL] = "BtnThumbL", [BTN_THUMBR] = "BtnThumbR",
3294c080d89aSJiri Kosina [BTN_TOOL_PEN] = "ToolPen", [BTN_TOOL_RUBBER] = "ToolRubber",
3295c080d89aSJiri Kosina [BTN_TOOL_BRUSH] = "ToolBrush", [BTN_TOOL_PENCIL] = "ToolPencil",
3296c080d89aSJiri Kosina [BTN_TOOL_AIRBRUSH] = "ToolAirbrush", [BTN_TOOL_FINGER] = "ToolFinger",
3297c080d89aSJiri Kosina [BTN_TOOL_MOUSE] = "ToolMouse", [BTN_TOOL_LENS] = "ToolLens",
3298c080d89aSJiri Kosina [BTN_TOUCH] = "Touch", [BTN_STYLUS] = "Stylus",
3299c080d89aSJiri Kosina [BTN_STYLUS2] = "Stylus2", [BTN_TOOL_DOUBLETAP] = "ToolDoubleTap",
3300a443255cSAntonio Ospite [BTN_TOOL_TRIPLETAP] = "ToolTripleTap", [BTN_TOOL_QUADTAP] = "ToolQuadrupleTap",
3301a443255cSAntonio Ospite [BTN_GEAR_DOWN] = "WheelBtn",
3302c080d89aSJiri Kosina [BTN_GEAR_UP] = "Gear up", [KEY_OK] = "Ok",
3303c080d89aSJiri Kosina [KEY_SELECT] = "Select", [KEY_GOTO] = "Goto",
3304c080d89aSJiri Kosina [KEY_CLEAR] = "Clear", [KEY_POWER2] = "Power2",
3305c080d89aSJiri Kosina [KEY_OPTION] = "Option", [KEY_INFO] = "Info",
3306c080d89aSJiri Kosina [KEY_TIME] = "Time", [KEY_VENDOR] = "Vendor",
3307c080d89aSJiri Kosina [KEY_ARCHIVE] = "Archive", [KEY_PROGRAM] = "Program",
3308c080d89aSJiri Kosina [KEY_CHANNEL] = "Channel", [KEY_FAVORITES] = "Favorites",
3309c080d89aSJiri Kosina [KEY_EPG] = "EPG", [KEY_PVR] = "PVR",
3310c080d89aSJiri Kosina [KEY_MHP] = "MHP", [KEY_LANGUAGE] = "Language",
3311c080d89aSJiri Kosina [KEY_TITLE] = "Title", [KEY_SUBTITLE] = "Subtitle",
33127b2daa64SAndy Shevchenko [KEY_ANGLE] = "Angle",
3313c080d89aSJiri Kosina [KEY_MODE] = "Mode", [KEY_KEYBOARD] = "Keyboard",
33147b2daa64SAndy Shevchenko [KEY_PC] = "PC",
3315c080d89aSJiri Kosina [KEY_TV] = "TV", [KEY_TV2] = "TV2",
3316c080d89aSJiri Kosina [KEY_VCR] = "VCR", [KEY_VCR2] = "VCR2",
3317c080d89aSJiri Kosina [KEY_SAT] = "Sat", [KEY_SAT2] = "Sat2",
3318c080d89aSJiri Kosina [KEY_CD] = "CD", [KEY_TAPE] = "Tape",
3319c080d89aSJiri Kosina [KEY_RADIO] = "Radio", [KEY_TUNER] = "Tuner",
3320c080d89aSJiri Kosina [KEY_PLAYER] = "Player", [KEY_TEXT] = "Text",
3321c080d89aSJiri Kosina [KEY_DVD] = "DVD", [KEY_AUX] = "Aux",
3322c080d89aSJiri Kosina [KEY_MP3] = "MP3", [KEY_AUDIO] = "Audio",
3323c080d89aSJiri Kosina [KEY_VIDEO] = "Video", [KEY_DIRECTORY] = "Directory",
3324c080d89aSJiri Kosina [KEY_LIST] = "List", [KEY_MEMO] = "Memo",
3325c080d89aSJiri Kosina [KEY_CALENDAR] = "Calendar", [KEY_RED] = "Red",
3326c080d89aSJiri Kosina [KEY_GREEN] = "Green", [KEY_YELLOW] = "Yellow",
3327c080d89aSJiri Kosina [KEY_BLUE] = "Blue", [KEY_CHANNELUP] = "ChannelUp",
3328c080d89aSJiri Kosina [KEY_CHANNELDOWN] = "ChannelDown", [KEY_FIRST] = "First",
3329c080d89aSJiri Kosina [KEY_LAST] = "Last", [KEY_AB] = "AB",
3330c080d89aSJiri Kosina [KEY_NEXT] = "Next", [KEY_RESTART] = "Restart",
3331c080d89aSJiri Kosina [KEY_SLOW] = "Slow", [KEY_SHUFFLE] = "Shuffle",
3332c080d89aSJiri Kosina [KEY_BREAK] = "Break", [KEY_PREVIOUS] = "Previous",
3333c080d89aSJiri Kosina [KEY_DIGITS] = "Digits", [KEY_TEEN] = "TEEN",
3334c080d89aSJiri Kosina [KEY_TWEN] = "TWEN", [KEY_DEL_EOL] = "DeleteEOL",
3335c080d89aSJiri Kosina [KEY_DEL_EOS] = "DeleteEOS", [KEY_INS_LINE] = "InsertLine",
3336c080d89aSJiri Kosina [KEY_DEL_LINE] = "DeleteLine",
3337c080d89aSJiri Kosina [KEY_SEND] = "Send", [KEY_REPLY] = "Reply",
3338c080d89aSJiri Kosina [KEY_FORWARDMAIL] = "ForwardMail", [KEY_SAVE] = "Save",
33391fe8736dSJiri Kosina [KEY_DOCUMENTS] = "Documents", [KEY_SPELLCHECK] = "SpellCheck",
3340e2bca074SKhelben Blackstaff [KEY_LOGOFF] = "Logoff",
3341c080d89aSJiri Kosina [KEY_FN] = "Fn", [KEY_FN_ESC] = "Fn+ESC",
3342c080d89aSJiri Kosina [KEY_FN_1] = "Fn+1", [KEY_FN_2] = "Fn+2",
3343c080d89aSJiri Kosina [KEY_FN_B] = "Fn+B", [KEY_FN_D] = "Fn+D",
3344c080d89aSJiri Kosina [KEY_FN_E] = "Fn+E", [KEY_FN_F] = "Fn+F",
3345c080d89aSJiri Kosina [KEY_FN_S] = "Fn+S",
3346c080d89aSJiri Kosina [KEY_FN_F1] = "Fn+F1", [KEY_FN_F2] = "Fn+F2",
3347c080d89aSJiri Kosina [KEY_FN_F3] = "Fn+F3", [KEY_FN_F4] = "Fn+F4",
3348c080d89aSJiri Kosina [KEY_FN_F5] = "Fn+F5", [KEY_FN_F6] = "Fn+F6",
3349c080d89aSJiri Kosina [KEY_FN_F7] = "Fn+F7", [KEY_FN_F8] = "Fn+F8",
3350c080d89aSJiri Kosina [KEY_FN_F9] = "Fn+F9", [KEY_FN_F10] = "Fn+F10",
3351c080d89aSJiri Kosina [KEY_FN_F11] = "Fn+F11", [KEY_FN_F12] = "Fn+F12",
3352c080d89aSJiri Kosina [KEY_KBDILLUMTOGGLE] = "KbdIlluminationToggle",
3353c080d89aSJiri Kosina [KEY_KBDILLUMDOWN] = "KbdIlluminationDown",
3354c080d89aSJiri Kosina [KEY_KBDILLUMUP] = "KbdIlluminationUp",
3355c080d89aSJiri Kosina [KEY_SWITCHVIDEOMODE] = "SwitchVideoMode",
3356f362e690SOlivier Gay [KEY_BUTTONCONFIG] = "ButtonConfig",
3357f362e690SOlivier Gay [KEY_TASKMANAGER] = "TaskManager",
3358f362e690SOlivier Gay [KEY_JOURNAL] = "Journal",
3359f362e690SOlivier Gay [KEY_CONTROLPANEL] = "ControlPanel",
3360f362e690SOlivier Gay [KEY_APPSELECT] = "AppSelect",
3361f362e690SOlivier Gay [KEY_SCREENSAVER] = "ScreenSaver",
3362f362e690SOlivier Gay [KEY_VOICECOMMAND] = "VoiceCommand",
33630f0fb3d2SDmitry Torokhov [KEY_ASSISTANT] = "Assistant",
33640f0fb3d2SDmitry Torokhov [KEY_KBD_LAYOUT_NEXT] = "KbdLayoutNext",
33657b229b13SDmitry Torokhov [KEY_EMOJI_PICKER] = "EmojiPicker",
33669f4211bfSEray Orçunus [KEY_CAMERA_ACCESS_ENABLE] = "CameraAccessEnable",
33679f4211bfSEray Orçunus [KEY_CAMERA_ACCESS_DISABLE] = "CameraAccessDisable",
33689f4211bfSEray Orçunus [KEY_CAMERA_ACCESS_TOGGLE] = "CameraAccessToggle",
33690c7dd00dSAseda Aboagye [KEY_ACCESSIBILITY] = "Accessibility",
337022d6d060SAseda Aboagye [KEY_DO_NOT_DISTURB] = "DoNotDisturb",
3371bfa26ba3SWilliam Mahon [KEY_DICTATE] = "Dictate",
33722d60f9f4SJingyuan Liang [KEY_MICMUTE] = "MicrophoneMute",
3373f362e690SOlivier Gay [KEY_BRIGHTNESS_MIN] = "BrightnessMin",
3374f362e690SOlivier Gay [KEY_BRIGHTNESS_MAX] = "BrightnessMax",
3375f362e690SOlivier Gay [KEY_BRIGHTNESS_AUTO] = "BrightnessAuto",
3376f974008fSOlivier Gay [KEY_KBDINPUTASSIST_PREV] = "KbdInputAssistPrev",
3377f974008fSOlivier Gay [KEY_KBDINPUTASSIST_NEXT] = "KbdInputAssistNext",
3378f974008fSOlivier Gay [KEY_KBDINPUTASSIST_PREVGROUP] = "KbdInputAssistPrevGroup",
3379f974008fSOlivier Gay [KEY_KBDINPUTASSIST_NEXTGROUP] = "KbdInputAssistNextGroup",
3380f974008fSOlivier Gay [KEY_KBDINPUTASSIST_ACCEPT] = "KbdInputAssistAccept",
3381f974008fSOlivier Gay [KEY_KBDINPUTASSIST_CANCEL] = "KbdInputAssistCancel",
3382bcfa8d14SThomas Weißschuh [KEY_MACRO1] = "Macro1", [KEY_MACRO2] = "Macro2", [KEY_MACRO3] = "Macro3",
3383bcfa8d14SThomas Weißschuh [KEY_MACRO4] = "Macro4", [KEY_MACRO5] = "Macro5", [KEY_MACRO6] = "Macro6",
3384bcfa8d14SThomas Weißschuh [KEY_MACRO7] = "Macro7", [KEY_MACRO8] = "Macro8", [KEY_MACRO9] = "Macro9",
3385bcfa8d14SThomas Weißschuh [KEY_MACRO10] = "Macro10", [KEY_MACRO11] = "Macro11", [KEY_MACRO12] = "Macro12",
3386bcfa8d14SThomas Weißschuh [KEY_MACRO13] = "Macro13", [KEY_MACRO14] = "Macro14", [KEY_MACRO15] = "Macro15",
3387bcfa8d14SThomas Weißschuh [KEY_MACRO16] = "Macro16", [KEY_MACRO17] = "Macro17", [KEY_MACRO18] = "Macro18",
3388bcfa8d14SThomas Weißschuh [KEY_MACRO19] = "Macro19", [KEY_MACRO20] = "Macro20", [KEY_MACRO21] = "Macro21",
3389bcfa8d14SThomas Weißschuh [KEY_MACRO22] = "Macro22", [KEY_MACRO23] = "Macro23", [KEY_MACRO24] = "Macro24",
3390bcfa8d14SThomas Weißschuh [KEY_MACRO25] = "Macro25", [KEY_MACRO26] = "Macro26", [KEY_MACRO27] = "Macro27",
3391bcfa8d14SThomas Weißschuh [KEY_MACRO28] = "Macro28", [KEY_MACRO29] = "Macro29", [KEY_MACRO30] = "Macro30",
33925465d9f5SThomas Kuehne [BTN_TRIGGER_HAPPY1] = "TriggerHappy1", [BTN_TRIGGER_HAPPY2] = "TriggerHappy2",
33935465d9f5SThomas Kuehne [BTN_TRIGGER_HAPPY3] = "TriggerHappy3", [BTN_TRIGGER_HAPPY4] = "TriggerHappy4",
33945465d9f5SThomas Kuehne [BTN_TRIGGER_HAPPY5] = "TriggerHappy5", [BTN_TRIGGER_HAPPY6] = "TriggerHappy6",
33955465d9f5SThomas Kuehne [BTN_TRIGGER_HAPPY7] = "TriggerHappy7", [BTN_TRIGGER_HAPPY8] = "TriggerHappy8",
33965465d9f5SThomas Kuehne [BTN_TRIGGER_HAPPY9] = "TriggerHappy9", [BTN_TRIGGER_HAPPY10] = "TriggerHappy10",
33975465d9f5SThomas Kuehne [BTN_TRIGGER_HAPPY11] = "TriggerHappy11", [BTN_TRIGGER_HAPPY12] = "TriggerHappy12",
33985465d9f5SThomas Kuehne [BTN_TRIGGER_HAPPY13] = "TriggerHappy13", [BTN_TRIGGER_HAPPY14] = "TriggerHappy14",
33995465d9f5SThomas Kuehne [BTN_TRIGGER_HAPPY15] = "TriggerHappy15", [BTN_TRIGGER_HAPPY16] = "TriggerHappy16",
34005465d9f5SThomas Kuehne [BTN_TRIGGER_HAPPY17] = "TriggerHappy17", [BTN_TRIGGER_HAPPY18] = "TriggerHappy18",
34015465d9f5SThomas Kuehne [BTN_TRIGGER_HAPPY19] = "TriggerHappy19", [BTN_TRIGGER_HAPPY20] = "TriggerHappy20",
34025465d9f5SThomas Kuehne [BTN_TRIGGER_HAPPY21] = "TriggerHappy21", [BTN_TRIGGER_HAPPY22] = "TriggerHappy22",
34035465d9f5SThomas Kuehne [BTN_TRIGGER_HAPPY23] = "TriggerHappy23", [BTN_TRIGGER_HAPPY24] = "TriggerHappy24",
34045465d9f5SThomas Kuehne [BTN_TRIGGER_HAPPY25] = "TriggerHappy25", [BTN_TRIGGER_HAPPY26] = "TriggerHappy26",
34055465d9f5SThomas Kuehne [BTN_TRIGGER_HAPPY27] = "TriggerHappy27", [BTN_TRIGGER_HAPPY28] = "TriggerHappy28",
34065465d9f5SThomas Kuehne [BTN_TRIGGER_HAPPY29] = "TriggerHappy29", [BTN_TRIGGER_HAPPY30] = "TriggerHappy30",
34075465d9f5SThomas Kuehne [BTN_TRIGGER_HAPPY31] = "TriggerHappy31", [BTN_TRIGGER_HAPPY32] = "TriggerHappy32",
34085465d9f5SThomas Kuehne [BTN_TRIGGER_HAPPY33] = "TriggerHappy33", [BTN_TRIGGER_HAPPY34] = "TriggerHappy34",
34095465d9f5SThomas Kuehne [BTN_TRIGGER_HAPPY35] = "TriggerHappy35", [BTN_TRIGGER_HAPPY36] = "TriggerHappy36",
34105465d9f5SThomas Kuehne [BTN_TRIGGER_HAPPY37] = "TriggerHappy37", [BTN_TRIGGER_HAPPY38] = "TriggerHappy38",
34115465d9f5SThomas Kuehne [BTN_TRIGGER_HAPPY39] = "TriggerHappy39", [BTN_TRIGGER_HAPPY40] = "TriggerHappy40",
34127b2daa64SAndy Shevchenko [BTN_STYLUS3] = "Stylus3", [BTN_TOOL_QUINTTAP] = "ToolQuintTap",
34135465d9f5SThomas Kuehne [KEY_10CHANNELSDOWN] = "10ChannelsDown",
34145465d9f5SThomas Kuehne [KEY_10CHANNELSUP] = "10ChannelsUp",
34155465d9f5SThomas Kuehne [KEY_3D_MODE] = "3DMode", [KEY_ADDRESSBOOK] = "Addressbook",
34165465d9f5SThomas Kuehne [KEY_ALS_TOGGLE] = "ALSToggle", [KEY_ASPECT_RATIO] = "AspectRatio",
34175465d9f5SThomas Kuehne [KEY_ATTENDANT_OFF] = "AttendantOff", [KEY_ATTENDANT_ON] = "AttendantOn",
34185465d9f5SThomas Kuehne [KEY_ATTENDANT_TOGGLE] = "AttendantToggle",
34195465d9f5SThomas Kuehne [KEY_AUDIO_DESC] = "AudioDesc",
34205465d9f5SThomas Kuehne [KEY_AUTOPILOT_ENGAGE_TOGGLE] = "AutoPiloteEngage",
34215465d9f5SThomas Kuehne [KEY_BATTERY] = "Battery", [KEY_BLUETOOTH] = "BlueTooth",
34225465d9f5SThomas Kuehne [KEY_BRIGHTNESS_CYCLE] = "BrightnessCycle",
34235465d9f5SThomas Kuehne [KEY_BRIGHTNESS_MENU] = "BrightnessMenu",
34245465d9f5SThomas Kuehne [KEY_BRL_DOT1] = "BrlDot1", [KEY_BRL_DOT10] = "BrlDot10",
34255465d9f5SThomas Kuehne [KEY_BRL_DOT2] = "BrlDot2", [KEY_BRL_DOT3] = "BrlDot3",
34265465d9f5SThomas Kuehne [KEY_BRL_DOT4] = "BrlDot4", [KEY_BRL_DOT5] = "BrlDot5",
34275465d9f5SThomas Kuehne [KEY_BRL_DOT6] = "BrlDot6", [KEY_BRL_DOT7] = "BrlDot7",
34285465d9f5SThomas Kuehne [KEY_BRL_DOT8] = "BrlDot8", [KEY_BRL_DOT9] = "BrlDot9",
34295465d9f5SThomas Kuehne [KEY_CAMERA_DOWN] = "CameraDown", [KEY_CAMERA_FOCUS] = "CameraFocus",
34305465d9f5SThomas Kuehne [KEY_CAMERA_LEFT] = "CameraLeft", [KEY_CAMERA_RIGHT] = "CameraRight",
34315465d9f5SThomas Kuehne [KEY_CAMERA_UP] = "CameraUp", [KEY_CAMERA_ZOOMIN] = "CameraZoomIn",
34325465d9f5SThomas Kuehne [KEY_CAMERA_ZOOMOUT] = "CameraZoomOut", [KEY_CLEARVU_SONAR] = "ClearVUSonar",
34335465d9f5SThomas Kuehne [KEY_CONTEXT_MENU] = "ContextMenu", [KEY_DATA] = "Data",
34345465d9f5SThomas Kuehne [KEY_DATABASE] = "DataBase", [KEY_DISPLAY_OFF] = "DisplayOff",
34355465d9f5SThomas Kuehne [KEY_DISPLAYTOGGLE] = "DisplayToggle", [KEY_DOLLAR] = "Dollar",
34365465d9f5SThomas Kuehne [KEY_DUAL_RANGE_RADAR] = "DualRangeRadat",
34375465d9f5SThomas Kuehne [KEY_EDITOR] = "Editor", [KEY_EURO] = "Euro",
34385465d9f5SThomas Kuehne [KEY_FASTREVERSE] = "FastReverse", [KEY_FISHING_CHART] = "FishingChart",
34395465d9f5SThomas Kuehne [KEY_FN_RIGHT_SHIFT] = "FnRightShift", [KEY_FRAMEBACK] = "FrameBack",
34405465d9f5SThomas Kuehne [KEY_FRAMEFORWARD] = "FrameForward", [KEY_FULL_SCREEN] = "FullScreen",
34415465d9f5SThomas Kuehne [KEY_GAMES] = "Games", [KEY_GRAPHICSEDITOR] = "GraphicsEditor",
34427b2daa64SAndy Shevchenko [KEY_HANGUP_PHONE] = "HangUpPhone",
34435465d9f5SThomas Kuehne [KEY_IMAGES] = "Images", [KEY_KBD_LCD_MENU1] = "KbdLcdMenu1",
34445465d9f5SThomas Kuehne [KEY_KBD_LCD_MENU2] = "KbdLcdMenu2", [KEY_KBD_LCD_MENU3] = "KbdLcdMenu3",
34455465d9f5SThomas Kuehne [KEY_KBD_LCD_MENU4] = "KbdLcdMenu4", [KEY_KBD_LCD_MENU5] = "KbdLcdMenu5",
34465465d9f5SThomas Kuehne [KEY_LEFT_DOWN] = "LeftDown", [KEY_LEFT_UP] = "LeftUp",
34475465d9f5SThomas Kuehne [KEY_LIGHTS_TOGGLE] = "LightToggle", [KEY_MACRO_PRESET1] = "MacroPreset1",
34485465d9f5SThomas Kuehne [KEY_MACRO_PRESET2] = "MacroPreset2", [KEY_MACRO_PRESET3] = "MacroPrest3",
34495465d9f5SThomas Kuehne [KEY_MACRO_PRESET_CYCLE] = "MacroPresetCycle",
34505465d9f5SThomas Kuehne [KEY_MACRO_RECORD_START] = "MacroRecordStart",
34515465d9f5SThomas Kuehne [KEY_MACRO_RECORD_STOP] = "MacroRecordStop",
34525465d9f5SThomas Kuehne [KEY_MARK_WAYPOINT] = "MarkWayPoint", [KEY_MEDIA_REPEAT] = "MediaRepeat",
3453*a6a4f4e9SColin Ian King [KEY_MEDIA_TOP_MENU] = "MediaTopMenu", [KEY_MESSENGER] = "Messenger",
34545465d9f5SThomas Kuehne [KEY_NAV_CHART] = "NavChar", [KEY_NAV_INFO] = "NavInfo",
34555465d9f5SThomas Kuehne [KEY_NEWS] = "News", [KEY_NEXT_ELEMENT] = "NextElement",
34565465d9f5SThomas Kuehne [KEY_NEXT_FAVORITE] = "NextFavorite", [KEY_NOTIFICATION_CENTER] = "NotificationCenter",
34575465d9f5SThomas Kuehne [KEY_NUMERIC_0] = "Numeric0", [KEY_NUMERIC_1] = "Numeric1",
34585465d9f5SThomas Kuehne [KEY_NUMERIC_11] = "Numceric11", [KEY_NUMERIC_12] = "Numeric12",
34595465d9f5SThomas Kuehne [KEY_NUMERIC_2] = "Numeric2", [KEY_NUMERIC_3] = "Numeric3",
34605465d9f5SThomas Kuehne [KEY_NUMERIC_4] = "Numeric4", [KEY_NUMERIC_5] = "Numeric5",
34615465d9f5SThomas Kuehne [KEY_NUMERIC_6] = "Numeric6", [KEY_NUMERIC_7] = "Numeric7",
34625465d9f5SThomas Kuehne [KEY_NUMERIC_8] = "Numeric8", [KEY_NUMERIC_9] = "Numeric9",
34635465d9f5SThomas Kuehne [KEY_NUMERIC_A] = "NumericA", [KEY_NUMERIC_B] = "NumericB",
34645465d9f5SThomas Kuehne [KEY_NUMERIC_C] = "NumericC", [KEY_NUMERIC_D] = "NumericD",
34655465d9f5SThomas Kuehne [KEY_NUMERIC_POUND] = "NumericPound", [KEY_NUMERIC_STAR] = "NumericStar",
34665465d9f5SThomas Kuehne [KEY_ONSCREEN_KEYBOARD] = "OnScreenKeyBoard",
34675465d9f5SThomas Kuehne [KEY_PAUSE_RECORD] = "PauseRecord", [KEY_PICKUP_PHONE] = "PickUpPhone",
34685465d9f5SThomas Kuehne [KEY_PRESENTATION] = "Presentation", [KEY_PREVIOUS_ELEMENT] = "PreviousElement",
34695465d9f5SThomas Kuehne [KEY_PRIVACY_SCREEN_TOGGLE] = "PrivacyScreenToggle",
34705465d9f5SThomas Kuehne [KEY_RADAR_OVERLAY] = "RadarOverLay",
34715465d9f5SThomas Kuehne [KEY_RFKILL] = "RFKill", [KEY_RIGHT_DOWN] = "RightDown",
34725465d9f5SThomas Kuehne [KEY_RIGHT_UP] = "RightUp", [KEY_ROOT_MENU] = "RootMenu",
34735465d9f5SThomas Kuehne [KEY_ROTATE_LOCK_TOGGLE] = "RotateLockToggle",
34745465d9f5SThomas Kuehne [KEY_SCALE] = "Scale", [KEY_SELECTIVE_SCREENSHOT] = "SelectiveScreenshot",
34755465d9f5SThomas Kuehne [KEY_SIDEVU_SONAR] = "SideVUSonar", [KEY_SINGLE_RANGE_RADAR] = "SingleRangeRadar",
34765465d9f5SThomas Kuehne [KEY_SLOWREVERSE] = "SlowReverse", [KEY_SOS] = "SOS",
34775465d9f5SThomas Kuehne [KEY_SPREADSHEET] = "SpreadSheet", [KEY_STOP_RECORD] = "StopRecord",
34785465d9f5SThomas Kuehne [KEY_TOUCHPAD_OFF] = "TouchPadOff", [KEY_TOUCHPAD_ON] = "TouchPadOn",
34795465d9f5SThomas Kuehne [KEY_TOUCHPAD_TOGGLE] = "TouchPadToggle",
34805465d9f5SThomas Kuehne [KEY_TRADITIONAL_SONAR] = "TraditionalSonar",
34815465d9f5SThomas Kuehne [KEY_UNMUTE] = "Unmute", [KEY_UWB] = "UWB",
34825465d9f5SThomas Kuehne [KEY_VIDEO_NEXT] = "VideoNext", [KEY_VIDEOPHONE] = "VideoPhone",
34835465d9f5SThomas Kuehne [KEY_VIDEO_PREV] = "VideoPrev", [KEY_VOD] = "VOD",
34845465d9f5SThomas Kuehne [KEY_VOICEMAIL] = "VoiceMail", [KEY_WLAN] = "WLAN",
34855465d9f5SThomas Kuehne [KEY_WORDPROCESSOR] = "WordProcessor", [KEY_WPS_BUTTON] = "WPSButton",
34865465d9f5SThomas Kuehne [KEY_WWAN] = "WWAN", [KEY_ZOOMIN] = "ZoomIn",
34875465d9f5SThomas Kuehne [KEY_ZOOMOUT] = "ZoomOut", [KEY_ZOOMRESET] = "ZoomReset",
3488c080d89aSJiri Kosina };
3489c080d89aSJiri Kosina
34900ce1ac3bSJoe Perches static const char *relatives[REL_MAX + 1] = {
3491c080d89aSJiri Kosina [REL_X] = "X", [REL_Y] = "Y",
3492c080d89aSJiri Kosina [REL_Z] = "Z", [REL_RX] = "Rx",
3493c080d89aSJiri Kosina [REL_RY] = "Ry", [REL_RZ] = "Rz",
3494c080d89aSJiri Kosina [REL_HWHEEL] = "HWheel", [REL_DIAL] = "Dial",
3495c080d89aSJiri Kosina [REL_WHEEL] = "Wheel", [REL_MISC] = "Misc",
34965465d9f5SThomas Kuehne [REL_WHEEL_HI_RES] = "WheelHiRes",
34975465d9f5SThomas Kuehne [REL_HWHEEL_HI_RES] = "HWheelHiRes"
3498c080d89aSJiri Kosina };
3499c080d89aSJiri Kosina
350081c2a3baSDaniel Mack static const char *absolutes[ABS_CNT] = {
3501c080d89aSJiri Kosina [ABS_X] = "X", [ABS_Y] = "Y",
3502c080d89aSJiri Kosina [ABS_Z] = "Z", [ABS_RX] = "Rx",
3503c080d89aSJiri Kosina [ABS_RY] = "Ry", [ABS_RZ] = "Rz",
3504c080d89aSJiri Kosina [ABS_THROTTLE] = "Throttle", [ABS_RUDDER] = "Rudder",
3505c080d89aSJiri Kosina [ABS_WHEEL] = "Wheel", [ABS_GAS] = "Gas",
3506c080d89aSJiri Kosina [ABS_BRAKE] = "Brake", [ABS_HAT0X] = "Hat0X",
3507c080d89aSJiri Kosina [ABS_HAT0Y] = "Hat0Y", [ABS_HAT1X] = "Hat1X",
3508c080d89aSJiri Kosina [ABS_HAT1Y] = "Hat1Y", [ABS_HAT2X] = "Hat2X",
3509c080d89aSJiri Kosina [ABS_HAT2Y] = "Hat2Y", [ABS_HAT3X] = "Hat3X",
3510c080d89aSJiri Kosina [ABS_HAT3Y] = "Hat 3Y", [ABS_PRESSURE] = "Pressure",
3511c080d89aSJiri Kosina [ABS_DISTANCE] = "Distance", [ABS_TILT_X] = "XTilt",
3512c080d89aSJiri Kosina [ABS_TILT_Y] = "YTilt", [ABS_TOOL_WIDTH] = "ToolWidth",
35131260cd04SNate Yocom [ABS_VOLUME] = "Volume", [ABS_PROFILE] = "Profile",
35141260cd04SNate Yocom [ABS_MISC] = "Misc",
35155465d9f5SThomas Kuehne [ABS_MT_SLOT] = "MTSlot",
351689f536ccSStephane Chatty [ABS_MT_TOUCH_MAJOR] = "MTMajor",
351789f536ccSStephane Chatty [ABS_MT_TOUCH_MINOR] = "MTMinor",
351889f536ccSStephane Chatty [ABS_MT_WIDTH_MAJOR] = "MTMajorW",
351989f536ccSStephane Chatty [ABS_MT_WIDTH_MINOR] = "MTMinorW",
352089f536ccSStephane Chatty [ABS_MT_ORIENTATION] = "MTOrientation",
352189f536ccSStephane Chatty [ABS_MT_POSITION_X] = "MTPositionX",
352289f536ccSStephane Chatty [ABS_MT_POSITION_Y] = "MTPositionY",
352389f536ccSStephane Chatty [ABS_MT_TOOL_TYPE] = "MTToolType",
352489f536ccSStephane Chatty [ABS_MT_BLOB_ID] = "MTBlobID",
35255465d9f5SThomas Kuehne [ABS_MT_TRACKING_ID] = "MTTrackingID",
35265465d9f5SThomas Kuehne [ABS_MT_PRESSURE] = "MTPressure",
35275465d9f5SThomas Kuehne [ABS_MT_DISTANCE] = "MTDistance",
35285465d9f5SThomas Kuehne [ABS_MT_TOOL_X] = "MTToolX",
35295465d9f5SThomas Kuehne [ABS_MT_TOOL_Y] = "MTToolY",
3530c080d89aSJiri Kosina };
3531c080d89aSJiri Kosina
35320ce1ac3bSJoe Perches static const char *misc[MSC_MAX + 1] = {
3533c080d89aSJiri Kosina [MSC_SERIAL] = "Serial", [MSC_PULSELED] = "Pulseled",
35345465d9f5SThomas Kuehne [MSC_GESTURE] = "Gesture", [MSC_RAW] = "RawData",
35355465d9f5SThomas Kuehne [MSC_SCAN] = "Scan", [MSC_TIMESTAMP] = "TimeStamp",
3536c080d89aSJiri Kosina };
3537c080d89aSJiri Kosina
35380ce1ac3bSJoe Perches static const char *leds[LED_MAX + 1] = {
3539c080d89aSJiri Kosina [LED_NUML] = "NumLock", [LED_CAPSL] = "CapsLock",
3540c080d89aSJiri Kosina [LED_SCROLLL] = "ScrollLock", [LED_COMPOSE] = "Compose",
3541c080d89aSJiri Kosina [LED_KANA] = "Kana", [LED_SLEEP] = "Sleep",
3542c080d89aSJiri Kosina [LED_SUSPEND] = "Suspend", [LED_MUTE] = "Mute",
35435465d9f5SThomas Kuehne [LED_MISC] = "Misc", [LED_MAIL] = "Mail",
35445465d9f5SThomas Kuehne [LED_CHARGING] = "Charging",
3545c080d89aSJiri Kosina };
3546c080d89aSJiri Kosina
35470ce1ac3bSJoe Perches static const char *repeats[REP_MAX + 1] = {
3548c080d89aSJiri Kosina [REP_DELAY] = "Delay", [REP_PERIOD] = "Period"
3549c080d89aSJiri Kosina };
3550c080d89aSJiri Kosina
35510ce1ac3bSJoe Perches static const char *sounds[SND_MAX + 1] = {
3552c080d89aSJiri Kosina [SND_CLICK] = "Click", [SND_BELL] = "Bell",
3553c080d89aSJiri Kosina [SND_TONE] = "Tone"
3554c080d89aSJiri Kosina };
3555c080d89aSJiri Kosina
35565465d9f5SThomas Kuehne static const char *software[SW_CNT] = {
35575465d9f5SThomas Kuehne [SW_LID] = "Lid",
35585465d9f5SThomas Kuehne [SW_TABLET_MODE] = "TabletMode",
35595465d9f5SThomas Kuehne [SW_HEADPHONE_INSERT] = "HeadPhoneInsert",
35605465d9f5SThomas Kuehne [SW_RFKILL_ALL] = "RFKillAll",
35615465d9f5SThomas Kuehne [SW_MICROPHONE_INSERT] = "MicrophoneInsert",
35625465d9f5SThomas Kuehne [SW_DOCK] = "Dock",
35635465d9f5SThomas Kuehne [SW_LINEOUT_INSERT] = "LineOutInsert",
35645465d9f5SThomas Kuehne [SW_JACK_PHYSICAL_INSERT] = "JackPhysicalInsert",
35655465d9f5SThomas Kuehne [SW_VIDEOOUT_INSERT] = "VideoOutInsert",
35665465d9f5SThomas Kuehne [SW_CAMERA_LENS_COVER] = "CameraLensCover",
35675465d9f5SThomas Kuehne [SW_KEYPAD_SLIDE] = "KeyPadSlide",
35685465d9f5SThomas Kuehne [SW_FRONT_PROXIMITY] = "FrontProximity",
35695465d9f5SThomas Kuehne [SW_ROTATE_LOCK] = "RotateLock",
35705465d9f5SThomas Kuehne [SW_LINEIN_INSERT] = "LineInInsert",
35715465d9f5SThomas Kuehne [SW_MUTE_DEVICE] = "MuteDevice",
35725465d9f5SThomas Kuehne [SW_PEN_INSERTED] = "PenInserted",
35735465d9f5SThomas Kuehne [SW_MACHINE_COVER] = "MachineCover",
35745465d9f5SThomas Kuehne };
35755465d9f5SThomas Kuehne
3576311e435cSThomas Kuehne static const char *force[FF_CNT] = {
3577311e435cSThomas Kuehne [FF_RUMBLE] = "FF_RUMBLE",
3578311e435cSThomas Kuehne [FF_PERIODIC] = "FF_PERIODIC",
3579311e435cSThomas Kuehne [FF_CONSTANT] = "FF_CONSTANT",
3580311e435cSThomas Kuehne [FF_SPRING] = "FF_SPRING",
3581311e435cSThomas Kuehne [FF_FRICTION] = "FF_FRICTION",
3582311e435cSThomas Kuehne [FF_DAMPER] = "FF_DAMPER",
3583311e435cSThomas Kuehne [FF_INERTIA] = "FF_INERTIA",
3584311e435cSThomas Kuehne [FF_RAMP] = "FF_RAMP",
3585311e435cSThomas Kuehne [FF_SQUARE] = "FF_SQUARE",
3586311e435cSThomas Kuehne [FF_TRIANGLE] = "FF_TRIANGLE",
3587311e435cSThomas Kuehne [FF_SINE] = "FF_SINE",
3588311e435cSThomas Kuehne [FF_SAW_UP] = "FF_SAW_UP",
3589311e435cSThomas Kuehne [FF_SAW_DOWN] = "FF_SAW_DOWN",
3590311e435cSThomas Kuehne [FF_CUSTOM] = "FF_CUSTOM",
3591311e435cSThomas Kuehne [FF_GAIN] = "FF_GAIN",
3592311e435cSThomas Kuehne [FF_AUTOCENTER] = "FF_AUTOCENTER",
3593311e435cSThomas Kuehne [FF_MAX] = "FF_MAX",
3594311e435cSThomas Kuehne };
3595311e435cSThomas Kuehne
3596311e435cSThomas Kuehne static const char *force_status[FF_STATUS_MAX + 1] = {
3597311e435cSThomas Kuehne [FF_STATUS_STOPPED] = "FF_STATUS_STOPPED",
3598311e435cSThomas Kuehne [FF_STATUS_PLAYING] = "FF_STATUS_PLAYING",
3599311e435cSThomas Kuehne };
3600311e435cSThomas Kuehne
36010ce1ac3bSJoe Perches static const char **names[EV_MAX + 1] = {
3602c080d89aSJiri Kosina [EV_SYN] = syncs, [EV_KEY] = keys,
3603c080d89aSJiri Kosina [EV_REL] = relatives, [EV_ABS] = absolutes,
3604c080d89aSJiri Kosina [EV_MSC] = misc, [EV_LED] = leds,
3605c080d89aSJiri Kosina [EV_SND] = sounds, [EV_REP] = repeats,
3606311e435cSThomas Kuehne [EV_SW] = software, [EV_FF] = force,
3607311e435cSThomas Kuehne [EV_FF_STATUS] = force_status,
3608c080d89aSJiri Kosina };
3609c080d89aSJiri Kosina
hid_resolv_event(__u8 type,__u16 code,struct seq_file * f)361062e62da8SH Hartley Sweeten static void hid_resolv_event(__u8 type, __u16 code, struct seq_file *f)
361162e62da8SH Hartley Sweeten {
3612132ea824SThomas Kuehne if (events[type])
3613132ea824SThomas Kuehne seq_printf(f, "%s.", events[type]);
3614132ea824SThomas Kuehne else
3615132ea824SThomas Kuehne seq_printf(f, "%02x.", type);
3616132ea824SThomas Kuehne
3617132ea824SThomas Kuehne if (names[type] && names[type][code])
3618132ea824SThomas Kuehne seq_printf(f, "%s", names[type][code]);
3619132ea824SThomas Kuehne else
3620132ea824SThomas Kuehne seq_printf(f, "%04x", code);
3621c080d89aSJiri Kosina }
3622a635f9ddSJiri Kosina
hid_dump_input_mapping(struct hid_device * hid,struct seq_file * f)362362e62da8SH Hartley Sweeten static void hid_dump_input_mapping(struct hid_device *hid, struct seq_file *f)
3624a635f9ddSJiri Kosina {
3625a635f9ddSJiri Kosina int i, j, k;
3626a635f9ddSJiri Kosina struct hid_report *report;
3627a635f9ddSJiri Kosina struct hid_usage *usage;
3628a635f9ddSJiri Kosina
3629a635f9ddSJiri Kosina for (k = HID_INPUT_REPORT; k <= HID_OUTPUT_REPORT; k++) {
3630a635f9ddSJiri Kosina list_for_each_entry(report, &hid->report_enum[k].report_list, list) {
3631a635f9ddSJiri Kosina for (i = 0; i < report->maxfield; i++) {
3632a635f9ddSJiri Kosina for ( j = 0; j < report->field[i]->maxusage; j++) {
3633a635f9ddSJiri Kosina usage = report->field[i]->usage + j;
3634a635f9ddSJiri Kosina hid_resolv_usage(usage->hid, f);
3635a635f9ddSJiri Kosina seq_printf(f, " ---> ");
3636a635f9ddSJiri Kosina hid_resolv_event(usage->type, usage->code, f);
3637a635f9ddSJiri Kosina seq_printf(f, "\n");
3638a635f9ddSJiri Kosina }
3639a635f9ddSJiri Kosina }
3640a635f9ddSJiri Kosina }
3641a635f9ddSJiri Kosina }
3642a635f9ddSJiri Kosina
3643a635f9ddSJiri Kosina }
3644a635f9ddSJiri Kosina
hid_debug_rdesc_show(struct seq_file * f,void * p)3645a635f9ddSJiri Kosina static int hid_debug_rdesc_show(struct seq_file *f, void *p)
3646a635f9ddSJiri Kosina {
3647a635f9ddSJiri Kosina struct hid_device *hdev = f->private;
36488db089d1SHenrik Rydberg const __u8 *rdesc = hdev->rdesc;
36498db089d1SHenrik Rydberg unsigned rsize = hdev->rsize;
3650a635f9ddSJiri Kosina int i;
3651a635f9ddSJiri Kosina
36528db089d1SHenrik Rydberg if (!rdesc) {
36538db089d1SHenrik Rydberg rdesc = hdev->dev_rdesc;
36548db089d1SHenrik Rydberg rsize = hdev->dev_rsize;
36558db089d1SHenrik Rydberg }
36568db089d1SHenrik Rydberg
3657a635f9ddSJiri Kosina /* dump HID report descriptor */
36588db089d1SHenrik Rydberg for (i = 0; i < rsize; i++)
36598db089d1SHenrik Rydberg seq_printf(f, "%02x ", rdesc[i]);
3660a635f9ddSJiri Kosina seq_printf(f, "\n\n");
3661a635f9ddSJiri Kosina
3662a635f9ddSJiri Kosina /* dump parsed data and input mappings */
3663cef0d494SHe, Bo if (down_interruptible(&hdev->driver_input_lock))
3664cef0d494SHe, Bo return 0;
3665cef0d494SHe, Bo
3666a635f9ddSJiri Kosina hid_dump_device(hdev, f);
3667a635f9ddSJiri Kosina seq_printf(f, "\n");
3668a635f9ddSJiri Kosina hid_dump_input_mapping(hdev, f);
3669a635f9ddSJiri Kosina
3670cef0d494SHe, Bo up(&hdev->driver_input_lock);
3671cef0d494SHe, Bo
3672a635f9ddSJiri Kosina return 0;
3673a635f9ddSJiri Kosina }
3674a635f9ddSJiri Kosina
hid_debug_events_open(struct inode * inode,struct file * file)3675cd667ce2SJiri Kosina static int hid_debug_events_open(struct inode *inode, struct file *file)
3676cd667ce2SJiri Kosina {
3677cd667ce2SJiri Kosina int err = 0;
3678cd667ce2SJiri Kosina struct hid_debug_list *list;
36791deb9d34SJiri Kosina unsigned long flags;
3680cd667ce2SJiri Kosina
3681cd667ce2SJiri Kosina if (!(list = kzalloc(sizeof(struct hid_debug_list), GFP_KERNEL))) {
3682cd667ce2SJiri Kosina err = -ENOMEM;
3683cd667ce2SJiri Kosina goto out;
3684cd667ce2SJiri Kosina }
3685cd667ce2SJiri Kosina
368613054abbSVladis Dronov err = kfifo_alloc(&list->hid_debug_fifo, HID_DEBUG_FIFOSIZE, GFP_KERNEL);
368713054abbSVladis Dronov if (err) {
3688a809dda0SJulia Lawall kfree(list);
3689cd667ce2SJiri Kosina goto out;
3690cd667ce2SJiri Kosina }
3691cd667ce2SJiri Kosina list->hdev = (struct hid_device *) inode->i_private;
3692fc43e9c8SCharles Yi kref_get(&list->hdev->ref);
3693cd667ce2SJiri Kosina file->private_data = list;
3694cd667ce2SJiri Kosina mutex_init(&list->read_mutex);
3695cd667ce2SJiri Kosina
36961deb9d34SJiri Kosina spin_lock_irqsave(&list->hdev->debug_list_lock, flags);
3697cd667ce2SJiri Kosina list_add_tail(&list->node, &list->hdev->debug_list);
36981deb9d34SJiri Kosina spin_unlock_irqrestore(&list->hdev->debug_list_lock, flags);
3699cd667ce2SJiri Kosina
3700cd667ce2SJiri Kosina out:
3701cd667ce2SJiri Kosina return err;
3702cd667ce2SJiri Kosina }
3703cd667ce2SJiri Kosina
hid_debug_events_read(struct file * file,char __user * buffer,size_t count,loff_t * ppos)3704cd667ce2SJiri Kosina static ssize_t hid_debug_events_read(struct file *file, char __user *buffer,
3705cd667ce2SJiri Kosina size_t count, loff_t *ppos)
3706cd667ce2SJiri Kosina {
3707cd667ce2SJiri Kosina struct hid_debug_list *list = file->private_data;
370813054abbSVladis Dronov int ret = 0, copied;
3709cd667ce2SJiri Kosina DECLARE_WAITQUEUE(wait, current);
3710cd667ce2SJiri Kosina
3711cd667ce2SJiri Kosina mutex_lock(&list->read_mutex);
371213054abbSVladis Dronov if (kfifo_is_empty(&list->hid_debug_fifo)) {
3713cd667ce2SJiri Kosina add_wait_queue(&list->hdev->debug_wait, &wait);
3714cd667ce2SJiri Kosina set_current_state(TASK_INTERRUPTIBLE);
3715cd667ce2SJiri Kosina
371613054abbSVladis Dronov while (kfifo_is_empty(&list->hid_debug_fifo)) {
3717cd667ce2SJiri Kosina if (signal_pending(current)) {
3718cd667ce2SJiri Kosina ret = -ERESTARTSYS;
3719cd667ce2SJiri Kosina break;
3720cd667ce2SJiri Kosina }
3721cd667ce2SJiri Kosina
372213054abbSVladis Dronov /* if list->hdev is NULL we cannot remove_wait_queue().
372313054abbSVladis Dronov * if list->hdev->debug is 0 then hid_debug_unregister()
372413054abbSVladis Dronov * was already called and list->hdev is being destroyed.
372513054abbSVladis Dronov * if we add remove_wait_queue() here we can hit a race.
372613054abbSVladis Dronov */
3727cd667ce2SJiri Kosina if (!list->hdev || !list->hdev->debug) {
3728cd667ce2SJiri Kosina ret = -EIO;
37298fec02a7SJiri Kosina set_current_state(TASK_RUNNING);
37308fec02a7SJiri Kosina goto out;
3731cd667ce2SJiri Kosina }
3732cd667ce2SJiri Kosina
3733c27e0882SLaurent Gauthier if (file->f_flags & O_NONBLOCK) {
3734c27e0882SLaurent Gauthier ret = -EAGAIN;
3735c27e0882SLaurent Gauthier break;
3736c27e0882SLaurent Gauthier }
3737c27e0882SLaurent Gauthier
3738cd667ce2SJiri Kosina /* allow O_NONBLOCK from other threads */
3739cd667ce2SJiri Kosina mutex_unlock(&list->read_mutex);
3740cd667ce2SJiri Kosina schedule();
3741cd667ce2SJiri Kosina mutex_lock(&list->read_mutex);
3742cd667ce2SJiri Kosina set_current_state(TASK_INTERRUPTIBLE);
3743cd667ce2SJiri Kosina }
3744cd667ce2SJiri Kosina
374513054abbSVladis Dronov __set_current_state(TASK_RUNNING);
3746cd667ce2SJiri Kosina remove_wait_queue(&list->hdev->debug_wait, &wait);
3747cd667ce2SJiri Kosina
3748cd667ce2SJiri Kosina if (ret)
3749cd667ce2SJiri Kosina goto out;
375013054abbSVladis Dronov }
3751cd667ce2SJiri Kosina
375213054abbSVladis Dronov /* pass the fifo content to userspace, locking is not needed with only
375313054abbSVladis Dronov * one concurrent reader and one concurrent writer
375413054abbSVladis Dronov */
375513054abbSVladis Dronov ret = kfifo_to_user(&list->hid_debug_fifo, buffer, count, &copied);
375613054abbSVladis Dronov if (ret)
3757cd667ce2SJiri Kosina goto out;
375813054abbSVladis Dronov ret = copied;
3759cd667ce2SJiri Kosina out:
3760cd667ce2SJiri Kosina mutex_unlock(&list->read_mutex);
3761cd667ce2SJiri Kosina return ret;
3762cd667ce2SJiri Kosina }
3763cd667ce2SJiri Kosina
hid_debug_events_poll(struct file * file,poll_table * wait)3764afc9a42bSAl Viro static __poll_t hid_debug_events_poll(struct file *file, poll_table *wait)
3765cd667ce2SJiri Kosina {
3766cd667ce2SJiri Kosina struct hid_debug_list *list = file->private_data;
3767cd667ce2SJiri Kosina
3768cd667ce2SJiri Kosina poll_wait(file, &list->hdev->debug_wait, wait);
376913054abbSVladis Dronov if (!kfifo_is_empty(&list->hid_debug_fifo))
3770a9a08845SLinus Torvalds return EPOLLIN | EPOLLRDNORM;
3771cd667ce2SJiri Kosina if (!list->hdev->debug)
3772a9a08845SLinus Torvalds return EPOLLERR | EPOLLHUP;
3773cd667ce2SJiri Kosina return 0;
3774cd667ce2SJiri Kosina }
3775cd667ce2SJiri Kosina
hid_debug_events_release(struct inode * inode,struct file * file)3776cd667ce2SJiri Kosina static int hid_debug_events_release(struct inode *inode, struct file *file)
3777cd667ce2SJiri Kosina {
3778cd667ce2SJiri Kosina struct hid_debug_list *list = file->private_data;
37791deb9d34SJiri Kosina unsigned long flags;
3780cd667ce2SJiri Kosina
37811deb9d34SJiri Kosina spin_lock_irqsave(&list->hdev->debug_list_lock, flags);
3782cd667ce2SJiri Kosina list_del(&list->node);
37831deb9d34SJiri Kosina spin_unlock_irqrestore(&list->hdev->debug_list_lock, flags);
378413054abbSVladis Dronov kfifo_free(&list->hid_debug_fifo);
3785fc43e9c8SCharles Yi
3786fc43e9c8SCharles Yi kref_put(&list->hdev->ref, hiddev_free);
3787cd667ce2SJiri Kosina kfree(list);
3788cd667ce2SJiri Kosina
3789cd667ce2SJiri Kosina return 0;
3790cd667ce2SJiri Kosina }
3791cd667ce2SJiri Kosina
37928c32d47bSYangtao Li DEFINE_SHOW_ATTRIBUTE(hid_debug_rdesc);
3793a635f9ddSJiri Kosina
3794cd667ce2SJiri Kosina static const struct file_operations hid_debug_events_fops = {
3795cd667ce2SJiri Kosina .owner = THIS_MODULE,
3796cd667ce2SJiri Kosina .open = hid_debug_events_open,
3797cd667ce2SJiri Kosina .read = hid_debug_events_read,
3798cd667ce2SJiri Kosina .poll = hid_debug_events_poll,
3799cd667ce2SJiri Kosina .release = hid_debug_events_release,
38006038f373SArnd Bergmann .llseek = noop_llseek,
3801cd667ce2SJiri Kosina };
3802cd667ce2SJiri Kosina
3803cd667ce2SJiri Kosina
hid_debug_register(struct hid_device * hdev,const char * name)3804a635f9ddSJiri Kosina void hid_debug_register(struct hid_device *hdev, const char *name)
3805a635f9ddSJiri Kosina {
3806a635f9ddSJiri Kosina hdev->debug_dir = debugfs_create_dir(name, hid_debug_root);
3807a635f9ddSJiri Kosina hdev->debug_rdesc = debugfs_create_file("rdesc", 0400,
3808a635f9ddSJiri Kosina hdev->debug_dir, hdev, &hid_debug_rdesc_fops);
3809cd667ce2SJiri Kosina hdev->debug_events = debugfs_create_file("events", 0400,
3810cd667ce2SJiri Kosina hdev->debug_dir, hdev, &hid_debug_events_fops);
3811cd667ce2SJiri Kosina hdev->debug = 1;
3812a635f9ddSJiri Kosina }
3813a635f9ddSJiri Kosina
hid_debug_unregister(struct hid_device * hdev)3814a635f9ddSJiri Kosina void hid_debug_unregister(struct hid_device *hdev)
3815a635f9ddSJiri Kosina {
3816cd667ce2SJiri Kosina hdev->debug = 0;
3817cd667ce2SJiri Kosina wake_up_interruptible(&hdev->debug_wait);
3818a635f9ddSJiri Kosina debugfs_remove(hdev->debug_rdesc);
3819cd667ce2SJiri Kosina debugfs_remove(hdev->debug_events);
3820a635f9ddSJiri Kosina debugfs_remove(hdev->debug_dir);
3821a635f9ddSJiri Kosina }
3822a635f9ddSJiri Kosina
hid_debug_init(void)3823a635f9ddSJiri Kosina void hid_debug_init(void)
3824a635f9ddSJiri Kosina {
3825a635f9ddSJiri Kosina hid_debug_root = debugfs_create_dir("hid", NULL);
3826a635f9ddSJiri Kosina }
3827a635f9ddSJiri Kosina
hid_debug_exit(void)3828a635f9ddSJiri Kosina void hid_debug_exit(void)
3829a635f9ddSJiri Kosina {
3830a635f9ddSJiri Kosina debugfs_remove_recursive(hid_debug_root);
3831a635f9ddSJiri Kosina }
3832