aboutsummaryrefslogtreecommitdiff
path: root/keyboards/four_banger
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/four_banger')
-rw-r--r--keyboards/four_banger/config.h5
-rw-r--r--keyboards/four_banger/four_banger.h13
2 files changed, 6 insertions, 12 deletions
diff --git a/keyboards/four_banger/config.h b/keyboards/four_banger/config.h
index 30e2bd21a..7ad7a5c36 100644
--- a/keyboards/four_banger/config.h
+++ b/keyboards/four_banger/config.h
@@ -1,5 +1,4 @@
1#ifndef CONFIG_H 1#pragma once
2#define CONFIG_H
3 2
4#include "config_common.h" 3#include "config_common.h"
5 4
@@ -45,5 +44,3 @@
45#define RGBLIGHT_SAT_STEP 8 44#define RGBLIGHT_SAT_STEP 8
46#define RGBLIGHT_VAL_STEP 8 45#define RGBLIGHT_VAL_STEP 8
47#endif 46#endif
48
49#endif
diff --git a/keyboards/four_banger/four_banger.h b/keyboards/four_banger/four_banger.h
index a6da8dd0b..1d735a1f0 100644
--- a/keyboards/four_banger/four_banger.h
+++ b/keyboards/four_banger/four_banger.h
@@ -1,14 +1,11 @@
1#ifndef KB_H 1#pragma once
2#define KB_H
3 2
4#include "quantum.h" 3#include "quantum.h"
5 4
6#define LAYOUT_ortho_2x2( \ 5#define LAYOUT_ortho_2x2( \
7 K00, K01, \ 6 k00, k01, \
8 K10, K11 \ 7 k10, k11 \
9) { \ 8) { \
10 { K00, K01 }, \ 9 { k00, k01 }, \
11 { K10, K11 } \ 10 { k10, k11 } \
12} 11}
13
14#endif