]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/georgi/config.h
Update KBD67 readme so that it mentions the KBD65 PCB (#5143)
[qmk_firmware.git] / keyboards / georgi / config.h
1 /*
2 Copyright 2012 Jun Wako <wakojun@gmail.com>
3 Copyright 2013 Oleg Kostyuk <cub.uanic@gmail.com>
4
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.
9
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.
14
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/>.
17 */
18
19 // Copy and worked on with love from the EZ team
20
21 #pragma once
22 #include "config_common.h"
23
24 /* Defaults */
25
26 #define VERSION "Alpha 01: Ted "
27 #define VERBOSE
28
29 #define FORCE_NKRO
30 #define NO_ACTION_MACRO
31 #define NO_ACTION_FUNCTION
32 #define NO_DEBUG
33 #define NO_ACTION_ONESHOT
34 #define NO_ACTION_FUNCTION
35
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
43
44 /* key matrix size */
45 #define MATRIX_ROWS 14
46 #define MATRIX_ROWS_PER_SIDE (MATRIX_ROWS / 2)
47 #define MATRIX_COLS 4
48
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
55
56 /* define if matrix has ghost */
57 //#define MATRIX_HAS_GHOST
58
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.)
61
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
66
67 /* key combination for command */
68 #define IS_COMMAND() ( \
69     get_mods() == (MOD_BIT(KC_LCTL) | MOD_BIT(KC_RCTL)) || \
70     get_mods() == (MOD_BIT(KC_LSFT) | MOD_BIT(KC_RSFT)) \
71 )
72
73 #define DEBOUNCE    5
74 #define USB_MAX_POWER_CONSUMPTION 500