]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/atreus/config.h
qwerty_code_friendly: configurable left thumb
[qmk_firmware.git] / keyboards / atreus / config.h
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
25 #define VENDOR_ID       0x1209
26 #define PRODUCT_ID      0xA1E5
27 #define DEVICE_VER      0x0008
28 #define MANUFACTURER    Technomancy
29 #define PRODUCT         Atreus
30 #define DESCRIPTION     q.m.k. keyboard firmware for Atreus
31
32 /* key matrix size */
33 #define MATRIX_ROWS 4
34 #define MATRIX_COLS 11
35
36 // Change this to how you wired your keyboard
37 // COLS: Left to right, ROWS: Top to bottom
38 #if defined(ATREUS_ASTAR)
39 #   define MATRIX_ROW_PINS { D0, D1, D3, D2 }
40 #if defined(PCBDOWN)
41 #   define MATRIX_COL_PINS { B7, D6, F7, F6, B6, D4, E6, B4, B5, C6, D7 }
42 #else
43 #   define MATRIX_COL_PINS { D7, C6, B5, B4, E6, D4, B6, F6, F7, D6, B7 }
44 #endif
45 #   define UNUSED_PINS
46 #elif defined(ATREUS_TEENSY2)
47 #   define MATRIX_ROW_PINS { D0, D1, D2, D3 }
48 #   define MATRIX_COL_PINS { F6, F5, F4, B7, B6, B5, B4, B3, B2, B1, B0 }
49 #   define UNUSED_PINS
50 #endif
51
52 /* COL2ROW or ROW2COL */
53 #define DIODE_DIRECTION COL2ROW
54
55 /* define if matrix has ghost */
56 //#define MATRIX_HAS_GHOST
57
58 /* number of backlight levels */
59 //#define BACKLIGHT_LEVELS 3
60
61 /* Set 0 if debouncing isn't needed */
62 #define DEBOUNCING_DELAY 5
63
64 /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
65 #define LOCKING_SUPPORT_ENABLE
66 /* Locking resynchronize hack */
67 #define LOCKING_RESYNC_ENABLE
68
69 /* key combination for command */
70 #define IS_COMMAND() ( \
71     keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \
72 )
73
74 /*
75  * Feature disable options
76  *  These options are also useful to firmware size reduction.
77  */
78
79 /* disable debug print */
80 //#define NO_DEBUG
81
82 /* disable print */
83 //#define NO_PRINT
84
85 /* disable action features */
86 //#define NO_ACTION_LAYER
87 //#define NO_ACTION_TAPPING
88 //#define NO_ACTION_ONESHOT
89 //#define NO_ACTION_MACRO
90 //#define NO_ACTION_FUNCTION
91
92 #endif