Skip to content

Commit

Permalink
replace custom FLASH saving code with common function
Browse files Browse the repository at this point in the history
  • Loading branch information
smesgr9000 committed May 28, 2024
1 parent cb11107 commit 0d9596e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 64 deletions.
6 changes: 5 additions & 1 deletion Cart_Reader/Cart_Reader.ino
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,11 @@ void createFolder(const char* system, const char* subfolder, const char* gameNam

// create a new folder for the rom file
EEPROM_readAnything(0, foldern);
sprintf(folder, "%s/%s/%s/%d", system, subfolder, gameName, foldern);
if(subfolder == NULL) {
sprintf(folder, "%s/%s/%d", system, gameName, foldern);
} else {
sprintf(folder, "%s/%s/%s/%d", system, subfolder, gameName, foldern);
}
sd.mkdir(folder, true);
sd.chdir(folder);
}
Expand Down
66 changes: 3 additions & 63 deletions Cart_Reader/FLASH.ino
Original file line number Diff line number Diff line change
Expand Up @@ -1741,26 +1741,8 @@ void readFlash() {
// Reset to root directory
sd.chdir("/");

// Get name, add extension and convert to char array for sd lib
EEPROM_readAnything(0, foldern);
sd.mkdir("FLASH", true);
sd.chdir("FLASH");
sprintf(fileName, "FL%d", foldern);
strcat(fileName, ".bin");
// write new folder number back to eeprom
foldern = foldern + 1;
EEPROM_writeAnything(0, foldern);
createFolderAndOpenFile("FLASH", NULL, "FL", "bin");

display_Clear();
print_STR(saving_to_STR, 0);
print_Msg(fileName);
println_Msg(F("..."));
display_Update();

// Open file on sd card
if (!myFile.open(fileName, O_RDWR | O_CREAT)) {
print_FatalError(create_file_STR);
}
for (unsigned long currByte = 0; currByte < flashSize; currByte += 512) {
for (int c = 0; c < 512; c++) {
sdBuffer[c] = readByte_Flash(currByte + c);
Expand Down Expand Up @@ -2001,29 +1983,8 @@ void readFlash16() {
// Reset to root directory
sd.chdir("/");

// Get name, add extension and convert to char array for sd lib
EEPROM_readAnything(0, foldern);
sd.mkdir("FLASH", true);
sd.chdir("FLASH");
sprintf(fileName, "FL%d", foldern);
strcat(fileName, ".bin");
// write new folder number back to eeprom
foldern = foldern + 1;
EEPROM_writeAnything(0, foldern);
createFolderAndOpenFile("FLASH", NULL, "FL", "bin");

display_Clear();
print_STR(saving_to_STR, 0);
print_Msg(fileName);
println_Msg(F("..."));
display_Update();

// Open file on sd card
if (!myFile.open(fileName, O_RDWR | O_CREAT)) {
println_Msg(F("Can't create file on SD."));
display_Update();
while (1)
;
}
word d = 0;
for (unsigned long currByte = 0; currByte < flashSize / 2; currByte += 256) {
for (word c = 0; c < 256; c++) {
Expand Down Expand Up @@ -2277,29 +2238,8 @@ void read_Eprom() {
// Reset to root directory
sd.chdir("/");

// Get name, add extension and convert to char array for sd lib
EEPROM_readAnything(0, foldern);
sd.mkdir("FLASH", true);
sd.chdir("FLASH");
sprintf(fileName, "FL%d", foldern);
strcat(fileName, ".bin");
// write new folder number back to eeprom
foldern = foldern + 1;
EEPROM_writeAnything(0, foldern);
createFolderAndOpenFile("FLASH", NULL, "FL", "bin");

display_Clear();
print_STR(saving_to_STR, 0);
print_Msg(fileName);
println_Msg(F("..."));
display_Update();

// Open file on sd card
if (!myFile.open(fileName, O_RDWR | O_CREAT)) {
println_Msg(F("Can't create file on SD."));
display_Update();
while (1)
;
}
word d = 0;
for (unsigned long currWord = 0; currWord < flashSize / 2; currWord += 256) {
for (word c = 0; c < 256; c++) {
Expand Down

0 comments on commit 0d9596e

Please sign in to comment.