X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;f=converter%2Fadb_usb%2Fmatrix.c;h=f4bf50c1f5af375f2da651f0af85e127e821616f;hb=12e5a3a13eb86852ad58c131e28ba29c5f09bb2d;hp=e8ed2da6292d9358fb0c27ae5fba6f0c8e6d90e9;hpb=a4abe50f18769d4da9c001dc7388513ca8591288;p=max%2Ftmk_keyboard.git diff --git a/converter/adb_usb/matrix.c b/converter/adb_usb/matrix.c index e8ed2da6..f4bf50c1 100644 --- a/converter/adb_usb/matrix.c +++ b/converter/adb_usb/matrix.c @@ -72,8 +72,13 @@ void matrix_init(void) adb_host_init(); - // wait for line and device to be stable - wait_ms(100); + // AEK/AEKII(ANSI/ISO) startup is slower. Without proper delay + // it would fail to recognize layout and enable Extended protocol. + // 200ms seems to be enough for AEKs. 1000ms is used for safety. + // Tested with devices: + // M0115J(AEK), M3501(AEKII), M0116(Standard), M1242(Adjustable), + // G5431(Mouse), 64210(Kensington Trubo Mouse 5) + wait_ms(1000); device_scan(); @@ -94,7 +99,7 @@ void matrix_init(void) is_iso_layout = false; break; } - xprintf("hadler: %02X, ISO: %s\n", handler_id, (is_iso_layout ? "yes" : "no")); + xprintf("handler: %02X, ISO: %s\n", handler_id, (is_iso_layout ? "yes" : "no")); // Adjustable keyboard media keys: address=0x07 and handlerID=0x02 has_media_keys = (0x02 == (adb_host_talk(ADB_ADDR_APPLIANCE, ADB_REG_3) & 0xff)); @@ -113,6 +118,8 @@ void matrix_init(void) led_set(host_keyboard_leds()); + device_scan(); + // LED off DDRD |= (1<<6); PORTD &= ~(1<<6); return;