From 5667044277a84eed366fecb07fe4172bb1b171c7 Mon Sep 17 00:00:00 2001 From: tmk Date: Tue, 13 Jun 2023 10:02:43 +0900 Subject: [PATCH] pc98_usb: Add wait for startup Some keyboards can miss 'keyboard type' command with short wait - Dboard sono1 - CMP-6D1Y7 https://geekhack.org/index.php?topic=110094.msg3164146#msg3164146 --- converter/pc98_usb/matrix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/converter/pc98_usb/matrix.c b/converter/pc98_usb/matrix.c index 667e6351..0dbf4fc7 100644 --- a/converter/pc98_usb/matrix.c +++ b/converter/pc98_usb/matrix.c @@ -152,7 +152,7 @@ void matrix_init(void) serial_init(); - _delay_ms(50); + _delay_ms(500); xprintf("\nKeyboard Type: "); if (pc98_is_newtype()) xprintf("[NEW]"); else xprintf("[OLD]");