aboutsummaryrefslogtreecommitdiff
path: root/keyboards/meira/meira.h
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/meira/meira.h')
-rw-r--r--keyboards/meira/meira.h26
1 files changed, 11 insertions, 15 deletions
diff --git a/keyboards/meira/meira.h b/keyboards/meira/meira.h
index d96839440..c88561fa0 100644
--- a/keyboards/meira/meira.h
+++ b/keyboards/meira/meira.h
@@ -13,8 +13,8 @@
13 * You should have received a copy of the GNU General Public License 13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>. 14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */ 15 */
16#ifndef MEIRA_H 16
17#define MEIRA_H 17#pragma once
18 18
19#include "quantum.h" 19#include "quantum.h"
20#include "issi.h" 20#include "issi.h"
@@ -26,19 +26,15 @@ void reset_keyboard_kb(void);
26// The first section contains all of the arguments 26// The first section contains all of the arguments
27// The second converts the arguments into a two-dimensional array 27// The second converts the arguments into a two-dimensional array
28#define LAYOUT_ortho_4x12( \ 28#define LAYOUT_ortho_4x12( \
29 k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, \ 29 k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0A, k0B, \
30 k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, \ 30 k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1A, k1B, \
31 k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, \ 31 k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2A, k2B, \
32 k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b \ 32 k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3A, k3B \
33) \ 33) { \
34{ \ 34 { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0A, k0B }, \
35 { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b }, \ 35 { k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1A, k1B }, \
36 { k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b }, \ 36 { k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2A, k2B }, \
37 { k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b }, \ 37 { k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3A, k3B } \
38 { k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b } \
39} 38}
40 39
41#define LAYOUT LAYOUT_ortho_4x12 40#define LAYOUT LAYOUT_ortho_4x12
42
43#endif
44