mirror of
https://github.com/nippur72/apple1-videocard-lib.git
synced 2024-11-15 17:05:33 +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;
|
|
}
|