mirror of
https://github.com/nippur72/apple1-videocard-lib.git
synced 2025-01-08 00:32:31 +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;
|
||
|
}
|