]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/aeboards/ext65/config.h
[Keyboard] Aeboards Ext65 - New keyboard & Aegis Update (#6127)
[qmk_firmware.git] / keyboards / aeboards / ext65 / config.h
1 /* Copyright 2018 Jason Williams (Wilba)
2  *
3  * This program is free software: you can redistribute it and/or modify
4  * it under the terms of the GNU General Public License as published by
5  * the Free Software Foundation, either version 2 of the License, or
6  * (at your option) any later version.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
15  */
16
17 #pragma once
18
19 #include "config_common.h"
20
21 /* USB Device descriptor parameter */
22 #define VENDOR_ID       0x4145 // "AE"
23 #define PRODUCT_ID      0xAE65 // AEboards EXT65
24 #define DEVICE_VER      0x0001
25 #define MANUFACTURER    AEboards
26 #define PRODUCT         AEboards Ext65
27 #define DESCRIPTION     AEboards Ext65
28
29 /* key matrix size */
30 #define MATRIX_ROWS 10
31 #define MATRIX_COLS 10
32
33 /* key matrix pins */
34 #define MATRIX_ROW_PINS { C6, C7, B5, B6, D7, B4, D4, D6, B7, E6 }
35 #define MATRIX_COL_PINS { B2, B3, B1, B0, F7, F0, F1, F4, F5, F6 }
36 #define UNUSED_PINS
37
38 /* COL2ROW or ROW2COL */
39 #define DIODE_DIRECTION COL2ROW
40
41 /* Set 0 if debouncing isn't needed */
42 #define DEBOUNCE 5
43
44 /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
45 #define LOCKING_SUPPORT_ENABLE
46
47 /* Locking resynchronize hack */
48 #define LOCKING_RESYNC_ENABLE
49
50 //#define WT_MONO_BACKLIGHT
51
52 #define DYNAMIC_KEYMAP_LAYER_COUNT 4
53
54 // EEPROM usage
55
56 // TODO: refactor with new user EEPROM code (coming soon)
57 #define EEPROM_MAGIC 0x451F
58 #define EEPROM_MAGIC_ADDR 32
59 // Bump this every time we change what we store
60 // This will automatically reset the EEPROM with defaults
61 // and avoid loading invalid data from the EEPROM
62 #define EEPROM_VERSION 0x08
63 #define EEPROM_VERSION_ADDR 34
64
65 // Dynamic keymap starts after EEPROM version
66 #define DYNAMIC_KEYMAP_EEPROM_ADDR 35
67 // Dynamic macro starts after dynamic keymaps (35+(4*10*10*2)) = (35+800)
68 #define DYNAMIC_KEYMAP_MACRO_EEPROM_ADDR 835
69 #define DYNAMIC_KEYMAP_MACRO_EEPROM_SIZE 189
70 #define DYNAMIC_KEYMAP_MACRO_COUNT 16
71