]> git.gir.st - tmk_keyboard.git/blame_incremental - keyboard/minorca/config.h
fixed config
[tmk_keyboard.git] / keyboard / minorca / config.h
... / ...
CommitLineData
1/*
2Copyright 2012 Jun Wako <wakojun@gmail.com>
3This program is free software: you can redistribute it and/or modify
4it under the terms of the GNU General Public License as published by
5the Free Software Foundation, either version 2 of the License, or
6(at your option) any later version.
7This program is distributed in the hope that it will be useful,
8but WITHOUT ANY WARRANTY; without even the implied warranty of
9MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10GNU General Public License for more details.
11You should have received a copy of the GNU General Public License
12along with this program. If not, see <http://www.gnu.org/licenses/>.
13*/
14
15#ifndef CONFIG_H
16#define CONFIG_H
17
18
19/* USB Device descriptor parameter */
20#define VENDOR_ID 0xFEED
21#define PRODUCT_ID 0x6060
22#define DEVICE_VER 0x0001
23#define MANUFACTURER Panc Interactive
24#define PRODUCT Minorca
25#define DESCRIPTION t.m.k. keyboard firmware for Minorca
26
27/* key matrix size */
28#define MATRIX_ROWS 4
29#define MATRIX_COLS 12
30
31/* define if matrix has ghost */
32//#define MATRIX_HAS_GHOST
33
34/* Set 0 if debouncing isn't needed */
35#define DEBOUNCE 5
36
37/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
38#define LOCKING_SUPPORT_ENABLE
39/* Locking resynchronize hack */
40#define LOCKING_RESYNC_ENABLE
41
42/* key combination for command */
43#define IS_COMMAND() ( \
44 keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \
45)
46
47
48
49/*
50 * Feature disable options
51 * These options are also useful to firmware size reduction.
52 */
53
54/* disable debug print */
55//#define NO_DEBUG
56
57/* disable print */
58//#define NO_PRINT
59
60/* disable action features */
61//#define NO_ACTION_LAYER
62//#define NO_ACTION_TAPPING
63//#define NO_ACTION_ONESHOT
64//#define NO_ACTION_MACRO
65//#define NO_ACTION_FUNCTION
66
67#endif
Imprint / Impressum