feat: disable mod-tap
parent
02d139acaa
commit
d277bd7f4a
|
@ -6,3 +6,6 @@
|
|||
|
||||
# VSCode
|
||||
.vscode
|
||||
|
||||
# QMK
|
||||
dztech_dz60rgb_wkl_v2_1_haunt98.bin
|
||||
|
|
|
@ -13,7 +13,7 @@ If success, firmware file is `dztech_dz60rgb_wkl_v2_1_haunt98.bin`
|
|||
Currently firmware size:
|
||||
|
||||
```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:
|
||||
|
@ -41,11 +41,12 @@ Do
|
|||
|
||||
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)
|
||||
- [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)
|
||||
- [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)
|
||||
- [Magic Keycodes](https://github.com/qmk/qmk_firmware/blob/master/docs/keycodes_magic.md)
|
||||
|
||||
Build/Optimize
|
||||
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
// VIA
|
||||
#define DYNAMIC_KEYMAP_LAYER_COUNT 3
|
||||
|
||||
// Optimize
|
||||
#define NO_ACTION_ONESHOT
|
||||
#define NO_ACTION_TAPPING
|
||||
|
||||
#define LAYER_STATE_8BIT
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"debounce": 5
|
||||
}
|
|
@ -1,5 +1,7 @@
|
|||
# VIA
|
||||
VIA_ENABLE = yes
|
||||
|
||||
# Optimize
|
||||
LTO_ENABLE = yes
|
||||
|
||||
CONSOLE_ENABLE = no
|
||||
|
@ -9,3 +11,6 @@ EXTRAKEY_ENABLE = yes
|
|||
|
||||
SPACE_CADET_ENABLE = no
|
||||
MAGIC_ENABLE = no
|
||||
|
||||
# Feature
|
||||
BOOTMAGIC_ENABLE = yes
|
||||
|
|
Loading…
Reference in New Issue