2022-01-10 11:33:48 +01:00
|
|
|
// Copyright 2021 Christoph Rehmann (crehmann)
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// Configure the global tapping term (default: 200ms)
|
|
|
|
#define TAPPING_TERM 200
|
|
|
|
|
|
|
|
// Enable rapid switch from tap to hold, disables double tap hold auto-repeat.
|
2022-12-12 16:52:22 +01:00
|
|
|
#define QUICK_TAP_TERM 0
|
2022-01-10 11:33:48 +01:00
|
|
|
|
|
|
|
// Apply the modifier on keys that are tapped during a short hold of a modtap
|
|
|
|
#define PERMISSIVE_HOLD
|
|
|
|
|
|
|
|
// Using the right side as master
|
|
|
|
#define MASTER_RIGHT
|
|
|
|
|
|
|
|
#ifdef HAPTIC_ENABLE
|
|
|
|
// this configuration has no effect because the haptic exclusion is implemented with
|
|
|
|
// __attribute__((weak)) bool get_haptic_enabled_key(uint16_t keycode, keyrecord_t *record)
|
|
|
|
// in the default keymap and reacts only to mouse clicks.
|
|
|
|
//#define NO_HAPTIC_MOD
|
|
|
|
#define NO_HAPTIC_FN
|
|
|
|
#define NO_HAPTIC_ALPHA
|
|
|
|
#define NO_HAPTIC_PUNCTUATION
|
|
|
|
#define NO_HAPTIC_NAV
|
|
|
|
#define NO_HAPTIC_NUMERIC
|
2023-07-21 01:17:39 +02:00
|
|
|
#define DRV2605L_GREETING alert_750ms
|
|
|
|
#define DRV2605L_DEFAULT_MODE sharp_tick1
|
2022-01-10 11:33:48 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef PS2_MOUSE_ENABLE
|
|
|
|
#define PS2_MOUSE_SCROLL_BTN_MASK (1<<PS2_MOUSE_BTN_RIGHT) // using the right mouse button for scrolling (other buttons can be configured)
|
|
|
|
#define PS2_MOUSE_SCROLL_BTN_SEND 500
|
2023-04-03 07:32:47 +02:00
|
|
|
#endif
|