summaryrefslogtreecommitdiff
path: root/tmk_core
diff options
context:
space:
mode:
Diffstat (limited to 'tmk_core')
-rw-r--r--tmk_core/protocol/report.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/tmk_core/protocol/report.h b/tmk_core/protocol/report.h
index e4526e4ee6..9d415a3bfd 100644
--- a/tmk_core/protocol/report.h
+++ b/tmk_core/protocol/report.h
@@ -103,7 +103,9 @@ enum consumer_usages {
AC_FORWARD = 0x225,
AC_STOP = 0x226,
AC_REFRESH = 0x227,
- AC_BOOKMARKS = 0x22A
+ AC_BOOKMARKS = 0x22A,
+ AC_MISSION_CONTROL = 0x29F,
+ AC_LAUNCHPAD = 0x2A0
};
/* Generic Desktop Page (0x01)
@@ -318,6 +320,10 @@ static inline uint16_t KEYCODE2CONSUMER(uint8_t key) {
return BRIGHTNESS_DOWN;
case KC_WWW_FAVORITES:
return AC_BOOKMARKS;
+ case KC_MISSION_CONTROL:
+ return AC_MISSION_CONTROL;
+ case KC_LAUNCHPAD:
+ return AC_LAUNCHPAD;
default:
return 0;
}