qmk_firmware

QMK firmware for my keyboards (Corne, Sweep Ferris) and trackball (Ploopy Adept)
Log | Files | Refs | Submodules | LICENSE

commit b9d6bfe927c327dbfb197bb8e9e52ac2f07d7d48
parent 76daf29ef0820438902eb64027c403cc3e37b892
Author: Joel Challis <git@zvecr.com>
Date:   Thu, 14 Sep 2023 08:23:06 +0100

Fix input_club/k_type when RGB Matrix disabled (#22021)


Diffstat:
Akeyboards/input_club/k_type/post_rules.mk | 5+++++
Mkeyboards/input_club/k_type/rules.mk | 5-----
2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/keyboards/input_club/k_type/post_rules.mk b/keyboards/input_club/k_type/post_rules.mk @@ -0,0 +1,5 @@ +ifeq ($(strip $(RGB_MATRIX_ENABLE)), yes) + # Additional files for RGB lighting + SRC += k_type-rgbdriver.c + QUANTUM_LIB_SRC += i2c_master.c is31fl3733-dual.c +endif diff --git a/keyboards/input_club/k_type/rules.mk b/keyboards/input_club/k_type/rules.mk @@ -13,8 +13,3 @@ AUDIO_ENABLE = no # Audio output # RGB options RGB_MATRIX_ENABLE = no - -# Additional files for RGB lighting -SRC += k_type-rgbdriver.c -QUANTUM_LIB_SRC += i2c_master.c is31fl3733-dual.c -