Joystick: add support for 8-way hat switch (#24515)
This commit is contained in:
parent
69093f6de9
commit
a3cfb1dab7
7 changed files with 124 additions and 2 deletions
|
@ -621,6 +621,23 @@ const PROGMEM uchar shared_hid_report[] = {
|
|||
0x81, 0x02, // Input (Data, Variable, Absolute)
|
||||
# endif
|
||||
|
||||
# ifdef JOYSTICK_HAS_HAT
|
||||
// Hat Switch (4 bits)
|
||||
0x09, 0x39, // Usage (Hat Switch)
|
||||
0x15, 0x00, // Logical Minimum (0)
|
||||
0x25, 0x07, // Logical Maximum (7)
|
||||
0x35, 0x00, // Physical Minimum (0)
|
||||
0x46, 0x3B, 0x01, // Physical Maximum (315)
|
||||
0x65, 0x14, // Unit (Degree, English Rotation)
|
||||
0x95, 0x01, // Report Count (1)
|
||||
0x75, 0x04, // Report Size (4)
|
||||
0x81, 0x42, // Input (Data, Variable, Absolute, Null State)
|
||||
// Padding (4 bits)
|
||||
0x95, 0x04, // Report Count (4)
|
||||
0x75, 0x01, // Report Size (1)
|
||||
0x81, 0x01, // Input (Constant)
|
||||
# endif
|
||||
|
||||
# if JOYSTICK_BUTTON_COUNT > 0
|
||||
0x05, 0x09, // Usage Page (Button)
|
||||
0x19, 0x01, // Usage Minimum (Button 1)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue