2 Copyright 2012 Jun Wako <wakojun@gmail.com>
3 Copyright 2013 Oleg Kostyuk <cub.uanic@gmail.com>
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
19 // Copy and worked on with love from the EZ team
22 #include "config_common.h"
26 #define VERSION "Alpha 01: Ted "
30 #define NO_ACTION_MACRO
31 #define NO_ACTION_FUNCTION
33 #define NO_ACTION_ONESHOT
34 #define NO_ACTION_FUNCTION
36 /* USB Device descriptor parameter */
37 #define VENDOR_ID 0xFEED
38 #define PRODUCT_ID 0x1337
39 #define DEVICE_VER 0x0001
40 #define MANUFACTURER g Heavy Industries
41 #define PRODUCT Georgi
42 #define DESCRIPTION QMK keyboard firmware for Georgi
45 #define MATRIX_ROWS 14
46 #define MATRIX_ROWS_PER_SIDE (MATRIX_ROWS / 2)
49 #define MOUSEKEY_INTERVAL 20
50 #define MOUSEKEY_DELAY 0
51 #define MOUSEKEY_TIME_TO_MAX 60
52 #define MOUSEKEY_MAX_SPEED 7
53 #define MOUSEKEY_WHEEL_DELAY 0
54 #define TAPPING_TOGGLE 2
56 /* define if matrix has ghost */
57 //#define MATRIX_HAS_GHOST
59 #define TAPPING_TERM 200
60 #define IGNORE_MOD_TAP_INTERRUPT // this makes it possible to do rolling combos (zx) with keys that convert to other keys on hold (z becomes ctrl when you hold it, and when this option isn't enabled, z rapidly followed by x actually sends Ctrl-x. That's bad.)
62 /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
63 #define LOCKING_SUPPORT_ENABLE
64 /* Locking resynchronize hack */
65 #define LOCKING_RESYNC_ENABLE
67 /* key combination for command */
68 #define IS_COMMAND() ( \
69 keyboard_report->mods == (MOD_BIT(KC_LCTL) | MOD_BIT(KC_RCTL)) || \
70 keyboard_report->mods == (MOD_BIT(KC_LSFT) | MOD_BIT(KC_RSFT)) \
74 #define USB_MAX_POWER_CONSUMPTION 500