aboutsummaryrefslogtreecommitdiff
path: root/keyboards/helix/rev2/rev2.h
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/helix/rev2/rev2.h')
-rw-r--r--keyboards/helix/rev2/rev2.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/keyboards/helix/rev2/rev2.h b/keyboards/helix/rev2/rev2.h
index f49299983..4e69daef5 100644
--- a/keyboards/helix/rev2/rev2.h
+++ b/keyboards/helix/rev2/rev2.h
@@ -1,5 +1,4 @@
1#ifndef REV2_H 1#pragma once
2#define REV2_CONFIG_H
3 2
4#include "../helix.h" 3#include "../helix.h"
5 4
@@ -18,7 +17,7 @@
18#endif 17#endif
19#endif 18#endif
20 19
21#if HELIX_ROWS == 4 20#if MATRIX_ROWS == 8 // HELIX_ROWS == 4
22#ifndef FLIP_HALF 21#ifndef FLIP_HALF
23// Standard Keymap 22// Standard Keymap
24// (TRRS jack on the left half is to the right, TRRS jack on the right half is to the left) 23// (TRRS jack on the left half is to the right, TRRS jack on the right half is to the left)
@@ -107,7 +106,7 @@
107#endif 106#endif
108 107
109// Used to create a keymap using only KC_ prefixed keys 108// Used to create a keymap using only KC_ prefixed keys
110#if HELIX_ROWS == 4 109#if MATRIX_ROWS == 8 // HELIX_ROWS == 4
111 #define LAYOUT_kc( \ 110 #define LAYOUT_kc( \
112 L00, L01, L02, L03, L04, L05, R00, R01, R02, R03, R04, R05, \ 111 L00, L01, L02, L03, L04, L05, R00, R01, R02, R03, R04, R05, \
113 L10, L11, L12, L13, L14, L15, R10, R11, R12, R13, R14, R15, \ 112 L10, L11, L12, L13, L14, L15, R10, R11, R12, R13, R14, R15, \
@@ -136,5 +135,3 @@
136 KC_##L40, KC_##L41, KC_##L42, KC_##L43, KC_##L44, KC_##L45, KC_##L46, KC_##R46, KC_##R40, KC_##R41, KC_##R42, KC_##R43, KC_##R44, KC_##R45 \ 135 KC_##L40, KC_##L41, KC_##L42, KC_##L43, KC_##L44, KC_##L45, KC_##L46, KC_##R46, KC_##R40, KC_##R41, KC_##R42, KC_##R43, KC_##R44, KC_##R45 \
137 ) 136 )
138#endif 137#endif
139
140#endif