diff options
| author | Ryan | 2024-10-15 16:05:43 +0200 |
|---|---|---|
| committer | GitHub | 2024-10-15 16:05:43 +0200 |
| commit | 85a7627641cbbc71de1a89b0346ee7d92d4fb394 (patch) | |
| tree | 7b00a7e051b3f47a4c75731793ffb42b9c1f4115 /tmk_core/protocol/vusb | |
| parent | 11daef82e0c710d7bdacc7c78fe21fae864be191 (diff) | |
Digitizer: fix units tag in report descriptor (#24482)
Diffstat (limited to 'tmk_core/protocol/vusb')
| -rw-r--r-- | tmk_core/protocol/vusb/vusb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/protocol/vusb/vusb.c b/tmk_core/protocol/vusb/vusb.c index c8ab494253..fa14820e72 100644 --- a/tmk_core/protocol/vusb/vusb.c +++ b/tmk_core/protocol/vusb/vusb.c @@ -659,7 +659,7 @@ const PROGMEM uchar shared_hid_report[] = { 0x26, 0xFF, 0x7F, // Logical Maximum (32767) 0x95, 0x02, // Report Count (2) 0x75, 0x10, // Report Size (16) - 0x65, 0x33, // Unit (Inch, English Linear) + 0x65, 0x13, // Unit (Inch, English Linear) 0x55, 0x0E, // Unit Exponent (-2) 0x81, 0x02, // Input (Data, Variable, Absolute) 0xC0, // End Collection |