diff options
Diffstat (limited to 'keyboards/helix/rev1/rev1.h')
-rw-r--r-- | keyboards/helix/rev1/rev1.h | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/keyboards/helix/rev1/rev1.h b/keyboards/helix/rev1/rev1.h index a8d6ff050..b505845ad 100644 --- a/keyboards/helix/rev1/rev1.h +++ b/keyboards/helix/rev1/rev1.h | |||
@@ -1,5 +1,4 @@ | |||
1 | #ifndef REV1_H | 1 | #pragma once |
2 | #define REV1_CONFIG_H | ||
3 | 2 | ||
4 | #include "../helix.h" | 3 | #include "../helix.h" |
5 | 4 | ||
@@ -13,7 +12,7 @@ | |||
13 | #endif | 12 | #endif |
14 | #endif | 13 | #endif |
15 | 14 | ||
16 | #if HELIX_ROWS == 3 | 15 | #if MATRIX_ROWS == 6 // HELIX_ROWS == 3 |
17 | #ifndef FLIP_HALF | 16 | #ifndef FLIP_HALF |
18 | // Standard Keymap | 17 | // Standard Keymap |
19 | // (TRRS jack on the left half is to the right, TRRS jack on the right half is to the left) | 18 | // (TRRS jack on the left half is to the right, TRRS jack on the right half is to the left) |
@@ -47,7 +46,7 @@ | |||
47 | { R20, R21, R22, R23, R24, R25 }, \ | 46 | { R20, R21, R22, R23, R24, R25 }, \ |
48 | } | 47 | } |
49 | #endif | 48 | #endif |
50 | #elif HELIX_ROWS == 4 | 49 | #elif MATRIX_ROWS == 8 // HELIX_ROWS == 4 |
51 | #ifndef FLIP_HALF | 50 | #ifndef FLIP_HALF |
52 | // Standard Keymap | 51 | // Standard Keymap |
53 | // (TRRS jack on the left half is to the right, TRRS jack on the right half is to the left) | 52 | // (TRRS jack on the left half is to the right, TRRS jack on the right half is to the left) |
@@ -87,7 +86,7 @@ | |||
87 | { R30, R31, R32, R33, R34, R35 } \ | 86 | { R30, R31, R32, R33, R34, R35 } \ |
88 | } | 87 | } |
89 | #endif | 88 | #endif |
90 | #elif HELIX_ROWS == 5 | 89 | #elif MATRIX_ROWS == 10 // HELIX_ROWS == 5 |
91 | #ifndef FLIP_HALF | 90 | #ifndef FLIP_HALF |
92 | // Standard Keymap | 91 | // Standard Keymap |
93 | // (TRRS jack on the left half is to the right, TRRS jack on the right half is to the left) | 92 | // (TRRS jack on the left half is to the right, TRRS jack on the right half is to the left) |
@@ -138,7 +137,7 @@ | |||
138 | #endif | 137 | #endif |
139 | 138 | ||
140 | // Used to create a keymap using only KC_ prefixed keys | 139 | // Used to create a keymap using only KC_ prefixed keys |
141 | #if HELIX_ROWS == 3 | 140 | #if MATRIX_ROWS == 6 // HELIX_ROWS == 3 |
142 | #define LAYOUT_kc( \ | 141 | #define LAYOUT_kc( \ |
143 | L00, L01, L02, L03, L04, L05, R00, R01, R02, R03, R04, R05, \ | 142 | L00, L01, L02, L03, L04, L05, R00, R01, R02, R03, R04, R05, \ |
144 | L10, L11, L12, L13, L14, L15, R10, R11, R12, R13, R14, R15, \ | 143 | L10, L11, L12, L13, L14, L15, R10, R11, R12, R13, R14, R15, \ |
@@ -149,7 +148,7 @@ | |||
149 | KC_##L10, KC_##L11, KC_##L12, KC_##L13, KC_##L14, KC_##L15, KC_##R10, KC_##R11, KC_##R12, KC_##R13, KC_##R14, KC_##R15, \ | 148 | KC_##L10, KC_##L11, KC_##L12, KC_##L13, KC_##L14, KC_##L15, KC_##R10, KC_##R11, KC_##R12, KC_##R13, KC_##R14, KC_##R15, \ |
150 | KC_##L20, KC_##L21, KC_##L22, KC_##L23, KC_##L24, KC_##L25, KC_##R20, KC_##R21, KC_##R22, KC_##R23, KC_##R24, KC_##R25 \ | 149 | KC_##L20, KC_##L21, KC_##L22, KC_##L23, KC_##L24, KC_##L25, KC_##R20, KC_##R21, KC_##R22, KC_##R23, KC_##R24, KC_##R25 \ |
151 | ) | 150 | ) |
152 | #elif HELIX_ROWS == 4 | 151 | #elif MATRIX_ROWS == 8 // HELIX_ROWS == 4 |
153 | #define LAYOUT_kc( \ | 152 | #define LAYOUT_kc( \ |
154 | L00, L01, L02, L03, L04, L05, R00, R01, R02, R03, R04, R05, \ | 153 | L00, L01, L02, L03, L04, L05, R00, R01, R02, R03, R04, R05, \ |
155 | L10, L11, L12, L13, L14, L15, R10, R11, R12, R13, R14, R15, \ | 154 | L10, L11, L12, L13, L14, L15, R10, R11, R12, R13, R14, R15, \ |
@@ -179,4 +178,3 @@ | |||
179 | ) | 178 | ) |
180 | #endif | 179 | #endif |
181 | 180 | ||
182 | #endif | ||