summaryrefslogtreecommitdiff
path: root/keyboard/gh60/config.h
diff options
context:
space:
mode:
authortmk <nobody@nowhere>2012-12-27 02:41:32 +0900
committertmk <nobody@nowhere>2012-12-27 02:41:32 +0900
commitc009f4643c17084b8f632b3292e0c7962b324ae5 (patch)
tree10490ca64f2ee8cbe6d5f6531c954826f2c4756e /keyboard/gh60/config.h
parent6ebe99f37c15c80c36d942e581794dc0cf3b68a4 (diff)
Added Initial files for 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