summaryrefslogtreecommitdiff
path: root/keyboard/Bantam44/Bantam44.h
diff options
context:
space:
mode:
authorErez Zukerman2016-05-24 23:55:29 -0400
committerErez Zukerman2016-05-24 23:55:29 -0400
commitd06e940a179b2e81563cf6123461cfcad35f9045 (patch)
tree58f4bbc22f51cba0c22a6a1ab09a499681f1f89e /keyboard/Bantam44/Bantam44.h
parent8bc69afc633d3e199e3ac0a5bf39e4d255f2ce4a (diff)
[Erez & Jack] Removes keyboards which are not active on qmk
Diffstat (limited to 'keyboard/Bantam44/Bantam44.h')
-rw-r--r--keyboard/Bantam44/Bantam44.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/keyboard/Bantam44/Bantam44.h b/keyboard/Bantam44/Bantam44.h
deleted file mode 100644
index fa5b9df9e..000000000
--- a/keyboard/Bantam44/Bantam44.h
+++ /dev/null
@@ -1,29 +0,0 @@
-#ifndef BANTAM44_H
-#define BANTAM44_H
-
-#include "matrix.h"
-#include "keymap_common.h"
-#include "backlight.h"
-#include <stddef.h>
-
-// This a shortcut to help you visually see your layout.
-// The following is an example using the Planck MIT layout
-// The first section contains all of the arguements
-// The second converts the arguments into a two-dimensional array
-#define KEYMAP( \
- K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, \
- K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, \
- K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, \
- K30, K31, K32, K33, K34, K35, K36, K37, K38 \
-) \
-{ \
- { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B }, \
- { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, KC_NO, K2A }, \
- { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B }, \
- { K30, K31, K32, KC_NO, K33, KC_NO, K34, KC_NO, K35, K36, K37, K38 }, \
-}
-
-void matrix_init_user(void);
-void matrix_scan_user(void);
-
-#endif