feat: disable mod-tap

main
sudo pacman -Syu 2023-07-21 14:03:04 +07:00
parent 02d139acaa
commit d277bd7f4a
5 changed files with 18 additions and 2 deletions

3
.gitignore vendored
View File

@ -6,3 +6,6 @@
# VSCode # VSCode
.vscode .vscode
# QMK
dztech_dz60rgb_wkl_v2_1_haunt98.bin

View File

@ -13,7 +13,7 @@ If success, firmware file is `dztech_dz60rgb_wkl_v2_1_haunt98.bin`
Currently firmware size: Currently firmware size:
```txt ```txt
* The firmware size is fine - 22846/26624 (85%, 3778 bytes free) * The firmware size is fine - 21280/26624 (79%, 5344 bytes free)
``` ```
Put keyboard into bootloader mode: Put keyboard into bootloader mode:
@ -41,11 +41,12 @@ Do
Don't Don't
- [Magic Keycodes](https://github.com/qmk/qmk_firmware/blob/master/docs/keycodes_magic.md)
- [Command](https://github.com/qmk/qmk_firmware/blob/master/docs/feature_command.md) - [Command](https://github.com/qmk/qmk_firmware/blob/master/docs/feature_command.md)
- [Mod-Tap](https://github.com/qmk/qmk_firmware/blob/master/docs/mod_tap.md)
- [Mouse keys](https://github.com/qmk/qmk_firmware/blob/master/docs/feature_mouse_keys.md) - [Mouse keys](https://github.com/qmk/qmk_firmware/blob/master/docs/feature_mouse_keys.md)
- [Space Cadet: The Future, Built In](https://github.com/qmk/qmk_firmware/blob/master/docs/feature_space_cadet.md) - [Space Cadet: The Future, Built In](https://github.com/qmk/qmk_firmware/blob/master/docs/feature_space_cadet.md)
- [One Shot Keys](https://github.com/qmk/qmk_firmware/blob/master/docs/one_shot_keys.md) - [One Shot Keys](https://github.com/qmk/qmk_firmware/blob/master/docs/one_shot_keys.md)
- [Magic Keycodes](https://github.com/qmk/qmk_firmware/blob/master/docs/keycodes_magic.md)
Build/Optimize Build/Optimize

View File

@ -1,4 +1,8 @@
// VIA // VIA
#define DYNAMIC_KEYMAP_LAYER_COUNT 3 #define DYNAMIC_KEYMAP_LAYER_COUNT 3
// Optimize
#define NO_ACTION_ONESHOT #define NO_ACTION_ONESHOT
#define NO_ACTION_TAPPING
#define LAYER_STATE_8BIT

View File

@ -0,0 +1,3 @@
{
"debounce": 5
}

View File

@ -1,5 +1,7 @@
# VIA
VIA_ENABLE = yes VIA_ENABLE = yes
# Optimize
LTO_ENABLE = yes LTO_ENABLE = yes
CONSOLE_ENABLE = no CONSOLE_ENABLE = no
@ -9,3 +11,6 @@ EXTRAKEY_ENABLE = yes
SPACE_CADET_ENABLE = no SPACE_CADET_ENABLE = no
MAGIC_ENABLE = no MAGIC_ENABLE = no
# Feature
BOOTMAGIC_ENABLE = yes