1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-08-09 05:25:01 +00:00

Don't expect an ACK after identifying.

This commit is contained in:
Thomas Harte
2024-03-23 20:12:38 -04:00
parent 5967ad0865
commit 09a61cf1a7

View File

@@ -47,7 +47,7 @@ struct Keyboard {
switch(input) { switch(input) {
case RQID: // Post keyboard ID. case RQID: // Post keyboard ID.
serial_.output(KeyboardParty, 0x81); // Declare this to be a UK keyboard. serial_.output(KeyboardParty, 0x81); // Declare this to be a UK keyboard.
phase_ = Phase::ExpectingACK; phase_ = Phase::Idle;
break; break;
case PRST: // "1-byte command, does nothing." case PRST: // "1-byte command, does nothing."