cartreader/Cart_Reader
2022-08-19 19:56:35 +02:00
..
Cart_Reader.ino Increase file name length limit 2022-08-19 19:56:35 +02:00
COLV.ino 9.4: Add selecting mapping from database list for NES 2022-08-06 14:50:40 +02:00
FLASH.ino V9.0 2022-07-17 14:50:59 +02:00
GB.ino Add back option to dump headerless NES ROM 2022-08-03 12:14:32 +02:00
GBA.ino Add back option to dump headerless NES ROM 2022-08-03 12:14:32 +02:00
GBM.ino Add no-intro database to NES 2022-07-07 00:15:13 +02:00
GBS.ino V9.2 Alpha: Adds Coleco- and Intellivision (thx to skaman) 2022-07-23 11:16:37 +02:00
INTV.ino 9.4: Add selecting mapping from database list for NES 2022-08-06 14:50:40 +02:00
LICENSE.txt Add files via upload 2022-06-08 22:28:26 +02:00
MD.ino Add back option to dump headerless NES ROM 2022-08-03 12:14:32 +02:00
N64.ino Update N64.ino 2022-08-19 19:27:28 +02:00
NES.ino Lengthen displayed name in NES database list 2022-08-06 15:08:01 +02:00
NGP.ino V9.2 Alpha: Adds Coleco- and Intellivision (thx to skaman) 2022-07-23 11:16:37 +02:00
PCE.ino Add no-intro database to NES 2022-07-07 00:15:13 +02:00
README.md Update README.md 2022-08-08 19:54:00 +02:00
SFM.ino V9.2 Alpha: Adds Coleco- and Intellivision (thx to skaman) 2022-07-23 11:16:37 +02:00
SMS.ino Add back option to dump headerless NES ROM 2022-08-03 12:14:32 +02:00
SNES.ino Only correct SNES ROM size if non-standard size found in database, else trust header info to be correct 2022-08-19 12:16:14 +02:00
SV.ino Add no-intro database to NES 2022-07-07 00:15:13 +02:00
WS.ino Add no-intro database to NES 2022-07-07 00:15:13 +02:00

This Arduino sketch is licensed under the GNU GENERAL PUBLIC LICENSE Version 3 (GPL v3)

This means that you are free to:

  • use, modify and distribute this software, even commercially

Under the following terms:

  • state changes
  • disclose source
  • same license

Limitations:

  • Liability
  • Warranty

More details: https://www.gnu.org/licenses/gpl-3.0.en.html

Every submodule has it's own setup_XX() function that configures the needed pins and a submenu that lets you choose what you want to do. The code directly addresses the pins via the DDR, PIN and PORT registers.
Please also refer to the pinout Open Office sheet.

void setup_N64_Controller() {  
  // Output a low signal  
  PORTH &= ~(1 << 4);  
  // Set Controller Data Pin(PH4) to Input  
  DDRH &= ~(1 << 4);  
}  

Would be the same as this in a more traditional Arduino sketch:

int dataPin = 7;   

void setup(){    
  // Output a low signal   
  digitalWrite(dataPin, LOW);   
  // Set controller data pin to input  
  pinMode(dataPin, INPUT);  
}  

To preserve memory every string is saved into the flash of the Arduino, also called progmem. This is done by using the F() macro.

println_Msg(F("Press Button."));  

Also all the menus are stored in progmem and are only recalled to sram when needed.

// N64 controller menu items  
const char N64ContMenuItem1[] PROGMEM = "Test Controller";  
const char N64ContMenuItem2[] PROGMEM = "Read ControllerPak";  
const char N64ContMenuItem3[] PROGMEM = "Write ControllerPak";  
const char N64ContMenuItem4[] PROGMEM = "Reset";  
const char* const menuOptionsN64Controller[] PROGMEM = {N64ContMenuItem1, N64ContMenuItem2, N64ContMenuItem3, N64ContMenuItem4};  

In an effort to keep the codebase as portable as possible instead of using the functions supplied by the OLED library directly to print out text, auxiliary functions like println_Msg are being used. So if you want to change to another display library you don't need to change all the code but only the helper functions.

void print_Msg(long unsigned int message) {
  if (enable_OLED)
    display.print(message);
  if (enable_Serial)
    Serial.print(message);
}

Before uploading the code to your Arduino you need to select your hardware version in options.h

//******************************************     
// CHOOSE HARDWARE VERSION     
//******************************************    
#define HW4    
//#define HW3    
//#define HW2    
//#define HW1    
//#define SERIAL_MONITOR    

For more info please have a look at this wiki article.

Needed libraries(already included in the portable Arduino IDE under Releases)

SD lib: https://github.com/greiman/SdFat
OLED lib: https://github.com/adafruit/Adafruit_SSD1306
GFX Lib: https://github.com/adafruit/Adafruit-GFX-Library
BusIO: https://github.com/adafruit/Adafruit_BusIO
LCD lib: https://github.com/olikraus/U8g2_Arduino
RGB Tools lib: https://github.com/joushx/Arduino-RGB-Tools (you need to move the files from the src subdir to the root dir of the library)
Neopixel lib: https://github.com/adafruit/Adafruit_NeoPixel
Rotary Enc lib: https://github.com/mathertel/RotaryEncoder
SI5351 lib: https://github.com/etherkit/Si5351Arduino
RTC lib: https://github.com/adafruit/RTClib
Frequency Counter lib: https://github.com/PaulStoffregen/FreqCount