summaryrefslogtreecommitdiffstats
path: root/tmk_core
diff options
context:
space:
mode:
authorTravis La Marr <exiva@exiva.net>2016-07-15 16:41:32 +0200
committerTravis La Marr <exiva@exiva.net>2016-07-15 16:41:32 +0200
commitd48a4cf1eb80600fb3e8eb859e5b77c954a18137 (patch)
treec9ed8ab7a47a31818501f67f97d5777f8eff65fe /tmk_core
parent9ecf9073b96799e52a1f1c0d35b57177382902ce (diff)
downloadqmk_firmware-d48a4cf1eb80600fb3e8eb859e5b77c954a18137.tar.gz
qmk_firmware-d48a4cf1eb80600fb3e8eb859e5b77c954a18137.tar.xz
Fix OS X Recognizing keyboard as Mouse/Tablet
Modified the LUFA USB HID Descriptor to change the logical/usage minimums for System Control from 0x01 (Mouse) to 0x81 (System Power Down), this fixes OS X recognizing the Planck as having a mouse and tablet, even with mousekeys off.
Diffstat (limited to 'tmk_core')
-rw-r--r--tmk_core/protocol/lufa/descriptor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tmk_core/protocol/lufa/descriptor.c b/tmk_core/protocol/lufa/descriptor.c
index 850a20fdb..539a58d66 100644
--- a/tmk_core/protocol/lufa/descriptor.c
+++ b/tmk_core/protocol/lufa/descriptor.c
@@ -140,9 +140,9 @@ const USB_Descriptor_HIDReport_Datatype_t PROGMEM ExtrakeyReport[] =
HID_RI_USAGE(8, 0x80), /* System Control */
HID_RI_COLLECTION(8, 0x01), /* Application */
HID_RI_REPORT_ID(8, REPORT_ID_SYSTEM),
- HID_RI_LOGICAL_MINIMUM(16, 0x0001),
+ HID_RI_LOGICAL_MINIMUM(16, 0x0081),
HID_RI_LOGICAL_MAXIMUM(16, 0x00B7),
- HID_RI_USAGE_MINIMUM(16, 0x0001), /* System Power Down */
+ HID_RI_USAGE_MINIMUM(16, 0x0081), /* System Power Down */
HID_RI_USAGE_MAXIMUM(16, 0x00B7), /* System Display LCD Autoscale */
HID_RI_REPORT_SIZE(8, 16),
HID_RI_REPORT_COUNT(8, 1),