forked from kofal.net/zmk
feat(events): add timestamp to keycode_state_changed and sensor_event
These timestamps are necessary to correctly deal with delayed events due to hold-tap shenanigans.
This commit is contained in:
committed by
Pete Johanson
parent
27d036b9d5
commit
bee45f9b3a
@@ -18,12 +18,13 @@ struct keycode_state_changed {
|
||||
u32_t keycode;
|
||||
u8_t implicit_modifiers;
|
||||
bool state;
|
||||
s64_t timestamp;
|
||||
};
|
||||
|
||||
ZMK_EVENT_DECLARE(keycode_state_changed);
|
||||
|
||||
static inline struct keycode_state_changed *keycode_state_changed_from_encoded(u32_t encoded,
|
||||
bool pressed) {
|
||||
static inline struct keycode_state_changed *
|
||||
keycode_state_changed_from_encoded(u32_t encoded, bool pressed, s64_t timestamp) {
|
||||
u16_t page = HID_USAGE_PAGE(encoded) & 0xFF;
|
||||
u16_t id = HID_USAGE_ID(encoded);
|
||||
zmk_mod_flags implicit_mods = SELECT_MODS(encoded);
|
||||
@@ -37,5 +38,6 @@ static inline struct keycode_state_changed *keycode_state_changed_from_encoded(u
|
||||
ev->keycode = id;
|
||||
ev->implicit_modifiers = implicit_mods;
|
||||
ev->state = pressed;
|
||||
ev->timestamp = timestamp;
|
||||
return ev;
|
||||
}
|
||||
|
||||
@@ -14,6 +14,7 @@ struct sensor_event {
|
||||
struct zmk_event_header header;
|
||||
u8_t sensor_number;
|
||||
struct device *sensor;
|
||||
s64_t timestamp;
|
||||
};
|
||||
|
||||
ZMK_EVENT_DECLARE(sensor_event);
|
||||
Reference in New Issue
Block a user