summaryrefslogtreecommitdiff
path: root/keyboards/dichotomy
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2021-09-01 19:03:14 +1000
committerGitHub <noreply@github.com>2021-09-01 19:03:14 +1000
commit41c50bb653b840c595fb31541729d892f68666e6 (patch)
treeba05c7c9654f7be1104b20f3195dd2cf288e004e /keyboards/dichotomy
parent971d36bb9ea37962c57733e5f7c0c24e5a6cebeb (diff)
Change keyboard level include guards to `pragma once` (#14248)
* Change keyboard level include guards to `pragma once` And clean up a lot of layout macros * Oops * Remove dangling endif
Diffstat (limited to 'keyboards/dichotomy')
-rw-r--r--keyboards/dichotomy/config.h5
-rwxr-xr-xkeyboards/dichotomy/dichotomy.h30
2 files changed, 15 insertions, 20 deletions
diff --git a/keyboards/dichotomy/config.h b/keyboards/dichotomy/config.h
index 0cdaf776b4..03e19b1388 100644
--- a/keyboards/dichotomy/config.h
+++ b/keyboards/dichotomy/config.h
@@ -15,8 +15,7 @@ You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>. 15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/ 16*/
17 17
18#ifndef CONFIG_H 18#pragma once
19#define CONFIG_H
20 19
21#include "config_common.h" 20#include "config_common.h"
22 21
@@ -66,5 +65,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
66 UCSR1B = _BV(TXEN1) | _BV(RXEN1); \ 65 UCSR1B = _BV(TXEN1) | _BV(RXEN1); \
67 /* 8-bit data */ \ 66 /* 8-bit data */ \
68 UCSR1C = _BV(UCSZ11) | _BV(UCSZ10); 67 UCSR1C = _BV(UCSZ11) | _BV(UCSZ10);
69
70#endif
diff --git a/keyboards/dichotomy/dichotomy.h b/keyboards/dichotomy/dichotomy.h
index 2023259b11..37372d6496 100755
--- a/keyboards/dichotomy/dichotomy.h
+++ b/keyboards/dichotomy/dichotomy.h
@@ -1,5 +1,4 @@
1#ifndef DICHOTOMY_H 1#pragma once
2#define DICHOTOMY_H
3 2
4#include "report.h" 3#include "report.h"
5#include "pointing_device.h" 4#include "pointing_device.h"
@@ -25,22 +24,21 @@
25#define set_led_cyan() red_led_off(); grn_led_on(); blu_led_on() 24#define set_led_cyan() red_led_off(); grn_led_on(); blu_led_on()
26#define set_led_white() red_led_on(); grn_led_on(); blu_led_on() 25#define set_led_white() red_led_on(); grn_led_on(); blu_led_on()
27 26
27#define XXX KC_NO
28
28// This a shortcut to help you visually see your layout. 29// This a shortcut to help you visually see your layout.
29// The first section contains all of the arguements 30// The first section contains all of the arguements
30// The second converts the arguments into a two-dimensional array 31// The second converts the arguments into a two-dimensional array
31#define LAYOUT( \ 32#define LAYOUT( \
32 k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0A, k0B, \ 33 k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0A, k0B, \
33 k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1A, k1B, \ 34 k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1A, k1B, \
34 k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2A, k2B, \ 35 k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2A, k2B, \
35 k33, k34, k35, k36, k37, k38, \ 36 k33, k34, k35, k36, k37, k38, \
36 k42, k43, k44, k45, k46, k47, k48, k49 \ 37 k42, k43, k44, k45, k46, k47, k48, k49 \
37) \ 38) { \
38{ \ 39 { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0A, k0B }, \
39 { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0A, k0B }, \ 40 { k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1A, k1B }, \
40 { k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1A, k1B }, \ 41 { k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2A, k2B }, \
41 { k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2A, k2B }, \ 42 { XXX, XXX, XXX, k33, k34, k35, k36, k37, k38, XXX, XXX, XXX }, \
42 { KC_NO, KC_NO, KC_NO, k33, k34, k35, k36, k37, k38, KC_NO, KC_NO, KC_NO }, \ 43 { XXX, XXX, k42, k43, k44, k45, k46, k47, k48, k49, XXX, XXX } \
43 { KC_NO, KC_NO, k42, k43, k44, k45, k46, k47, k48, k49, KC_NO, KC_NO } \
44} 44}
45
46#endif