2 Copyright 2012 Jun Wako <wakojun@gmail.com>
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.
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.
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/>.
21 #include "config_common.h"
23 /* USB Device descriptor parameter */
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
34 #define MATRIX_COLS 11
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 }
41 # define MATRIX_COL_PINS { B7, D6, F7, F6, B6, D4, E6, B4, B5, C6, D7 }
43 # define MATRIX_COL_PINS { D7, C6, B5, B4, E6, D4, B6, F6, F7, D6, B7 }
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 }
52 /* COL2ROW or ROW2COL */
53 #define DIODE_DIRECTION COL2ROW
55 /* define if matrix has ghost */
56 //#define MATRIX_HAS_GHOST
58 /* number of backlight levels */
59 //#define BACKLIGHT_LEVELS 3
61 /* Set 0 if debouncing isn't needed */
62 #define DEBOUNCING_DELAY 5
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
69 /* key combination for command */
70 #define IS_COMMAND() ( \
71 keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \
75 * Feature disable options
76 * These options are also useful to firmware size reduction.
79 /* disable debug print */
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