forked from mirrors/qmk_firmware
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>
30 lines
855 B
C
30 lines
855 B
C
// Copyright 2022 Álvaro Cortés (@ACortesDev)
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
#pragma once
|
|
|
|
#define QUICK_TAP_TERM 0
|
|
#define TAPPING_TERM 200
|
|
|
|
#ifdef RGB_MATRIX_ENABLE
|
|
#define RGB_MATRIX_KEYPRESSES
|
|
#define RGB_MATRIX_FRAMEBUFFER_EFFECTS
|
|
#define RGB_DISABLE_WHEN_USB_SUSPENDED
|
|
#define RGB_MATRIX_MAXIMUM_BRIGHTNESS 150
|
|
#define RGB_MATRIX_LED_FLUSH_LIMIT 16
|
|
#define RGB_MATRIX_HUE_STEP 8
|
|
#define RGB_MATRIX_SAT_STEP 8
|
|
#define RGB_MATRIX_VAL_STEP 5
|
|
#define RGB_MATRIX_SPD_STEP 10
|
|
|
|
// Effects
|
|
#define ENABLE_RGB_MATRIX_BREATHING
|
|
#endif
|
|
|
|
#ifdef OLED_ENABLE
|
|
#define SPLIT_LAYER_STATE_ENABLE
|
|
#define SPLIT_LED_STATE_ENABLE
|
|
#define SPLIT_MODS_ENABLE
|
|
#define SPLIT_OLED_ENABLE
|
|
#define OLED_TIMEOUT 60000
|
|
#define OLED_FONT_H "keyboards/crkbd/keymaps/colemad/glcdfont.c"
|
|
#endif
|