summaryrefslogtreecommitdiffstats
path: root/keyboard/hhkb/hhkb.h
diff options
context:
space:
mode:
authorJack Humbert <jack.humb@gmail.com>2016-06-21 22:39:54 -0400
committerGitHub <noreply@github.com>2016-06-21 22:39:54 -0400
commit649b33d7783cf3021928534b7ae127e0a89e8807 (patch)
treec2b5e0cf8ff4aa2918e3b88ab75dbdb071cc0a1d /keyboard/hhkb/hhkb.h
parent464c8e274f993d3571fe5ea5e836fe55a3912ffe (diff)
Renames keyboard folder to keyboards, adds couple of tmk's fixes (#432)
* fixes from tmk's repo * rename keyboard to keyboards
Diffstat (limited to 'keyboard/hhkb/hhkb.h')
-rw-r--r--keyboard/hhkb/hhkb.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/keyboard/hhkb/hhkb.h b/keyboard/hhkb/hhkb.h
deleted file mode 100644
index 093d7aeabc..0000000000
--- a/keyboard/hhkb/hhkb.h
+++ /dev/null
@@ -1,30 +0,0 @@
-#ifndef HHKB_H
-#define HHKB_H
-
-#include "matrix.h"
-#include "keymap.h"
-//#include "backlight.h"
-#include <stddef.h>
-
-#define KEYMAP( \
- K31, K30, K00, K10, K11, K20, K21, K40, K41, K60, K61, K70, K71, K50, K51, \
- K32, K01, K02, K13, K12, K23, K22, K42, K43, K62, K63, K73, K72, K52, \
- K33, K04, K03, K14, K15, K24, K25, K45, K44, K65, K64, K74, K53, \
- K34, K05, K06, K07, K16, K17, K26, K46, K66, K76, K75, K55, K54, \
- K35, K36, K37, K57, K56) \
- \
-{ \
- { K00, K01, K02, K03, K04, K05, K06, K07 }, \
- { K10, K11, K12, K13, K14, K15, K16, K17 }, \
- { K20, K21, K22, K23, K24, K25, K26, KC_NO }, \
- { K30, K31, K32, K33, K34, K35, K36, K37 }, \
- { K40, K41, K42, K43, K44, K45, K46, KC_NO }, \
- { K50, K51, K52, K53, K54, K55, K56, K57 }, \
- { K60, K61, K62, K63, K64, K65, K66, KC_NO }, \
- { K70, K71, K72, K73, K74, K75, K76, KC_NO } \
-}
-
-void matrix_init_user(void);
-void matrix_scan_user(void);
-
-#endif