cbabc8dbe6
* Replace Tapping Force Hold feature with Quick Tap Term * Replace keyboard level TAPPING_FORCE_HOLD with QUICK_TAP_TERM 0 * Deprecate force hold in info_config.json * Before and after quick tap term unit tests * Quick tap unit tests iteration * Keymap config.h correction * Remove TAPPING_FORCE_HOLD_PER_KEY macros that were missed * Add two more test cases for quick tap * Replace TAPPING_FORCE_HOLD with QUICK_TAP_TERM in configs #2 * Replace TAPPING_FORCE_HOLD_PER_KEY with QUICK_TAP_TERM_PER_KEY in configs #2 * Add function declaration for get_quick_tap_term Co-authored-by: Stefan Kerkmann <karlk90@pm.me>
13 lines
304 B
C
13 lines
304 B
C
#pragma once
|
|
|
|
#undef MATRIX_ROW_PINS
|
|
#undef MATRIX_COL_PINS
|
|
#define MATRIX_ROW_PINS { D0, D1, D2, D3 }
|
|
#define MATRIX_COL_PINS { F6, F5, F4, F1, F0, F7, B0, B1, B2, B3, B7 }
|
|
|
|
#define DIODE_DIRECTION COL2ROW
|
|
|
|
#define IGNORE_MOD_TAP_INTERRUPT
|
|
#define QUICK_TAP_TERM 0
|
|
|
|
#define USB_MAX_POWER_CONSUMPTION 50
|