Fix #4: Correctly follows evdev protocol

SYN events and different event timestamps are necessary for sending
sequential key events of the same key.
This commit is contained in:
Francisco Lopes 2017-11-29 23:58:56 -02:00
parent 6fa3ad14b3
commit 27efcbbf96

View File

@ -1,6 +1,7 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <unistd.h>
#include <linux/input.h> #include <linux/input.h>
// clang-format off // clang-format off
@ -13,7 +14,8 @@ ctrl_down = {.type = EV_KEY, .code = KEY_LEFTCTRL, .value = 1},
capslock_down = {.type = EV_KEY, .code = KEY_CAPSLOCK, .value = 1}, capslock_down = {.type = EV_KEY, .code = KEY_CAPSLOCK, .value = 1},
esc_repeat = {.type = EV_KEY, .code = KEY_ESC, .value = 2}, esc_repeat = {.type = EV_KEY, .code = KEY_ESC, .value = 2},
ctrl_repeat = {.type = EV_KEY, .code = KEY_LEFTCTRL, .value = 2}, ctrl_repeat = {.type = EV_KEY, .code = KEY_LEFTCTRL, .value = 2},
capslock_repeat = {.type = EV_KEY, .code = KEY_CAPSLOCK, .value = 2}; capslock_repeat = {.type = EV_KEY, .code = KEY_CAPSLOCK, .value = 2},
syn = {.type = EV_SYN, .code = SYN_REPORT, .value = 0};
// clang-format on // clang-format on
int equal(const struct input_event *first, const struct input_event *second) { int equal(const struct input_event *first, const struct input_event *second) {
@ -55,6 +57,8 @@ int main(void) {
continue; continue;
} }
write_event(&esc_down); write_event(&esc_down);
write_event(&syn);
usleep(20000);
write_event(&esc_up); write_event(&esc_up);
continue; continue;
} }