mirror of
https://github.com/nippur72/apple1-videocard-lib.git
synced 2025-01-18 07:31:25 +00:00
13 lines
221 B
C
13 lines
221 B
C
|
void comando_mkdir() {
|
||
|
// send command byte
|
||
|
send_byte_to_MCU(CMD_MKDIR);
|
||
|
if(TIMEOUT) return;
|
||
|
|
||
|
// send filename
|
||
|
send_string_to_MCU(filename);
|
||
|
if(TIMEOUT) return;
|
||
|
|
||
|
print_string_response();
|
||
|
return;
|
||
|
}
|