Skip to content

Commit

Permalink
core: System control key descriptor fix #435
Browse files Browse the repository at this point in the history
  • Loading branch information
tmk committed Jan 25, 2019
1 parent 98c7d39 commit 753f7b0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions protocol/lufa/descriptor.c
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,8 @@ 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, 0x0081),
HID_RI_LOGICAL_MAXIMUM(16, 0x00B7),
HID_RI_LOGICAL_MINIMUM(16, 0x0001),
HID_RI_LOGICAL_MAXIMUM(16, 0x0037),
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),
Expand Down
2 changes: 1 addition & 1 deletion protocol/lufa/lufa.c
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ static void send_system(uint16_t data)

report_extra_t r = {
.report_id = REPORT_ID_SYSTEM,
.usage = data
.usage = data - SYSTEM_POWER_DOWN + 1
};
Endpoint_SelectEndpoint(EXTRAKEY_IN_EPNUM);

Expand Down

0 comments on commit 753f7b0

Please sign in to comment.