2016-03-16 16:27:04 +01:00
|
|
|
/*
|
|
|
|
Copyright 2012 Jun Wako <wakojun@gmail.com>
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2021-09-01 11:03:14 +02:00
|
|
|
#pragma once
|
2016-03-16 16:27:04 +01:00
|
|
|
|
|
|
|
#include "config_common.h"
|
|
|
|
|
|
|
|
/* USB Device descriptor parameter */
|
|
|
|
#define VENDOR_ID 0xFEED
|
|
|
|
#define PRODUCT_ID 0x6060
|
|
|
|
#define DEVICE_VER 0x0001
|
|
|
|
#define MANUFACTURER Nobody
|
|
|
|
#define PRODUCT retro_refit
|
|
|
|
|
|
|
|
/* key matrix size */
|
|
|
|
#define MATRIX_ROWS 11
|
|
|
|
#define MATRIX_COLS 8
|
|
|
|
|
|
|
|
// See note in retro_refit.h for an explanation of how this matrix is wired up
|
2016-05-24 05:42:21 +02:00
|
|
|
#define MATRIX_ROW_PINS { D4, D7, B4, B5, B6, F7, F6, F5, F4, F1, F0 }
|
|
|
|
#define MATRIX_COL_PINS { B0, B1, B2, B3, D2, D3, C7, D5 }
|
|
|
|
#define UNUSED_PINS
|
2016-03-16 16:27:04 +01:00
|
|
|
|
|
|
|
/* COL2ROW or ROW2COL */
|
|
|
|
#define DIODE_DIRECTION COL2ROW
|
|
|
|
|
|
|
|
/* define if matrix has ghost */
|
|
|
|
//#define MATRIX_HAS_GHOST
|
|
|
|
|
|
|
|
/* number of backlight levels */
|
|
|
|
#define BACKLIGHT_LEVELS 0
|
|
|
|
|
|
|
|
/* Set 0 if debouncing isn't needed */
|
2019-06-06 21:09:56 +02:00
|
|
|
#define DEBOUNCE 5
|
2016-03-16 16:27:04 +01:00
|
|
|
|
|
|
|
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
|
|
|
#define LOCKING_SUPPORT_ENABLE
|
|
|
|
/* Locking resynchronize hack */
|
|
|
|
#define LOCKING_RESYNC_ENABLE
|
|
|
|
|
2016-03-28 07:03:21 +02:00
|
|
|
/* Force NKRO Mode - If forced on, must be disabled via magic key (default = LShift+RShift+N) */
|
|
|
|
#define FORCE_NKRO
|
|
|
|
|
|
|
|
/*
|
Remove unused `IS_COMMAND()` instances and Magic Key definitions (#14610)
* Remove unused IS_COMMAND() instances from keyboard-level config.h, 0-9
* Remove unused IS_COMMAND() instances from keyboard-level config.h, A-B
* Remove unused IS_COMMAND() instances from keyboard-level config.h, C-D
* Remove unused IS_COMMAND() instances from keyboard-level config.h, E-G
* Remove unused IS_COMMAND() instances from keyboard-level config.h, handwired
* Remove unused IS_COMMAND() instances from keyboard-level config.h, H-M
* Remove unused IS_COMMAND() instances from keyboard-level config.h, N-R
* Remove unused IS_COMMAND() instances from keyboard-level config.h, S-Z
* Remove unused Magic Key definitions from keyboard-level config.h, 0-9
* Remove unused Magic Key definitions from keyboard-level config.h, A
* Remove unused Magic Key definitions from keyboard-level config.h, B
* Remove unused Magic Key definitions from keyboard-level config.h, C
* Remove unused Magic Key definitions from keyboard-level config.h, D-E
* Remove unused Magic Key definitions from keyboard-level config.h, F-H
* Remove unused Magic Key definitions from keyboard-level config.h, handwired
* Remove unused Magic Key definitions from keyboard-level config.h, I-K
* Remove unused Magic Key definitions from keyboard-level config.h, L-M
* Remove unused Magic Key definitions from keyboard-level config.h, N-R
* Remove unused Magic Key definitions from keyboard-level config.h, S-V
* Remove unused Magic Key definitions from keyboard-level config.h, W-Z
* Merge remote-tracking branch 'upstream/master' into clean/command_and_magic
* Remove remaining unused IS_COMMAND() instances from keyboard-level config.h
2021-09-26 11:57:20 +02:00
|
|
|
* Magic Key Options
|
|
|
|
*
|
|
|
|
* Magic keys are hotkey commands that allow control over firmware functions of
|
|
|
|
* the keyboard. They are best used in combination with the HID Listen program,
|
|
|
|
* found here: https://www.pjrc.com/teensy/hid_listen.html
|
|
|
|
*
|
|
|
|
* The options below allow the magic key functionality to be changed. This is
|
|
|
|
* useful if your keyboard/keypad is missing keys and you want magic key support.
|
|
|
|
*
|
2016-03-28 07:03:21 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* remap magic keys */
|
|
|
|
#define MAGIC_KEY_LOCK BSLS
|
|
|
|
|
2016-03-16 16:27:04 +01:00
|
|
|
/*
|
|
|
|
* Feature disable options
|
|
|
|
* These options are also useful to firmware size reduction.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* disable debug print */
|
|
|
|
//#define NO_DEBUG
|
|
|
|
|
|
|
|
/* disable print */
|
|
|
|
//#define NO_PRINT
|
|
|
|
|
|
|
|
/* disable action features */
|
|
|
|
//#define NO_ACTION_LAYER
|
|
|
|
//#define NO_ACTION_TAPPING
|
|
|
|
//#define NO_ACTION_ONESHOT
|