diff options
author | Jonathan Rascher <jon@bcat.name> | 2021-06-03 13:39:48 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-03 11:39:48 -0700 |
commit | 6eb18a6ccb064c368a420fa574dd03b05cf7ca56 (patch) | |
tree | c9552cbf3ef3a2b32c2ad79422df86d89daeb410 | |
parent | af91221ddbf35199495626da44847737588eabe9 (diff) | |
download | qmk_firmware-6eb18a6ccb064c368a420fa574dd03b05cf7ca56.tar.gz qmk_firmware-6eb18a6ccb064c368a420fa574dd03b05cf7ca56.zip |
[Keymap] Update bcat's split_3x6_3 for Crkbd legacy removal (#13097)
-rw-r--r-- | layouts/community/split_3x6_3/bcat/config.h | 9 | ||||
-rw-r--r-- | layouts/community/split_3x6_3/bcat/rules.mk | 7 |
2 files changed, 2 insertions, 14 deletions
diff --git a/layouts/community/split_3x6_3/bcat/config.h b/layouts/community/split_3x6_3/bcat/config.h index e177f0ffc..b8743429c 100644 --- a/layouts/community/split_3x6_3/bcat/config.h +++ b/layouts/community/split_3x6_3/bcat/config.h | |||
@@ -16,16 +16,9 @@ | |||
16 | 16 | ||
17 | #pragma once | 17 | #pragma once |
18 | 18 | ||
19 | #if defined(KEYBOARD_crkbd_rev1_common) || defined(KEYBOARD_crkbd_rev1_legacy) | 19 | #if defined(KEYBOARD_crkbd_rev1) |
20 | # define EE_HANDS | 20 | # define EE_HANDS |
21 | 21 | ||
22 | # if defined(RGBLIGHT_ENABLE) | ||
23 | /* Configure RGB for underglow only (first six LEDs on each side). */ | ||
24 | # undef RGBLED_SPLIT | ||
25 | # define RGBLED_SPLIT \ | ||
26 | { 6, 6 } | ||
27 | # endif | ||
28 | |||
29 | # if defined(RGB_MATRIX_ENABLE) | 22 | # if defined(RGB_MATRIX_ENABLE) |
30 | /* Limit max RGB LED current to avoid tripping controller fuse. */ | 23 | /* Limit max RGB LED current to avoid tripping controller fuse. */ |
31 | # undef RGB_MATRIX_MAXIMUM_BRIGHTNESS | 24 | # undef RGB_MATRIX_MAXIMUM_BRIGHTNESS |
diff --git a/layouts/community/split_3x6_3/bcat/rules.mk b/layouts/community/split_3x6_3/bcat/rules.mk index caf6ec7ec..5ee614b19 100644 --- a/layouts/community/split_3x6_3/bcat/rules.mk +++ b/layouts/community/split_3x6_3/bcat/rules.mk | |||
@@ -1,9 +1,4 @@ | |||
1 | ifeq ($(strip $(KEYBOARD)), crkbd/rev1/common) | 1 | ifeq ($(strip $(KEYBOARD)), crkbd/rev1) |
2 | BOOTLOADER = atmel-dfu # Elite-C | ||
3 | |||
4 | # Enable underglow only. (Split Common doesn't support RGB matrix on slave.) | ||
5 | RGBLIGHT_ENABLE = yes | ||
6 | else ifeq ($(strip $(KEYBOARD)), crkbd/rev1/legacy) | ||
7 | BOOTLOADER = atmel-dfu # Elite-C | 2 | BOOTLOADER = atmel-dfu # Elite-C |
8 | 3 | ||
9 | RGB_MATRIX_ENABLE = yes # per-key RGB and underglow | 4 | RGB_MATRIX_ENABLE = yes # per-key RGB and underglow |