mirror of
https://github.com/nippur72/apple1-videocard-lib.git
synced 2024-12-23 04:29:46 +00:00
13 lines
221 B
C
13 lines
221 B
C
void comando_rmdir() {
|
|
// send command byte
|
|
send_byte_to_MCU(CMD_RMDIR);
|
|
if(TIMEOUT) return;
|
|
|
|
// send filename
|
|
send_string_to_MCU(filename);
|
|
if(TIMEOUT) return;
|
|
|
|
print_string_response();
|
|
return;
|
|
}
|