From 84b9ce7125d6a2a376419694ac461214333b12bc Mon Sep 17 00:00:00 2001 From: tmk Date: Fri, 8 Nov 2013 04:27:25 +0900 Subject: Fix ADB led_set(); remove delay - the 100ms delay causes keystroke drop; this is observable with pressing Numlock key on AEK repeatedly - without the delay LED sync problem doesn't occur now --- converter/adb_usb/led.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'converter') diff --git a/converter/adb_usb/led.c b/converter/adb_usb/led.c index 1e7911f942..3ee64a8e7d 100644 --- a/converter/adb_usb/led.c +++ b/converter/adb_usb/led.c @@ -23,7 +23,5 @@ along with this program. If not, see . void led_set(uint8_t usb_led) { - // need a wait to send command without miss - _delay_ms(100); adb_host_kbd_led(~usb_led); } -- cgit v1.2.3