This commit is contained in:
steve 2023-09-30 13:37:08 +01:00
parent 78e3fff5c3
commit 53a16b3a29
2 changed files with 2 additions and 1 deletions

View File

@ -82,7 +82,7 @@ const char *flash_filer::advance() {
static char buf[32];
while (true) {
if (dir.next()) {
file = dir.openFile("rb+");
file = dir.openFile("r+");
break;
}
dir = SPIFFS.openDir(_programs);

View File

@ -59,6 +59,7 @@ uint8_t PIA::read(Memory::address a) {
case 3:
return read_crb();
}
return 0xff;
}
void PIA::checkpoint(Stream &s) {