mirror of
https://github.com/nippur72/apple1-videocard-lib.git
synced 2025-01-08 00:32:31 +00:00
9 lines
144 B
C
9 lines
144 B
C
|
void comando_mount() {
|
||
|
// send command byte
|
||
|
send_byte_to_MCU(CMD_MOUNT);
|
||
|
if(TIMEOUT) return;
|
||
|
|
||
|
print_string_response();
|
||
|
return;
|
||
|
}
|