aboutsummaryrefslogtreecommitdiff
path: root/keyboards/aeboards/constellation/constellation.h
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/aeboards/constellation/constellation.h')
-rwxr-xr-xkeyboards/aeboards/constellation/constellation.h21
1 files changed, 6 insertions, 15 deletions
diff --git a/keyboards/aeboards/constellation/constellation.h b/keyboards/aeboards/constellation/constellation.h
index 53a95d5d8..a46732771 100755
--- a/keyboards/aeboards/constellation/constellation.h
+++ b/keyboards/aeboards/constellation/constellation.h
@@ -1,4 +1,5 @@
1/* Copyright 2018 Jason Williams (Wilba) 1/* Copyright 2018 Jason Williams (Wilba)
2 * Copyright 2021 Harrison Chan (Xelus)
2 * 3 *
3 * This program is free software: you can redistribute it and/or modify 4 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by 5 * it under the terms of the GNU General Public License as published by
@@ -18,18 +19,8 @@
18 19
19#include "quantum.h" 20#include "quantum.h"
20 21
21#define ____ KC_NO 22#if defined(KEYBOARD_aeboards_constellation_rev1)
22 23 #include "rev1.h"
23#define LAYOUT_all( \ 24#elif defined(KEYBOARD_aeboards_constellation_rev2)
24 K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, K012, K013, K213, K014, \ 25 #include "rev2.h"
25 K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, K113, K114, \ 26#endif
26 K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, K214, \
27 K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310, K312, K313, K314, \
28 K400, K401, K402, K408, K409, K410, K412, K413, K414 \
29) { \
30 { K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, K012, K013, K014 }, \
31 { K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, K113, K114 }, \
32 { K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, K213, K214 }, \
33 { K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310, ____, K312, K313, K314 }, \
34 { K400, K401, K402, ____, ____, ____, ____, ____, K408, K409, K410, ____, K412, K413, K414 } \
35}