]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/gergo/config.h
[Keymap] idobo/drewdobo keymap v1 (#6744)
[qmk_firmware.git] / keyboards / gergo / 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 #define BOOTMAGIC_LITE_ROW 13
25 #define BOOTMAGIC_LITE_COLUMN 2
26
27 /* Defaults */
28 #ifndef BALLSTEP
29 #define BALLSTEP 20
30 #endif
31
32 #ifndef SCROLLSTEP
33 #define SCROLLSTEP 1
34 #endif
35
36 #define VERBOSE
37
38 /* USB Device descriptor parameter */
39 #define VENDOR_ID       0xFEED
40 #define PRODUCT_ID      0x1307
41 #define DEVICE_VER      0x0001
42 #define MANUFACTURER    g Heavy Industries
43 #define PRODUCT         Gergo
44 #define DESCRIPTION     QMK keyboard firmware for Gergo
45
46 /* key matrix size */
47 #define MATRIX_ROWS 14
48 #define MATRIX_ROWS_PER_SIDE (MATRIX_ROWS / 2)
49 #define MATRIX_COLS 4
50
51 #define MOUSEKEY_INTERVAL       20
52 #define MOUSEKEY_DELAY          0
53 #define MOUSEKEY_TIME_TO_MAX    60
54 #define MOUSEKEY_MAX_SPEED      7
55 #define MOUSEKEY_WHEEL_DELAY 0
56 #define TAPPING_TOGGLE  1
57
58 /* define if matrix has ghost */
59 //#define MATRIX_HAS_GHOST
60
61 #define TAPPING_TERM    200
62 #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.)
63
64 /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
65 #define LOCKING_SUPPORT_ENABLE
66 /* Locking resynchronize hack */
67 #define LOCKING_RESYNC_ENABLE
68
69 /* key combination for command */
70 #define IS_COMMAND() ( \
71     get_mods() == (MOD_BIT(KC_LCTL) | MOD_BIT(KC_RCTL)) || \
72     get_mods() == (MOD_BIT(KC_LSFT) | MOD_BIT(KC_RSFT)) \
73 )
74
75 #define DEBOUNCE    5
76 #define USB_MAX_POWER_CONSUMPTION 500