]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/orthodox/rev3/config.h
2e4018e91bfd7f65ff6f0c8e0248aff85985abc2
[qmk_firmware.git] / keyboards / orthodox / rev3 / config.h
1 /*
2 This is the c configuration file for the subproject
3
4 Copyright 2012 Jun Wako <wakojun@gmail.com>
5 Copyright 2015 Jack Humbert
6 Copyright 2017 Art Ortenburger
7
8 This program is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 2 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 */
21
22 #ifndef REV3_CONFIG_H
23 #define REV3_CONFIG_H
24
25 #include "config_common.h"
26
27 /* USB Device descriptor parameter */
28 #define VENDOR_ID       0xFEED
29 #define PRODUCT_ID      0x3060
30 #define DEVICE_VER      0x0001
31 #define MANUFACTURER    deductivemonkee
32 #define PRODUCT         Monkeebs Orthodox Rev.3
33 #define DESCRIPTION     Bananadox
34
35 /* key matrix size */
36 // Rows are doubled-up
37 #define MATRIX_ROWS 6
38 #define MATRIX_COLS 9
39
40 // wiring of each half
41
42 //REV.3 PRO MICRO
43 #define MATRIX_ROW_PINS { D2, B4, B5, }
44 #define MATRIX_COL_PINS { D7, F4, F5, B6, B2, B3, B1, F7, F6 }
45
46 /*/
47 //REV.3 TEENSY
48 #define MATRIX_ROW_PINS { B0, C6, C7, }
49 #define MATRIX_COL_PINS { D2, F5, F6, D6, D7, B4, B5, B6, F7 }
50 /*/
51
52 #define CATERINA_BOOTLOADER
53
54 /* COL2ROW or ROW2COL */
55 #define DIODE_DIRECTION COL2ROW
56
57 /* define if matrix has ghost */
58 //#define MATRIX_HAS_GHOST
59
60 /* number of backlight levels */
61 // #define BACKLIGHT_LEVELS 3
62
63 /* Set 0 if debouncing isn't needed */
64 #define DEBOUNCING_DELAY 5
65
66 /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
67 // #define LOCKING_SUPPORT_ENABLE
68 /* Locking resynchronize hack */
69 // #define LOCKING_RESYNC_ENABLE
70
71 /* key combination for command */
72 #define IS_COMMAND() ( \
73     keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_LGUI)) \
74 )
75
76 /* ws2812 RGB LED */
77 //#define RGB_DI_PIN D3
78
79 //#define RGBLED_NUM 16    // Number of LEDs
80
81 /*
82  * Feature disable options
83  *  These options are also useful to firmware size reduction.
84  */
85
86 /* disable debug print */
87 // #define NO_DEBUG
88
89 /* disable print */
90 // #define NO_PRINT
91
92 /* disable action features */
93 //#define NO_ACTION_LAYER
94 //#define NO_ACTION_TAPPING
95 //#define NO_ACTION_ONESHOT
96 //#define NO_ACTION_MACRO
97 //#define NO_ACTION_FUNCTION
98
99 #endif