diff options
author | Danilo de Klerk <danilodeklerk@gmail.com> | 2020-07-09 23:19:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-09 22:19:16 +0100 |
commit | 823165b9b784feda7546daa83ded9afe0e35ee6f (patch) | |
tree | 6668ff69f9180a8e4ac21f933d68fc20c96fd342 | |
parent | 9947f1051d66fd4f6d1db290dfdca49f70ae3820 (diff) |
split_3x6_3 layout support (#9625)
-rw-r--r-- | keyboards/centromere/centromere.h | 2 | ||||
-rw-r--r-- | keyboards/centromere/rules.mk | 2 | ||||
-rw-r--r-- | keyboards/crkbd/rev1/rev1.h | 2 | ||||
-rw-r--r-- | keyboards/crkbd/rev1/rules.mk | 2 |
4 files changed, 8 insertions, 0 deletions
diff --git a/keyboards/centromere/centromere.h b/keyboards/centromere/centromere.h index 826e8dde44..d07a53b1ac 100644 --- a/keyboards/centromere/centromere.h +++ b/keyboards/centromere/centromere.h @@ -45,3 +45,5 @@ { KC_NO, KC_NO, k32, k33, k34, k35, k36, k37, KC_NO, KC_NO }, \ { KC_NO, KC_NO, k2a, k1a, k0a, k0b, k1b, k2b, KC_NO, KC_NO } \ } + +#define LAYOUT_split_3x6_3 LAYOUT diff --git a/keyboards/centromere/rules.mk b/keyboards/centromere/rules.mk index fee99d3630..866c33138c 100644 --- a/keyboards/centromere/rules.mk +++ b/keyboards/centromere/rules.mk @@ -40,3 +40,5 @@ OPT_DEFS += -DCENTROMERE_PROMICRO # # project specific files SRC = matrix.c + +LAYOUTS = split_3x6_3 diff --git a/keyboards/crkbd/rev1/rev1.h b/keyboards/crkbd/rev1/rev1.h index 5e90de72a3..6580d73fe3 100644 --- a/keyboards/crkbd/rev1/rev1.h +++ b/keyboards/crkbd/rev1/rev1.h @@ -52,3 +52,5 @@ KC_##L30, KC_##L31, KC_##L32, KC_##R30, KC_##R31, KC_##R32 \ ) // clang-format on + +#define LAYOUT_split_3x6_3 LAYOUT diff --git a/keyboards/crkbd/rev1/rules.mk b/keyboards/crkbd/rev1/rules.mk index ab9bed09c0..a921e60308 100644 --- a/keyboards/crkbd/rev1/rules.mk +++ b/keyboards/crkbd/rev1/rules.mk @@ -1,3 +1,5 @@ SRC += matrix.c \ split_util.c \ split_scomm.c + +LAYOUTS = split_3x6_3 |