mirror of
https://github.com/nippur72/apple1-videocard-lib.git
synced 2024-12-22 13:30:38 +00:00
do not use "" as root path, use "/" instead
This commit is contained in:
parent
8f211570f0
commit
f8870a7e9e
@ -706,12 +706,7 @@ void comando_mkdir() {
|
||||
// **************************************************************************************
|
||||
|
||||
void send_cd_path() {
|
||||
if(cd_path[0]==0) {
|
||||
send_string_to_cpu("/");
|
||||
}
|
||||
else {
|
||||
send_string_to_cpu(cd_path);
|
||||
}
|
||||
send_string_to_cpu(cd_path);
|
||||
}
|
||||
|
||||
void comando_cd() {
|
||||
@ -737,7 +732,7 @@ void comando_cd() {
|
||||
// changes to the root directory
|
||||
if(SD.chdir()) {
|
||||
// set root working directory
|
||||
strcpy(cd_path[0], filename);
|
||||
strcpy(cd_path, filename);
|
||||
send_cd_path();
|
||||
Serial.print(F("dir changed to:"));
|
||||
Serial.println(cd_path);
|
||||
|
Loading…
Reference in New Issue
Block a user