V30E: Moved disabling interrupts out of the loop when reading/writing N64 eeproms

Hopefully this was the reason it sometimes froze at that point.
This commit is contained in:
sanni 2017-11-22 12:44:18 +01:00 committed by GitHub
parent fa63471333
commit 76ae5c5408
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 131 additions and 123 deletions

View File

@ -2,8 +2,8 @@
Cartridge Reader for Arduino Mega2560
Author: sanni
Date: 2017-11-21
Version: V30D
Date: 2017-11-22
Version: V30E
SD lib: https://github.com/greiman/SdFat
LCD lib: https://github.com/adafruit/Adafruit_SSD1306
@ -35,7 +35,7 @@
infinest - help with GB Memory cart
**********************************************************************************/
char ver[5] = "V30D";
char ver[5] = "V30E";
/******************************************
Define Starting Point
@ -457,6 +457,8 @@ void setup() {
Serial.println(F("Cartridge Reader"));
Serial.println(F("2017 sanni"));
Serial.println("");
// LED
rgb.setColor(0, 0, 255);
}
// Init SD card
@ -616,6 +618,8 @@ void println_Msg(long unsigned int message) {
void display_Update() {
if (enable_OLED)
display.display();
if (enable_Serial)
delay(100);
}
void display_Clear() {
@ -641,43 +645,44 @@ void wait_serial() {
while (Serial.available() == 0) {
}
incomingByte = Serial.read() - 48;
if (incomingByte == 53) {
/* if ((incomingByte == 53) && (fileName[0] != '\0')) {
// Open file on sd card
sd.chdir(folder);
if (myFile.open(fileName, O_READ)) {
// Get rom size from file
fileSize = myFile.fileSize();
// Send filesize
char tempStr[16];
sprintf(tempStr, "%d", fileSize);
Serial.write(tempStr);
// Wait for ok
while (Serial.available() == 0) {
}
// Send file
for (unsigned long currByte = 0; currByte < fileSize; currByte += 512) {
myFile.read(sdBuffer, 512);
for (unsigned long currByte = 0; currByte < fileSize; currByte++) {
// Blink led
if (currByte % 2048 == 0)
if (currByte % 1024 == 0)
PORTB ^= (1 << 4);
for (int c = 0; c < 512; c++) {
Serial.write(sdBuffer[c]);
Serial.write(myFile.read());
}
}
// Close the file:
myFile.close();
}
else {
print_Error(F("Can't open file"), true);
}
}
Serial.println("");
}*/
}
byte questionBox_Serial(const char* question, char answers[7][20], int num_answers, int default_choice) {
// Print menu to serial monitor
if (enable_Serial && filebrowse) {
if (filebrowse) {
Serial.print("Filebrowser: ");
}
Serial.print(question);
Serial.println(F(" Menu"));
Serial.println(question);
for (byte i = 0; i < num_answers; i++) {
Serial.print(i);
Serial.print(F(")"));
@ -686,14 +691,14 @@ byte questionBox_Serial(const char* question, char answers[7][20], int num_answe
// Wait for user input
Serial.println("");
Serial.println(F("Please browse pages with 'u'(up) and 'd'(down)"));
Serial.print(F("and enter a selection by typing a number(0-6): _ "));
Serial.println(F("and enter a selection by typing a number(0-6): _ "));
while (Serial.available() == 0) {
}
// Read the incoming byte:
incomingByte = Serial.read() - 48;
// Import file (i)
/* Import file (i)
if (incomingByte == 57) {
if (filebrowse == 1) {
// Make sure we have an import directory
@ -728,7 +733,7 @@ byte questionBox_Serial(const char* question, char answers[7][20], int num_answe
println_Msg(fileName);
return 7;
}
}
}*/
// Page up (u)
if (incomingByte == 69) {

View File

@ -303,7 +303,7 @@ void setup_N64_Cart() {
DDRH |= (1 << 0) | (1 << 5) | (1 << 6);
DDRC |= (1 << 0) | (1 << 1);
// Pull RESET(PH0) low until we are ready
//PORTH &= ~(1 << 0);
PORTH &= ~(1 << 0);
// Output a high signal on WR(PH5) RD(PH6), pins are active low therefore everything is disabled now
PORTH |= (1 << 5) | (1 << 6);
// Pull aleL(PC0) low and aleH(PC1) high
@ -326,9 +326,8 @@ void setup_N64_Cart() {
// Wait until all is stable
delay(300);
// Pull RESET(PH0) high
//PORTH |= (1 << 0);
//delay(10);
// Pull RESET(PH0) high to start eeprom
PORTH |= (1 << 0);
}
/******************************************
@ -1338,11 +1337,10 @@ void writeEeprom() {
for (byte i = 0; i < (eepPages / 64); i++) {
myFile.read(sdBuffer, 512);
for (byte pageNumber = 0; pageNumber < 64; pageNumber++) {
// Disable interrupts for more uniform clock pulses
noInterrupts();
for (byte pageNumber = 0; pageNumber < 64; pageNumber++) {
// Wait ~50ms between page writes or eeprom will have write errors
pulseClock_N64(26000);
@ -1355,10 +1353,10 @@ void writeEeprom() {
sendData(sdBuffer[(pageNumber * 8) + j]);
}
sendStop();
}
interrupts();
}
}
// Close the file:
myFile.close();
println_Msg(F("Done"));
@ -1400,10 +1398,10 @@ void readEeprom() {
}
for (byte i = 0; i < (eepPages / 64); i++) {
for (byte pageNumber = 0; pageNumber < 64; pageNumber++) {
// Disable interrupts for more uniform clock pulses
noInterrupts();
for (byte pageNumber = 0; pageNumber < 64; pageNumber++) {
// Send read command
sendData(0x04);
// Send Page number
@ -1415,8 +1413,6 @@ void readEeprom() {
readData();
sendStop();
interrupts();
// OR 8 bits into one byte for a total of 8 bytes
for (byte j = 0; j < 64; j += 8) {
sdBuffer[(pageNumber * 8) + (j / 8)] = tempBits[0 + j] << 7 | tempBits[1 + j] << 6 | tempBits[2 + j] << 5 | tempBits[3 + j] << 4 | tempBits[4 + j] << 3 | tempBits[5 + j] << 2 | tempBits[6 + j] << 1 | tempBits[7 + j];
@ -1424,6 +1420,7 @@ void readEeprom() {
// Wait ~0.6ms between pages or eeprom will lock up
pulseClock_N64(300);
}
interrupts();
// Write 64 pages at once to the SD card
myFile.write(sdBuffer, 512);
@ -1458,10 +1455,10 @@ unsigned long verifyEeprom() {
if (myFile.open(filePath, O_READ)) {
for (byte i = 0; i < (eepPages / 64); i++) {
for (byte pageNumber = 0; pageNumber < 64; pageNumber++) {
// Disable interrupts for more uniform clock pulses
noInterrupts();
for (byte pageNumber = 0; pageNumber < 64; pageNumber++) {
// Send read command
sendData(0x04);
// Send Page number
@ -1473,7 +1470,7 @@ unsigned long verifyEeprom() {
readData();
sendStop();
interrupts();
// OR 8 bits into one byte for a total of 8 bytes
for (byte j = 0; j < 64; j += 8) {
@ -1482,6 +1479,7 @@ unsigned long verifyEeprom() {
// Wait ~0.6ms between pages or eeprom will lock up
pulseClock_N64(300);
}
interrupts();
// Check sdBuffer content against file on sd card
for (int c = 0; c < 512; c++) {
@ -1987,7 +1985,7 @@ void readRom_N64() {
foldern = foldern + 1;
EEPROM_writeAnything(10, foldern);
readn64rom:
//readn64rom:
// Open file on sd card
if (!myFile.open(fileName, O_RDWR | O_CREAT)) {
print_Error(F("SD Error"), true);
@ -2016,7 +2014,7 @@ readn64rom:
// Close the file:
myFile.close();
calcn64crc:
/*calcn64crc:
// Calculate Checksum and convert to string
println_Msg(F("Calculating CRC.."));
display_Update();
@ -2089,7 +2087,12 @@ calcn64crc:
break;
}
}
display_Update();*/
println_Msg(F("Done."));
println_Msg(F(""));
println_Msg(F("Press Button..."));
display_Update();
wait();
}
/******************************************