diff options
author | Reibl János Dániel <janos.daniel.reibl@protonmail.com> | 2022-01-13 18:16:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-13 09:16:03 -0800 |
commit | a3af4b09b0786e7c228828b2b3676fb7dd9a1c2f (patch) | |
tree | c192d445ab9006d9e7ba8b58f50b7ab3231acb75 /keyboards/handwired | |
parent | e2d1547f31c0ceda27b68e26e79224b49cadaa97 (diff) | |
download | qmk_firmware-a3af4b09b0786e7c228828b2b3676fb7dd9a1c2f.tar.gz qmk_firmware-a3af4b09b0786e7c228828b2b3676fb7dd9a1c2f.zip |
[Keymap] Misc userspace and keymap improvements (#15844)
Diffstat (limited to 'keyboards/handwired')
-rw-r--r-- | keyboards/handwired/riblee_f411/config.h | 5 | ||||
-rw-r--r-- | keyboards/handwired/riblee_f411/rules.mk | 7 |
2 files changed, 4 insertions, 8 deletions
diff --git a/keyboards/handwired/riblee_f411/config.h b/keyboards/handwired/riblee_f411/config.h index 67399aafb..f335871de 100644 --- a/keyboards/handwired/riblee_f411/config.h +++ b/keyboards/handwired/riblee_f411/config.h | |||
@@ -29,13 +29,10 @@ | |||
29 | 29 | ||
30 | #define MATRIX_ROW_PINS { A6, A5, A4, A3, A2 } | 30 | #define MATRIX_ROW_PINS { A6, A5, A4, A3, A2 } |
31 | #define MATRIX_COL_PINS { B10, B1, B0, B15, A8, B3, B4, B5, B14, A0, B8, B9 } | 31 | #define MATRIX_COL_PINS { B10, B1, B0, B15, A8, B3, B4, B5, B14, A0, B8, B9 } |
32 | #define UNUSED_PINS | 32 | #define UNUSED_PINS { A1, A7, B2, B11, B12, B13 } |
33 | 33 | ||
34 | #define DIODE_DIRECTION COL2ROW | 34 | #define DIODE_DIRECTION COL2ROW |
35 | 35 | ||
36 | #define BACKLIGHT_PIN A1 | ||
37 | #define BACKLIGHT_LEVELS 5 | ||
38 | |||
39 | #define MOUSEKEY_INTERVAL 32 | 36 | #define MOUSEKEY_INTERVAL 32 |
40 | 37 | ||
41 | #define TAPPING_TERM 175 | 38 | #define TAPPING_TERM 175 |
diff --git a/keyboards/handwired/riblee_f411/rules.mk b/keyboards/handwired/riblee_f411/rules.mk index c3234dfe2..7d0652ad2 100644 --- a/keyboards/handwired/riblee_f411/rules.mk +++ b/keyboards/handwired/riblee_f411/rules.mk | |||
@@ -7,15 +7,14 @@ BOOTLOADER = stm32-dfu | |||
7 | # Build Options | 7 | # Build Options |
8 | # change yes to no to disable | 8 | # change yes to no to disable |
9 | # | 9 | # |
10 | BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite | 10 | BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite |
11 | MOUSEKEY_ENABLE = yes # Mouse keys | 11 | MOUSEKEY_ENABLE = yes # Mouse keys |
12 | EXTRAKEY_ENABLE = yes # Audio control and System control | 12 | EXTRAKEY_ENABLE = yes # Audio control and System control |
13 | KEYBOARD_SHARED_EP = yes | 13 | KEYBOARD_SHARED_EP = yes # Free up some extra endpoints - needed if console+mouse+extra |
14 | CONSOLE_ENABLE = no # Console for debug | 14 | CONSOLE_ENABLE = no # Console for debug |
15 | COMMAND_ENABLE = no # Commands for debug and configuration | 15 | COMMAND_ENABLE = no # Commands for debug and configuration |
16 | NKRO_ENABLE = yes # Enable N-Key Rollover | 16 | NKRO_ENABLE = yes # Enable N-Key Rollover |
17 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 17 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
18 | BACKLIGHT_DRIVER = software | ||
19 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 18 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
20 | AUDIO_ENABLE = no # Audio output | 19 | AUDIO_ENABLE = no # Audio output |
21 | 20 | ||