]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/aeboards/aegis/config.h
[Keyboard] Added aeboards/aegis (#5099)
[qmk_firmware.git] / keyboards / aeboards / aegis / 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      0x0807 // 1800 -> 0x0708 -> 0x0807 ;-)
24 #define DEVICE_VER      0x0001
25 #define MANUFACTURER    AEboards
26 #define PRODUCT         Aegis
27 #define DESCRIPTION     1800 Left Handed Keyboard
28
29 /* key matrix size */
30 #define MATRIX_ROWS 12
31 #define MATRIX_COLS 9
32
33 /* key matrix pins */
34 #define MATRIX_ROW_PINS { F5, F6, E6, F7, D1, D0, D6, D4, B4, D7, B6, B5 }
35 #define MATRIX_COL_PINS { C7, C6, B7, D2, D3, B3, B2, B1, B0 }
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 DEBOUNCING_DELAY 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*12*9*2)) = (35+864)
68 #define DYNAMIC_KEYMAP_MACRO_EEPROM_ADDR 899
69 #define DYNAMIC_KEYMAP_MACRO_EEPROM_SIZE 125
70 #define DYNAMIC_KEYMAP_MACRO_COUNT 16
71