mirror of
https://github.com/sanni/cartreader.git
synced 2024-11-15 01:15:06 +01:00
replace duplicate error string "Can't open file"
This commit is contained in:
parent
ee6a7fe41f
commit
e1bd042d82
@ -151,7 +151,7 @@ uint8_t readData_COL(uint32_t addr) {
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
void readSegment_COL(uint32_t startaddr, uint32_t endaddr) {
|
void readSegment_COL(uint16_t startaddr, uint32_t endaddr) {
|
||||||
for (uint32_t addr = startaddr; addr < endaddr; addr += 512) {
|
for (uint32_t addr = startaddr; addr < endaddr; addr += 512) {
|
||||||
for (int w = 0; w < 512; w++) {
|
for (int w = 0; w < 512; w++) {
|
||||||
uint8_t temp = readData_COL(addr + w);
|
uint8_t temp = readData_COL(addr + w);
|
||||||
@ -166,7 +166,6 @@ void readROM_COL() {
|
|||||||
|
|
||||||
// RESET ALL CS PINS HIGH (DISABLE)
|
// RESET ALL CS PINS HIGH (DISABLE)
|
||||||
PORTH |= (1 << 3) | (1 << 4) | (1 << 5) | (1 << 6);
|
PORTH |= (1 << 3) | (1 << 4) | (1 << 5) | (1 << 6);
|
||||||
|
|
||||||
readSegment_COL(0x8000, 0xA000); // 8K
|
readSegment_COL(0x8000, 0xA000); // 8K
|
||||||
if (colsize > 0) {
|
if (colsize > 0) {
|
||||||
readSegment_COL(0xA000, 0xB000); // +4K = 12K
|
readSegment_COL(0xA000, 0xB000); // +4K = 12K
|
||||||
|
@ -1014,7 +1014,7 @@ unsigned long verifySRAM_GBA(unsigned long sramSize, uint32_t pos) {
|
|||||||
|
|
||||||
return writeErrors;
|
return writeErrors;
|
||||||
} else {
|
} else {
|
||||||
print_Error(F("Can't open file"));
|
print_Error(open_file_STR);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1202,7 +1202,7 @@ unsigned long verifyFRAM_GBA(unsigned long framSize) {
|
|||||||
myFile.close();
|
myFile.close();
|
||||||
return writeErrors;
|
return writeErrors;
|
||||||
} else {
|
} else {
|
||||||
print_Error(F("Can't open file"));
|
print_Error(open_file_STR);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -688,7 +688,7 @@ void writeFlash_GBM() {
|
|||||||
myFile.close();
|
myFile.close();
|
||||||
print_STR(done_STR, 1);
|
print_STR(done_STR, 1);
|
||||||
} else {
|
} else {
|
||||||
print_Error(F("Can't open file"));
|
print_Error(open_file_STR);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -902,7 +902,7 @@ void writeMapping_GBM() {
|
|||||||
myFile.close();
|
myFile.close();
|
||||||
print_STR(done_STR, 1);
|
print_STR(done_STR, 1);
|
||||||
} else {
|
} else {
|
||||||
print_Error(F("Can't open file"));
|
print_Error(open_file_STR);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -386,7 +386,7 @@ unsigned long verifyRAM_GPC() {
|
|||||||
myFile.close();
|
myFile.close();
|
||||||
return writeErrors;
|
return writeErrors;
|
||||||
} else {
|
} else {
|
||||||
print_Error(F("Can't open file"));
|
print_Error(open_file_STR);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3282,7 +3282,7 @@ void flashRepro_N64() {
|
|||||||
print_Error(F("failed"));
|
print_Error(F("failed"));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
print_Error(F("Can't open file"));
|
print_Error(open_file_STR);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Prints string out of the common strings array either with or without newline
|
// Prints string out of the common strings array either with or without newline
|
||||||
@ -4066,7 +4066,7 @@ void flashGameshark_N64() {
|
|||||||
print_Error(did_not_verify_STR);
|
print_Error(did_not_verify_STR);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
print_Error(F("Can't open file"));
|
print_Error(open_file_STR);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -4422,7 +4422,7 @@ void flashXplorer_N64() {
|
|||||||
print_Error(did_not_verify_STR);
|
print_Error(did_not_verify_STR);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
print_Error(F("Can't open file"));
|
print_Error(open_file_STR);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1971,7 +1971,7 @@ unsigned long verifySRAM() {
|
|||||||
myFile.close();
|
myFile.close();
|
||||||
return writeErrors;
|
return writeErrors;
|
||||||
} else {
|
} else {
|
||||||
print_Error(F("Can't open file"));
|
print_Error(open_file_STR);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -398,7 +398,7 @@ unsigned long verifySRAM_SV() {
|
|||||||
myFile.close();
|
myFile.close();
|
||||||
return writeErrors;
|
return writeErrors;
|
||||||
} else {
|
} else {
|
||||||
print_Error(F("Can't open file"));
|
print_Error(open_file_STR);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user