diff options
author | innovaker <66737976+innovaker@users.noreply.github.com> | 2020-11-06 13:32:42 +0000 |
---|---|---|
committer | Pete Johanson <peter@peterjohanson.com> | 2020-11-06 09:53:23 -0500 |
commit | 194854ff7b61999f935e46d7a99060a655292490 (patch) | |
tree | 945746786fa269d10b7e2cc387b2563d7afaa721 | |
parent | a4dc92a2b9e1838287d7f9bf8a8551e8dfdf2864 (diff) |
refactor(hid): Replace `0x01` with `HID_USAGE_CONSUMER_CONSUMER_CONTROL`
This should've changed alongside: 711658206f86fc6af35be7d104243dfcf857f194
-rw-r--r-- | app/include/zmk/hid.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/include/zmk/hid.h b/app/include/zmk/hid.h index e53a8e4..63cdf3b 100644 --- a/app/include/zmk/hid.h +++ b/app/include/zmk/hid.h @@ -103,7 +103,7 @@ static const u8_t zmk_hid_report_desc[] = { HID_USAGE_CONSUMER, /* USAGE (Consumer Control) */ HID_LI_USAGE, - 0x01, + HID_USAGE_CONSUMER_CONSUMER_CONTROL, /* Consumer Page */ HID_MI_COLLECTION, COLLECTION_APPLICATION, |