mirror of
https://github.com/qmk/qmk_userspace.git
synced 2025-05-04 22:54:16 -04:00
fixing bugs in the rollow configuration
- enabling extra keys by default to rollow - forcing extrqa keys to be on in the userspace rules.mk
This commit is contained in:
parent
efed5396ba
commit
64f90da9c6
2 changed files with 100 additions and 88 deletions
|
@ -15,9 +15,13 @@
|
||||||
"diode_direction": "COL2ROW",
|
"diode_direction": "COL2ROW",
|
||||||
"features": {
|
"features": {
|
||||||
"bootmagic": true,
|
"bootmagic": true,
|
||||||
|
"extrakey": true,
|
||||||
"encoder": true,
|
"encoder": true,
|
||||||
"oled": true
|
"oled": true
|
||||||
},
|
},
|
||||||
|
"build": {
|
||||||
|
"lto": true
|
||||||
|
},
|
||||||
"encoder": {
|
"encoder": {
|
||||||
"rotary": [
|
"rotary": [
|
||||||
{
|
{
|
||||||
|
@ -40,6 +44,11 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"transport": {
|
||||||
|
"sync": {
|
||||||
|
"matrix_state": true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"processor": "atmega32u4",
|
"processor": "atmega32u4",
|
||||||
|
|
|
@ -9,6 +9,8 @@
|
||||||
#
|
#
|
||||||
# ?= means set the value if its not defined elsewhere
|
# ?= means set the value if its not defined elsewhere
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
LTO_ENABLE ?= yes
|
LTO_ENABLE ?= yes
|
||||||
MAGIC_ENABLE ?= no
|
MAGIC_ENABLE ?= no
|
||||||
CONSOLE_ENABLE ?= no
|
CONSOLE_ENABLE ?= no
|
||||||
|
@ -26,6 +28,7 @@ ENCODER_ENABLE ?= no
|
||||||
ENCODER_MAP_ENABLE ?= no
|
ENCODER_MAP_ENABLE ?= no
|
||||||
|
|
||||||
# qmk features we will force
|
# qmk features we will force
|
||||||
|
EXTRAKEY_ENABLE = yes
|
||||||
AUDIO_ENABLE = no
|
AUDIO_ENABLE = no
|
||||||
CAPS_WORD_ENABLE = yes
|
CAPS_WORD_ENABLE = yes
|
||||||
MOUSEKEY_ENABLE = yes
|
MOUSEKEY_ENABLE = yes
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue