mirror of
https://github.com/nippur72/apple1-videocard-lib.git
synced 2025-01-22 18:34:32 +00:00
9 lines
140 B
C
9 lines
140 B
C
|
void comando_pwd() {
|
||
|
// send command byte
|
||
|
send_byte_to_MCU(CMD_PWD);
|
||
|
if(TIMEOUT) return;
|
||
|
|
||
|
print_string_response();
|
||
|
return;
|
||
|
}
|