diff options
Diffstat (limited to 'converter')
-rw-r--r-- | converter/adb_usb/matrix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/converter/adb_usb/matrix.c b/converter/adb_usb/matrix.c index 566592c93f..7e58569715 100644 --- a/converter/adb_usb/matrix.c +++ b/converter/adb_usb/matrix.c @@ -85,7 +85,7 @@ uint8_t matrix_scan(void) uint8_t key0, key1; is_modified = false; - _delay_ms(16); // delay for preventing overload of poor ADB keyboard controller + _delay_ms(12); // delay for preventing overload of poor ADB keyboard controller codes = adb_host_kbd_recv(); key0 = codes>>8; key1 = codes&0xFF; |