diff options
author | tmk <nobody@nowhere> | 2013-10-08 12:23:25 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2013-10-08 12:23:25 +0900 |
commit | e8e8f93bcf0cdc8d72d35662db5a1da4716762b8 (patch) | |
tree | 70d355d125b724092f8891bee3753e169063725e /converter/adb_usb/matrix.c | |
parent | 63b3e2cbfbca26ca3705542fa241f6604d6aadda (diff) |
Fix ADB missing keystrokes problem Thanks, blargg! #14
- Add delay between scans to prevent overlaod of ADB keyboard controllers
- <http://geekhack.org/index.php?topic=14290.msg1068919#msg1068919>
Diffstat (limited to 'converter/adb_usb/matrix.c')
-rw-r--r-- | converter/adb_usb/matrix.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/converter/adb_usb/matrix.c b/converter/adb_usb/matrix.c index ee17f655f2..566592c93f 100644 --- a/converter/adb_usb/matrix.c +++ b/converter/adb_usb/matrix.c @@ -85,6 +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 codes = adb_host_kbd_recv(); key0 = codes>>8; key1 = codes&0xFF; |