xt_usb: Fix XT soft reset

Data line should be hi while Clock line is low
https://github.com/tmk/tmk_keyboard/wiki/IBM-PC-XT-Keyboard-Protocol#keyboard-soft-reset
This commit is contained in:
tmk 2020-10-27 02:15:42 +09:00
parent 6271878a02
commit 12e5a3a13e

View file

@ -65,7 +65,7 @@ void xt_host_init(void)
#endif
/* soft reset: pull clock line down for 20ms */
XT_DATA_LO();
XT_DATA_IN();
XT_CLOCK_LO();
_delay_ms(20);