From 9f353f96c658c7a8f593fa4075dab5c4fa1a8887 Mon Sep 17 00:00:00 2001 From: Francisco Lopes Date: Thu, 30 Nov 2017 01:57:47 -0200 Subject: [PATCH] Another evdev protocol infringement Even though Peter Hutterer commented that it's not technically needed to send SYN/delay when the sequence of events is of different keys, it seems to be shown necessary to do so, otherwise events are dropped in random situations. --- caps2esc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/caps2esc.c b/caps2esc.c index 90714a0..f25310d 100644 --- a/caps2esc.c +++ b/caps2esc.c @@ -66,6 +66,8 @@ int main(void) { if (!esc_give_up && input.value) { esc_give_up = 1; write_event(&ctrl_down); + write_event(&syn); + usleep(20000); } } else if (equal(&input, &capslock_down)) { capslock_is_down = 1;