]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/treadstone48/rev1/config.h
Replace DEBOUNCING_DELAY (deprecated) with DEBOUNCE (#5997)
[qmk_firmware.git] / keyboards / treadstone48 / rev1 / config.h
1 /*
2 Copyright 2012 Jun Wako <wakojun@gmail.com>
3 Copyright 2015 Jack Humbert
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 #ifndef REV1_CONFIG_H
20 #define REV1_CONFIG_H
21
22 /* USB Device descriptor parameter */
23 #define VENDOR_ID       0xFEED
24 #define PRODUCT_ID      0xDFA3
25 #define DEVICE_VER      0x0010
26 #define MANUFACTURER    marksard
27 #define PRODUCT         treadstone48
28 #define DESCRIPTION     Symmetrical staggered 47+1 Keys Keyboard
29
30 #define PREVENT_STUCK_MODIFIERS
31 #define TAPPING_FORCE_HOLD
32 #define TAPPING_TERM 150
33
34 /* Use I2C or Serial */
35 #define USE_I2C
36 #define USE_SERIAL
37 //#define USE_MATRIX_I2C
38
39 /* Select hand configuration */
40 #define MASTER_LEFT
41 // #define MASTER_RIGHT
42 // #define EE_HANDS
43
44 // OLED support
45 //      see ./rules.mk: OLED_ENABLE=yes or no
46 #ifdef OLED_ENABLE
47   #define SSD1306OLED
48 #endif
49
50 /* key matrix size */
51 // Rows are doubled-up
52 #define MATRIX_ROWS 16
53 #define MATRIX_ROW_PINS { F4, F5, F6, F7, B1, B3, B2, B6 }
54
55 // wiring of each half
56 #define MATRIX_COLS 6
57 #define MATRIX_COL_PINS { D4, C6, D7, E6, B4, B5 }
58
59 /* define if matrix has ghost */
60 //#define MATRIX_HAS_GHOST
61
62 /* number of backlight levels */
63 // #define BACKLIGHT_LEVELS 3
64
65 /* Set 0 if debouncing isn't needed */
66 #define DEBOUNCE 5
67
68 /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
69 //#define LOCKING_SUPPORT_ENABLE
70 /* Locking resynchronize hack */
71 //#define LOCKING_RESYNC_ENABLE
72
73 /* ws2812 RGB LED */
74 #define RGB_DI_PIN D3
75 #define RGBLIGHT_TIMER
76 //#define RGBLED_NUM 12    // Number of LEDs. see ./keymaps/default/config.h
77 #define ws2812_PORTREG  PORTD
78 #define ws2812_DDRREG   DDRD
79
80 // treadstone48 keyboard RGB LED support
81 //#define RGBLIGHT_ANIMATIONS : see ./rules.mk: LED_ANIMATIONS = yes or no
82 //    see ./rules.mk: LED_BACK_ENABLE or LED_UNDERGLOW_ENABLE set yes
83 #define RGBLED_NUM 12
84
85 #ifndef IOS_DEVICE_ENABLE
86   #define RGBLIGHT_LIMIT_VAL 180
87   #define RGBLIGHT_VAL_STEP 17
88 #else
89   #define RGBLIGHT_LIMIT_VAL 50
90   #define RGBLIGHT_VAL_STEP 4
91 #endif
92 #define RGBLIGHT_HUE_STEP 10
93 #define RGBLIGHT_SAT_STEP 17
94
95 #if defined(RGBLIGHT_ENABLE) && !defined(IOS_DEVICE_ENABLE)
96 // USB_MAX_POWER_CONSUMPTION value for treadstone48 keyboard
97 //  120  RGBoff, OLEDoff
98 //  120  OLED
99 //  330  RGB 6
100 //  300  RGB 32
101 //  310  OLED & RGB 32
102   #define USB_MAX_POWER_CONSUMPTION 400
103 #else
104   // fix iPhone and iPad power adapter issue
105   // iOS device need lessthan 100
106   #define USB_MAX_POWER_CONSUMPTION 100
107 #endif
108
109 /*
110  * Feature disable options
111  *  These options are also useful to firmware size reduction.
112  */
113
114 /* disable debug print */
115 // #define NO_DEBUG
116
117 /* disable print */
118 // #define NO_PRINT
119
120 /* disable action features */
121 //#define NO_ACTION_LAYER
122 //#define NO_ACTION_TAPPING
123 //#define NO_ACTION_ONESHOT
124 //#define NO_ACTION_MACRO
125 //#define NO_ACTION_FUNCTION
126
127
128 #endif