45 lines
1.7 KiB
C
45 lines
1.7 KiB
C
// Copyright 2022 beekeeb
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
|
|
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET
|
|
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_TIMEOUT 1000U
|
|
|
|
#define SERIAL_USART_FULL_DUPLEX
|
|
#define SERIAL_USART_TX_PIN GP0
|
|
#define SERIAL_USART_RX_PIN GP1
|
|
|
|
#define SPLIT_TRANSPORT_MIRROR
|
|
#define SPLIT_ACTIVITY_ENABLE
|
|
|
|
// Customized by markstos
|
|
#define TAPPING_TERM 200
|
|
#define TAPPING_TERM_PER_KEY
|
|
// used for Tapping Term on thumb keys
|
|
#define TAPPING_TERM_THUMB 125
|
|
|
|
// If you press a dual-role key, press another key, and then release the
|
|
// dual-role key, all within the tapping term, by default the dual-role key
|
|
// will perform its tap action. If the HOLD_ON_OTHER_KEY_PRESS option is
|
|
// enabled, the dual-role key will perform its hold action instead.
|
|
#define HOLD_ON_OTHER_KEY_PRESS
|
|
|
|
// markstos: prevent keydown and keyup from firing on different layers
|
|
#define PREVENT_STUCK_MODIFER
|
|
|
|
// When enabled, typing a mod-tap plus second within term will register as the mod-combo
|
|
// Ref: https://beta.docs.qmk.fm/using-qmk/software-features/tap_hold#permissive-hold
|
|
#define PERMISSIVE_HOLD
|
|
|
|
#define COMBO_COUNT 3
|
|
|
|
// Set the COMBO_TERM so low that I won't type the keys one after each other during normal typing.
|
|
// They would have be held together intentionally to trigger this.
|
|
#define COMBO_TERM 40
|
|
|
|
// These mostly affect my one-shot Shift key, providing a CapsLock alternative.
|
|
// I want a relatively low timeout, so if I accidentally type "Shift", I can pause just briefly and move on.
|
|
#define ONESHOT_TAP_TOGGLE 3 /* Tapping this number of times holds the key until tapped once again. */
|
|
#define ONESHOT_TIMEOUT 2000 /* Time (in ms) before the one shot key is released */
|