diff options
Diffstat (limited to 'keyboards/preonic/rev3_drop/config.h')
-rw-r--r-- | keyboards/preonic/rev3_drop/config.h | 110 |
1 files changed, 110 insertions, 0 deletions
diff --git a/keyboards/preonic/rev3_drop/config.h b/keyboards/preonic/rev3_drop/config.h new file mode 100644 index 000000000..1a0605e73 --- /dev/null +++ b/keyboards/preonic/rev3_drop/config.h | |||
@@ -0,0 +1,110 @@ | |||
1 | /* | ||
2 | * Copyright 2018 Jack Humbert <jack.humb@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 | /* USB Device descriptor parameter */ | ||
21 | #define DEVICE_VER 0x0003 | ||
22 | #define PRODUCT_ID 0xA649 | ||
23 | #undef MANUFACTURER | ||
24 | #define MANUFACTURER Drop | ||
25 | |||
26 | #undef MATRIX_ROWS | ||
27 | #undef MATRIX_COLS | ||
28 | /* key matrix size */ | ||
29 | #define MATRIX_ROWS 10 | ||
30 | #define MATRIX_COLS 6 | ||
31 | |||
32 | #undef MATRIX_ROW_PINS | ||
33 | #undef MATRIX_COL_PINS | ||
34 | #define MATRIX_ROW_PINS { A10, A9, A8, B15, C13, C14, C15, A2, A3, A6 } | ||
35 | #define MATRIX_COL_PINS { B11, B10, B2, B1, A7, B0 } | ||
36 | #define UNUSED_PINS | ||
37 | |||
38 | #define ENCODERS_PAD_A { B12 } | ||
39 | #define ENCODERS_PAD_B { B13 } | ||
40 | |||
41 | #define DIP_SWITCH_PINS { B14, A15, A0, B9 } | ||
42 | |||
43 | #define MUSIC_MAP | ||
44 | #undef AUDIO_VOICES | ||
45 | #undef AUDIO_PIN | ||
46 | #define AUDIO_PIN A5 | ||
47 | #define AUDIO_PIN_ALT A4 | ||
48 | #define AUDIO_PIN_ALT_AS_NEGATIVE | ||
49 | |||
50 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
51 | // #define DEBOUNCE 6 | ||
52 | |||
53 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
54 | //#define LOCKING_SUPPORT_ENABLE | ||
55 | /* Locking resynchronize hack */ | ||
56 | //#define LOCKING_RESYNC_ENABLE | ||
57 | |||
58 | /* | ||
59 | * Force NKRO | ||
60 | * | ||
61 | * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved | ||
62 | * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the | ||
63 | * makefile for this to work.) | ||
64 | * | ||
65 | * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N) | ||
66 | * until the next keyboard reset. | ||
67 | * | ||
68 | * NKRO may prevent your keystrokes from being detected in the BIOS, but it is | ||
69 | * fully operational during normal computer usage. | ||
70 | * | ||
71 | * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N) | ||
72 | * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by | ||
73 | * bootmagic, NKRO mode will always be enabled until it is toggled again during a | ||
74 | * power-up. | ||
75 | * | ||
76 | */ | ||
77 | //#define FORCE_NKRO | ||
78 | |||
79 | /* | ||
80 | * Feature disable options | ||
81 | * These options are also useful to firmware size reduction. | ||
82 | */ | ||
83 | |||
84 | /* disable debug print */ | ||
85 | //#define NO_DEBUG | ||
86 | |||
87 | /* disable print */ | ||
88 | //#define NO_PRINT | ||
89 | |||
90 | /* disable action features */ | ||
91 | //#define NO_ACTION_LAYER | ||
92 | //#define NO_ACTION_TAPPING | ||
93 | //#define NO_ACTION_ONESHOT | ||
94 | //#define NO_ACTION_MACRO | ||
95 | //#define NO_ACTION_FUNCTION | ||
96 | |||
97 | /* | ||
98 | * WS2812 Underglow Matrix options | ||
99 | */ | ||
100 | #define RGB_DI_PIN A1 | ||
101 | #define RGBLED_NUM 9 | ||
102 | #define RGBLIGHT_ANIMATIONS | ||
103 | // RGB Matrix support | ||
104 | #define DRIVER_LED_TOTAL RGBLED_NUM | ||
105 | |||
106 | #define WS2812_PWM_DRIVER PWMD2 | ||
107 | #define WS2812_PWM_CHANNEL 2 | ||
108 | #define WS2812_PWM_PAL_MODE 1 | ||
109 | #define WS2812_DMA_STREAM STM32_DMA1_STREAM2 | ||
110 | #define WS2812_DMA_CHANNEL 2 | ||