From c009f4643c17084b8f632b3292e0c7962b324ae5 Mon Sep 17 00:00:00 2001 From: tmk Date: Thu, 27 Dec 2012 02:41:32 +0900 Subject: Added Initial files for gh60. --- keyboard/gh60/config.h | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 keyboard/gh60/config.h (limited to 'keyboard/gh60/config.h') diff --git a/keyboard/gh60/config.h b/keyboard/gh60/config.h new file mode 100644 index 000000000..6e7b1bd7a --- /dev/null +++ b/keyboard/gh60/config.h @@ -0,0 +1,50 @@ +/* +Copyright 2012 Jun Wako + +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 . +*/ + +#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 -- cgit v1.2.3