diff options
Diffstat (limited to 'keyboards/christmas_tree/config.h')
-rw-r--r-- | keyboards/christmas_tree/config.h | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/keyboards/christmas_tree/config.h b/keyboards/christmas_tree/config.h new file mode 100644 index 000000000..531c5996d --- /dev/null +++ b/keyboards/christmas_tree/config.h | |||
@@ -0,0 +1,54 @@ | |||
1 | /* | ||
2 | Copyright 2012 Jun Wako <[email protected]> | ||
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 0xFEED | ||
24 | #define PRODUCT_ID 0x3070 | ||
25 | #define MANUFACTURER Maple Computing | ||
26 | #define PRODUCT Christmas Tree | ||
27 | |||
28 | /* key matrix size */ | ||
29 | #define MATRIX_ROWS 6 | ||
30 | #define MATRIX_COLS 1 | ||
31 | |||
32 | /* Planck PCB default pin-out */ | ||
33 | #define MATRIX_ROW_PINS { D3, F4, D0, F6, F5, D4 } | ||
34 | #define MATRIX_COL_PINS { D1 } | ||
35 | #define UNUSED_PINS | ||
36 | |||
37 | #define BACKLIGHT_PIN D2 | ||
38 | |||
39 | /* COL2ROW or ROW2COL */ | ||
40 | #define DIODE_DIRECTION COL2ROW | ||
41 | |||
42 | /* define if matrix has ghost */ | ||
43 | //#define MATRIX_HAS_GHOST | ||
44 | |||
45 | /* number of backlight levels */ | ||
46 | #define BACKLIGHT_LEVELS 3 | ||
47 | |||
48 | /* Set 0 if debouncing isn't needed */ | ||
49 | #define DEBOUNCE 5 | ||
50 | |||
51 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
52 | #define LOCKING_SUPPORT_ENABLE | ||
53 | /* Locking resynchronize hack */ | ||
54 | #define LOCKING_RESYNC_ENABLE | ||