Skip to content

Commit 8bb1210

Browse files
authored
Merge pull request #105 from yswallow/master
Extend hid descriptor maximum to make international keyboard
2 parents b6ad8c9 + 105cd9c commit 8bb1210

File tree

1 file changed

+2
-2
lines changed
  • adafruit_ble/services/standard

1 file changed

+2
-2
lines changed

adafruit_ble/services/standard/hid.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@
7373
b"\x81\x02" # Input (Data,Var,Abs,No Wrap,Linear,Preferred State,No Null Position)
7474
b"\x81\x01" # Input (Const,Array,Abs,No Wrap,Linear,Preferred State,No Null Position)
7575
b"\x19\x00" # Usage Minimum (\x00)
76-
b"\x29\x65" # Usage Maximum (\x65)
76+
b"\x29\x89" # Usage Maximum (\x89)
7777
b"\x15\x00" # Logical Minimum (0)
78-
b"\x25\x65" # Logical Maximum (101)
78+
b"\x25\x89" # Logical Maximum (137)
7979
b"\x75\x08" # Report Size (8)
8080
b"\x95\x06" # Report Count (6)
8181
b"\x81\x00" # Input (Data,Array,Abs,No Wrap,Linear,Preferred State,No Null Position)

0 commit comments

Comments
 (0)