~ruther/qmk_firmware

ref: f37f27f02a55f750c21f671e712e3f704ba57885 qmk_firmware/keyboards/handwired/d48/taphold.c -rw-r--r-- 1.1 KiB
f37f27f0 — James Young Migrate `LOCKING_*_ENABLE` to Data-Driven: O (#23778) 11 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#include "taphold.h"
#include "action_layer.h"
#include "keyboard.h"
#include "timer.h"

bool taphold_process(uint16_t keycode, keyrecord_t *record) {
    for (int i = 0; i < taphold_config_size; i++) {
        taphold_t *config = &taphold_config[i];
        if (config->key == keycode && record->event.pressed) {
            if (config->mode == TAPHOLD_LAYER) {
                layer_on(config->longAction);
            } else {
                register_code(config->longAction);
            }
            config->time = timer_read32();
            config->keypos = record->event.key;
            return false;
        } else if (KEYEQ(record->event.key, config->keypos) && !record->event.pressed) {
            if (config->mode == TAPHOLD_LAYER) {
                layer_off(config->longAction);
            } else {
                unregister_code(config->longAction);
            }
            if (timer_elapsed32(config->time) < taphold_timeout) {
                tap_code(config->shortAction);
            }
            config->keypos.row = 255;
            return false;
        }
    }
    return true;
}
Do not follow this link