summaryrefslogtreecommitdiff
path: root/keyboard/gh60/config.h
diff options
context:
space:
mode:
authortmk <nobody@nowhere>2013-02-10 23:01:20 +0900
committertmk <nobody@nowhere>2013-02-10 23:01:20 +0900
commit4701b08b71b187cb3d015bec7e05d30e35c344ac (patch)
tree1f17d9e3086118e88f44c8aed537c7197364183b /keyboard/gh60/config.h
parent9a72c7b8a2e2f7ed2cd239ad3308c4b4dbc29ff0 (diff)
parent9dfc611ae1903390a41b85da1cba2c6d67c7a8dd (diff)
Merge branch 'gh60'
Diffstat (limited to 'keyboard/gh60/config.h')
-rw-r--r--keyboard/gh60/config.h50
1 files changed, 50 insertions, 0 deletions
diff --git a/keyboard/gh60/config.h b/keyboard/gh60/config.h
new file mode 100644
index 0000000000..6e7b1bd7a5
--- /dev/null
+++ b/keyboard/gh60/config.h
@@ -0,0 +1,50 @@
+/*
+Copyright 2012 Jun Wako <wakojun@gmail.com>
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 2 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#ifndef CONFIG_H
+#define CONFIG_H
+
+
+/* USB Device descriptor parameter */
+#define VENDOR_ID 0xFEED
+#define PRODUCT_ID 0x6060
+#define DEVICE_VER 0x0001
+#define MANUFACTURER geekhack
+#define PRODUCT GH60
+
+
+/* message strings */
+#define DESCRIPTION t.m.k. keyboard firmware for GH60
+
+
+/* matrix size */
+#define MATRIX_ROWS 5
+#define MATRIX_COLS 14
+
+/* define if matrix has ghost */
+//#define MATRIX_HAS_GHOST
+
+/* Set 0 if need no debouncing */
+#define DEBOUNCE 5
+
+
+/* key combination for command */
+#define IS_COMMAND() ( \
+ keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \
+)
+
+#endif