]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/c39/config.h
Add user-overridable callback for cancelling UCIS input (#5564)
[qmk_firmware.git] / keyboards / c39 / config.h
1 /*
2 Copyright 2012 Jun Wako <wakojun@gmail.com>
3
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 2 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 #pragma once
19
20 #include "config_common.h"
21
22 /* USB Device descriptor parameter */
23 #define VENDOR_ID       0xCA17
24 #define PRODUCT_ID      0xCA39
25 #define DEVICE_VER      0x0001
26 #define MANUFACTURER    Maple Computing
27 #define PRODUCT         C39
28 #define DESCRIPTION     A compact 39 key keyboard
29
30 /* key matrix size */
31 #define MATRIX_ROWS 3
32 #define MATRIX_COLS 13
33
34 #define MATRIX_ROW_PINS { D1, B4, B5 }
35 #define MATRIX_COL_PINS { F4, F5, F6, F7, B1, B3, B2, B6, D7, E6, C6, D2, D3 }
36
37 /* COL2ROW or ROW2COL */
38 #define DIODE_DIRECTION COL2ROW
39
40 /*
41  * Force NKRO
42  *
43  * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved
44  * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the
45  * makefile for this to work.)
46  *
47  * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N)
48  * until the next keyboard reset.
49  *
50  * NKRO may prevent your keystrokes from being detected in the BIOS, but it is
51  * fully operational during normal computer usage.
52  *
53  * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N)
54  * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by
55  * bootmagic, NKRO mode will always be enabled until it is toggled again during a
56  * power-up.
57  *
58  */
59 //#define FORCE_NKRO
60
61 /*
62  * Magic Key Options
63  *
64  * Magic keys are hotkey commands that allow control over firmware functions of
65  * the keyboard. They are best used in combination with the HID Listen program,
66  * found here: https://www.pjrc.com/teensy/hid_listen.html
67  *
68  * The options below allow the magic key functionality to be changed. This is
69  * useful if your keyboard/keypad is missing keys and you want magic key support.
70  *
71  */
72
73 /*
74  * Feature disable options
75  *  These options are also useful to firmware size reduction.
76  */
77
78 /* disable debug print */
79 //#define NO_DEBUG
80
81 /* disable print */
82 //#define NO_PRINT
83
84 /* disable action features */
85 //#define NO_ACTION_LAYER
86 //#define NO_ACTION_TAPPING
87 //#define NO_ACTION_ONESHOT
88 //#define NO_ACTION_MACRO
89 //#define NO_ACTION_FUNCTION