mirror of
https://github.com/nippur72/apple1-videocard-lib.git
synced 2025-01-06 18:29:54 +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;
|
|
}
|