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:
Victor 2024-04-11 22:16:57 -05:00
parent efed5396ba
commit 64f90da9c6
Failed to generate hash of commit
2 changed files with 100 additions and 88 deletions

View file

@ -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",

View file

@ -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