diff options
Diffstat (limited to 'keyboards/lets_split/rev1/config.h')
-rw-r--r-- | keyboards/lets_split/rev1/config.h | 102 |
1 files changed, 102 insertions, 0 deletions
diff --git a/keyboards/lets_split/rev1/config.h b/keyboards/lets_split/rev1/config.h new file mode 100644 index 000000000..f4d900acc --- /dev/null +++ b/keyboards/lets_split/rev1/config.h | |||
@@ -0,0 +1,102 @@ | |||
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 | #ifndef CONFIG_H | ||
19 | #define CONFIG_H | ||
20 | |||
21 | #include "config_common.h" | ||
22 | |||
23 | /* USB Device descriptor parameter */ | ||
24 | #define VENDOR_ID 0xFEED | ||
25 | #define PRODUCT_ID 0x3060 | ||
26 | #define DEVICE_VER 0x0001 | ||
27 | #define MANUFACTURER Wootpatoot | ||
28 | #define PRODUCT Lets Split | ||
29 | #define DESCRIPTION A split keyboard for the cheap makers | ||
30 | |||
31 | /* key matrix size */ | ||
32 | // Rows are doubled-up | ||
33 | #define MATRIX_ROWS 8 | ||
34 | #define MATRIX_COLS 6 | ||
35 | |||
36 | // wiring of each half | ||
37 | #define MATRIX_ROW_PINS { B5, B4, E6, D7 } | ||
38 | #define MATRIX_COL_PINS { F4, F5, F6, F7, B1, B3 } | ||
39 | |||
40 | #define CATERINA_BOOTLOADER | ||
41 | |||
42 | // #define USE_I2C | ||
43 | |||
44 | // Use serial if not using I2C | ||
45 | #ifndef USE_I2C | ||
46 | # define USE_SERIAL | ||
47 | #endif | ||
48 | |||
49 | // #define EE_HANDS | ||
50 | |||
51 | #define I2C_MASTER_LEFT | ||
52 | // #define I2C_MASTER_RIGHT | ||
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_RSHIFT)) \ | ||
74 | ) | ||
75 | |||
76 | /* ws2812 RGB LED */ | ||
77 | #define RGB_DI_PIN D4 | ||
78 | #define RGBLIGHT_TIMER | ||
79 | #define RGBLED_NUM 8 // Number of LEDs | ||
80 | #define RGBLIGHT_HUE_STEP 10 | ||
81 | #define RGBLIGHT_SAT_STEP 17 | ||
82 | #define RGBLIGHT_VAL_STEP 17 | ||
83 | |||
84 | /* | ||
85 | * Feature disable options | ||
86 | * These options are also useful to firmware size reduction. | ||
87 | */ | ||
88 | |||
89 | /* disable debug print */ | ||
90 | // #define NO_DEBUG | ||
91 | |||
92 | /* disable print */ | ||
93 | // #define NO_PRINT | ||
94 | |||
95 | /* disable action features */ | ||
96 | //#define NO_ACTION_LAYER | ||
97 | //#define NO_ACTION_TAPPING | ||
98 | //#define NO_ACTION_ONESHOT | ||
99 | //#define NO_ACTION_MACRO | ||
100 | //#define NO_ACTION_FUNCTION | ||
101 | |||
102 | #endif | ||