mirror of
https://github.com/nippur72/apple1-videocard-lib.git
synced 2024-11-15 17:05:33 +00:00
13 lines
217 B
C
13 lines
217 B
C
void comando_del() {
|
|
// send command byte
|
|
send_byte_to_MCU(CMD_DEL);
|
|
if(TIMEOUT) return;
|
|
|
|
// send filename
|
|
send_string_to_MCU(filename);
|
|
if(TIMEOUT) return;
|
|
|
|
print_string_response();
|
|
return;
|
|
}
|