Change ADB scan delay 12ms

This commit is contained in:
tmk 2013-10-09 12:20:03 +09:00
parent e8e8f93bcf
commit 86082f90fa
2 changed files with 5 additions and 3 deletions

View file

@ -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;