Skip to content

Commit

Permalink
Update FLASH.ino
Browse files Browse the repository at this point in the history
  • Loading branch information
sanni committed Aug 9, 2024
1 parent e196335 commit 952d942
Showing 1 changed file with 30 additions and 3 deletions.
33 changes: 30 additions & 3 deletions Cart_Reader/FLASH.ino
Original file line number Diff line number Diff line change
Expand Up @@ -2965,13 +2965,40 @@ void writeCFI_Flash(byte currChip, byte totalChips, boolean reversed) {
statusReg = readByte_Flash(0);
}

// Adjust filesize to fit flashchip
adjustFileSize(currChip, totalChips, reversed);

print_Msg(F("Writing flash"));
print_Msg(FS(FSTRING_SPACE));
print_Msg(currChip);
print_Msg(F("/"));
println_Msg(totalChips);
// Adjust filesize to fit flashchip
adjustFileSize(currChip, totalChips, reversed);
print_Msg(totalChips);
print_Msg(FS(FSTRING_SPACE));
print_Msg(FS(FSTRING_SPACE));
print_Msg(FS(FSTRING_SPACE));
print_Msg(FS(FSTRING_SPACE));

switch (myFile.curPosition() / 1024 / 1024UL) {
case 0:
println_Msg(F("[A]BCD"));
break;

case 2:
println_Msg(F("A[B]CD"));
break;

case 4:
println_Msg(F("AB[C]D"));
break;

case 6:
println_Msg(F("ABC[D]"));
break;

default:
println_Msg(FS(FSTRING_SPACE));
break;
}
display_Update();

//Initialize progress bar
Expand Down

0 comments on commit 952d942

Please sign in to comment.