cartreader/Cart_Reader
Ancyker 40238b18a1
Fixed (added) missing FS() macro on some FSTRING constants
This was causing two symptoms/bugs:
* OSCR_LOG.txt was being spammed with random data.
* The size of OSCR_LOG.txt would get so big that copying the log would take a long time, possibly minutes. Oftentimes this caused the display to appear to hang after searching for the CRC (after "->") but before displaying the result.

If using the global log and a version of master since e61ac414d8 you should delete OSCR_LOG.txt from your SD card as it will likely be very large and continue to cause dumping to be slow.
2024-05-07 17:16:51 -04:00
..
2600.ino remove duplicate code for F4,F6 & F8 mapper 2024-05-07 20:30:02 +02:00
5200.ino make cast in read function explicit and reduce duplicate read functions 2024-05-03 19:12:48 +02:00
7800.ino make cast in read function explicit and reduce duplicate read functions 2024-05-03 19:12:48 +02:00
ARC.ino make cast in read function explicit and reduce duplicate read functions 2024-05-03 19:12:48 +02:00
C64.ino make cast in read function explicit and reduce duplicate read functions 2024-05-03 19:12:48 +02:00
COLV.ino make cast in read function explicit and reduce duplicate read functions 2024-05-03 19:12:48 +02:00
Cart_Reader.ino Fixed (added) missing FS() macro on some FSTRING constants 2024-05-07 17:16:51 -04:00
ClockedSerial.cpp Code optimization, cleanup, and stylization 2024-03-02 11:26:35 -05:00
ClockedSerial.h Firmware Updater support, 3.3V Fix, and more 2023-03-29 21:05:01 -04:00
Config.h revert accidently committed Config.h 2024-04-24 20:17:10 +02:00
FAIRCHILD.ino fix signed/unsigned warning 2024-05-03 20:47:48 +02:00
FLASH.ino Code optimization, cleanup, and stylization 2024-03-02 11:26:35 -05:00
GB.ino Code optimization, cleanup, and stylization 2024-03-02 11:26:35 -05:00
GBA.ino Code optimization, cleanup, and stylization 2024-03-02 11:26:35 -05:00
GBM.ino Code optimization, cleanup, and stylization 2024-03-02 11:26:35 -05:00
GBS.ino Code optimization, cleanup, and stylization 2024-03-02 11:26:35 -05:00
GPC.ino Code optimization, cleanup, and stylization 2024-03-02 11:26:35 -05:00
INTV.ino make cast in read function explicit and reduce duplicate read functions 2024-05-03 19:12:48 +02:00
LICENSE.txt Add files via upload 2022-06-08 22:28:26 +02:00
LOOPY.ino Code optimization, cleanup, and stylization 2024-03-02 11:26:35 -05:00
MD.ino Update MD.ino 2024-04-21 02:08:30 -04:00
MSX.ino make cast in read function explicit and reduce duplicate read functions 2024-05-03 19:12:48 +02:00
N64.ino Fixed (added) missing FS() macro on some FSTRING constants 2024-05-07 17:16:51 -04:00
NES.ino move PRG/CHR dumping code to own function 2024-05-03 23:42:06 +02:00
NGP.ino Code optimization, cleanup, and stylization 2024-03-02 11:26:35 -05:00
ODY2.ino make cast in read function explicit and reduce duplicate read functions 2024-05-03 19:12:48 +02:00
OSCR.cpp replace FAIRCHILD, ODY2, MSX and VECTREX cart selection code with code used in NES, COLV & INTV. Define "Database not found" in OSCR.cpp 2024-05-01 09:06:23 +02:00
OSCR.h replace FAIRCHILD, ODY2, MSX and VECTREX cart selection code with code used in NES, COLV & INTV. Define "Database not found" in OSCR.cpp 2024-05-01 09:06:23 +02:00
PCE.ino Code optimization, cleanup, and stylization 2024-03-02 11:26:35 -05:00
PCW.ino Code optimization, cleanup, and stylization 2024-03-02 11:26:35 -05:00
POKEMINI.ino Code optimization, cleanup, and stylization 2024-03-02 11:26:35 -05:00
README.md Code optimization, cleanup, and stylization 2024-03-02 11:26:35 -05:00
SFM.ino Code optimization, cleanup, and stylization 2024-03-02 11:26:35 -05:00
SMS.ino remove duplicate string literals 2024-05-03 17:12:31 +02:00
SNES.ino Fix romType for Yuyu no Quiz de GO!GO! 2024-04-30 12:25:58 +02:00
ST.ino CRC check added 2024-03-11 16:38:10 +01:00
SUPRACAN.ino Code optimization, cleanup, and stylization 2024-03-02 11:26:35 -05:00
SV.ino Code optimization, cleanup, and stylization 2024-03-02 11:26:35 -05:00
VBOY.ino Code optimization, cleanup, and stylization 2024-03-02 11:26:35 -05:00
VECTREX.ino make cast in read function explicit and reduce duplicate read functions 2024-05-03 19:12:48 +02:00
WS.ino Code optimization, cleanup, and stylization 2024-03-02 11:26:35 -05:00
WSV.ino make cast in read function explicit and reduce duplicate read functions 2024-05-03 19:12:48 +02:00

README.md

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* const menuOptionsN64Controller[] PROGMEM = {N64ContMenuItem1, N64ContMenuItem2, N64ContMenuItem3, FSTRING_RESET};

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 Cart_Reader.ino

//******************************************
// !!! CHOOSE HARDWARE VERSION !!!
//******************************************
// Remove // in front of the line with your hardware version
// #define HW5
// #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
LCD lib: https://github.com/olikraus/U8g2_Arduino
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 (needs BusIO lib: https://github.com/adafruit/Adafruit_BusIO)
Frequency Counter lib: https://github.com/PaulStoffregen/FreqCount