cartreader/Cart_Reader
sanni cfb9e39cbf V4.9: Improve WS Initialization
Thanks to skaman.
The code does a deeper sanity check of the header data when initializing the cart.  It avoids having to constantly press buttons to reinit the cart.  Carts can still not initialize the MBC properly but that's normal for the WonderSwan.  Clean the pins on the cart and check that the cart and adapter are seated properly.  If the cart doesn't unlock immediately, then let the sketch run for a bit.  For stubborn carts, a power cycle might be necessary.
The sketch fixes a few typos, removes some trailing spaces, and adds another ROM size (used by Benesse Pocket Challenge V2 carts).
2020-04-20 10:35:48 +02:00
..
Cart_Reader.ino V4.9: Improve WS Initialization 2020-04-20 10:35:48 +02:00
FLASH.ino V4.9: Improve WS Initialization 2020-04-20 10:35:48 +02:00
GB.ino V4.8: Add Reset Option to sub menues 2020-04-12 11:11:10 +02:00
GBA.ino V4.4: Add ST M29W128GH GBA repro 2019-12-21 21:24:39 +01:00
GBSmart.ino Add "showCartInfo_GB" function 2019-10-07 11:34:55 +08:00
MD.ino Upload Files 2019-11-27 10:02:50 +01:00
N64.ino V4.8: Add Reset Option to sub menues 2020-04-12 11:11:10 +02:00
NES.ino V4.5 Fix VRC4e carts (Mapper 23) 2020-03-03 11:16:27 +01:00
NP.ino Set eeprom location for folder number to 0 again 2019-09-27 17:38:42 +02:00
PCE.ino V4.8: Add Reset Option to sub menues 2020-04-12 11:11:10 +02:00
README.md Move needed libraries into Releases 2019-10-04 12:57:52 +02:00
SMS.ino V4.8: Add Reset Option to sub menues 2020-04-12 11:11:10 +02:00
SNES.ino V4.8: Add Reset Option to sub menues 2020-04-12 11:11:10 +02:00
SV.ino V4.3: Add BS-X sram read/write thx to skaman 2019-12-17 19:53:21 +01:00
WS.ino V4.9: Improve WS Initialization 2020-04-20 10:35:48 +02:00

This Arduino code is written by a beginner for beginners, therefore I tried to comment every line of code. To an experienced coder this probably will seem very wrong but it really helps if you're just starting out.

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 Excel 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);
}

For development purposes you can route all the text output to the Arduino's Serial Monitor instead of to the OLED screen. In this case you control the cart reader by typing numbers into the serial monitor corresponding to the action you want to perform. If you are asked to press the button just send a random number.

// Comment out to change to Serial Output
// be sure to change the Arduino Serial Monitor to no line ending
//#define enable_OLED

To compile and upload the code 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/adafruit/Adafruit_SSD1306
GFX Lib: https://github.com/adafruit/Adafruit-GFX-Library
RGB Tools lib: https://github.com/joushx/Arduino-RGB-Tools
SI5351 lib: https://github.com/etherkit/Si5351Arduino