Switch bcat Chrome OS media keys workaround from mouse keys to NKRO (#9790)
* Switch Chrome OS mouse keys workaround to NKRO * Add NKRO toggle to keymaps * USE NK_TOGG keycode instead of defining my own
This commit is contained in:
parent
e38331d94c
commit
d699fd1fb4
13 changed files with 22 additions and 17 deletions
|
@ -3,10 +3,15 @@ SRC += bcat.c
|
|||
# Enable Bootmagic Lite to consistently reset to bootloader and clear EEPROM.
|
||||
BOOTMAGIC_ENABLE = lite
|
||||
|
||||
# Enable media keys on all keyboards. (Even though I don't use mouse keys, they
|
||||
# seem to be required for media keys to register on Chrome OS.)
|
||||
# Enable media keys on all keyboards.
|
||||
EXTRAKEY_ENABLE = yes
|
||||
MOUSEKEY_ENABLE = yes
|
||||
|
||||
# Enable N-key rollover on all keyboards. In addition to its intended
|
||||
# functionality, as of July 2020, this is required for Chrome OS to process
|
||||
# media keys. (It appears that Chrome OS filters out key events from the second
|
||||
# USB endpoint's consumer and system control devices unless that endpoint also
|
||||
# reports a keyboard or mouse device.)
|
||||
NKRO_ENABLE = yes
|
||||
|
||||
# Enable link-time optimization to reduce binary size.
|
||||
LINK_TIME_OPTIMIZATION_ENABLE = yes
|
||||
|
@ -14,7 +19,7 @@ LINK_TIME_OPTIMIZATION_ENABLE = yes
|
|||
# Disable unused build options on all keyboards.
|
||||
COMMAND_ENABLE = no
|
||||
CONSOLE_ENABLE = no
|
||||
NKRO_ENABLE = no
|
||||
MOUSEKEY_ENABLE = no
|
||||
TERMINAL_ENABLE = no
|
||||
|
||||
# Disable unused hardware options on all keyboards.
|
||||
|
@ -22,7 +27,7 @@ FAUXCLICKY_ENABLE = no
|
|||
MIDI_ENABLE = no
|
||||
SLEEP_LED_ENABLE = no
|
||||
|
||||
# Disable unused other options.
|
||||
# Disable other unused options on all keyboards.
|
||||
API_SYSEX_ENABLE = no
|
||||
AUTO_SHIFT_ENABLE = no
|
||||
COMBO_ENABLE = no
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue