fix TEST command

This commit is contained in:
nino-porcino 2022-06-03 09:57:21 +02:00
parent 132dca24e6
commit 236b956aec
1 changed files with 1 additions and 4 deletions

View File

@ -14,6 +14,7 @@ void comando_test() {
drec = receive_byte_from_MCU(); drec = receive_byte_from_MCU();
drec ^= 0xff; drec ^= 0xff;
if(TIMEOUT) return;
if(drec != dsend) { if(drec != dsend) {
woz_puts("\rTRANSFER ERROR\r"); woz_puts("\rTRANSFER ERROR\r");
@ -23,7 +24,3 @@ void comando_test() {
if(dsend == 0x00) woz_putc('*'); if(dsend == 0x00) woz_putc('*');
} }
} }
void test_via() {
}