diff options
author | QMK Bot <hello@qmk.fm> | 2021-05-06 16:16:51 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2021-05-06 16:16:51 +0000 |
commit | 447bd64013f97cfb4c6a9e6324687866905591fc (patch) | |
tree | 811ce8e5302c3f04f0ef6ca9021fb7d5d3b02bcd /tmk_core | |
parent | 45f710f3ffc747d50aad2f45f38917e674d81d3a (diff) | |
parent | 3d922e6257752b54885b7dd28648eed7126b6024 (diff) | |
download | qmk_firmware-447bd64013f97cfb4c6a9e6324687866905591fc.tar.gz qmk_firmware-447bd64013f97cfb4c6a9e6324687866905591fc.zip |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'tmk_core')
-rw-r--r-- | tmk_core/common/report.h | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/tmk_core/common/report.h b/tmk_core/common/report.h index 606a259643..db6370657d 100644 --- a/tmk_core/common/report.h +++ b/tmk_core/common/report.h @@ -80,7 +80,21 @@ enum consumer_usages { AL_ASSISTANT = 0x1CB, AL_KEYBOARD_LAYOUT = 0x1AE, // 15.16 Generic GUI Application Controls + AC_NEW = 0x201, + AC_OPEN = 0x202, + AC_CLOSE = 0x203, + AC_EXIT = 0x204, + AC_MAXIMIZE = 0x205, AC_MINIMIZE = 0x206, + AC_SAVE = 0x207, + AC_PRINT = 0x208, + AC_PROPERTIES = 0x209, + AC_UNDO = 0x21A, + AC_COPY = 0x21B, + AC_CUT = 0x21C, + AC_PASTE = 0x21D, + AC_SELECT_ALL = 0x21E, + AC_FIND = 0x21F, AC_SEARCH = 0x221, AC_HOME = 0x223, AC_BACK = 0x224, @@ -96,9 +110,12 @@ enum consumer_usages { */ enum desktop_usages { // 4.5.1 System Controls - Power Controls - SYSTEM_POWER_DOWN = 0x81, - SYSTEM_SLEEP = 0x82, - SYSTEM_WAKE_UP = 0x83 + SYSTEM_POWER_DOWN = 0x81, + SYSTEM_SLEEP = 0x82, + SYSTEM_WAKE_UP = 0x83, + SYSTEM_RESTART = 0x8F, + // 4.10 System Display Controls + SYSTEM_DISPLAY_TOGGLE_INT_EXT = 0xB5 }; // clang-format on |