mirror of
https://github.com/sanni/cartreader.git
synced 2024-11-23 21:19:16 +01:00
Add files via upload
This commit is contained in:
parent
41efe13dd7
commit
97a233e7ec
@ -4,7 +4,7 @@
|
|||||||
This project represents a community-driven effort to provide
|
This project represents a community-driven effort to provide
|
||||||
an easy to build and easy to modify cartridge dumper.
|
an easy to build and easy to modify cartridge dumper.
|
||||||
|
|
||||||
Date: 11.06.2022
|
Date: 12.06.2022
|
||||||
Version: 8.5 BETA
|
Version: 8.5 BETA
|
||||||
|
|
||||||
SD lib: https://github.com/greiman/SdFat
|
SD lib: https://github.com/greiman/SdFat
|
||||||
|
@ -959,7 +959,7 @@ void compare_checksums_GB() {
|
|||||||
print_Msg(crcStr);
|
print_Msg(crcStr);
|
||||||
|
|
||||||
//Search for CRC32 in file
|
//Search for CRC32 in file
|
||||||
char gamename[50];
|
char gamename[100];
|
||||||
char crc_search[9];
|
char crc_search[9];
|
||||||
|
|
||||||
//go to root
|
//go to root
|
||||||
@ -968,7 +968,7 @@ void compare_checksums_GB() {
|
|||||||
//Search for same CRC in list
|
//Search for same CRC in list
|
||||||
while (myFile.available()) {
|
while (myFile.available()) {
|
||||||
//Read 2 lines (game name and CRC)
|
//Read 2 lines (game name and CRC)
|
||||||
get_line(gamename, &myFile, 46);
|
get_line(gamename, &myFile, 96);
|
||||||
get_line(crc_search, &myFile, 9);
|
get_line(crc_search, &myFile, 9);
|
||||||
skip_line(&myFile); //Skip every 3rd line
|
skip_line(&myFile); //Skip every 3rd line
|
||||||
|
|
||||||
|
@ -2,12 +2,12 @@
|
|||||||
// !!! CHOOSE HARDWARE VERSION !!!
|
// !!! CHOOSE HARDWARE VERSION !!!
|
||||||
//******************************************
|
//******************************************
|
||||||
// Remove // in front of the line with your hardware version
|
// Remove // in front of the line with your hardware version
|
||||||
//#define HW5
|
// #define HW5
|
||||||
//#define HW4
|
// #define HW4
|
||||||
//#define HW3
|
// #define HW3
|
||||||
//#define HW2
|
// #define HW2
|
||||||
//#define HW1
|
// #define HW1
|
||||||
//#define SERIAL_MONITOR
|
// #define SERIAL_MONITOR
|
||||||
|
|
||||||
#if !(defined(HW1) || defined(HW2) || defined(HW3) || defined(HW4) || defined(HW5) || defined(SERIAL_MONITOR))
|
#if !(defined(HW1) || defined(HW2) || defined(HW3) || defined(HW4) || defined(HW5) || defined(SERIAL_MONITOR))
|
||||||
# error !!! PLEASE CHOOSE HARDWARE VERSION IN OPTIONS.H !!!
|
# error !!! PLEASE CHOOSE HARDWARE VERSION IN OPTIONS.H !!!
|
||||||
@ -24,7 +24,7 @@
|
|||||||
#define enable_neopixel
|
#define enable_neopixel
|
||||||
#define background_color 100,0,0 //Green, Red, Blue
|
#define background_color 100,0,0 //Green, Red, Blue
|
||||||
#define enable_rotary
|
#define enable_rotary
|
||||||
//#define rotate_counter_clockwise
|
// #define rotate_counter_clockwise
|
||||||
#define clockgen_installed
|
#define clockgen_installed
|
||||||
#define fastcrc
|
#define fastcrc
|
||||||
#define ws_adapter_v2
|
#define ws_adapter_v2
|
||||||
@ -33,8 +33,8 @@
|
|||||||
#if (defined(HW2) || defined(HW3))
|
#if (defined(HW2) || defined(HW3))
|
||||||
#define enable_OLED
|
#define enable_OLED
|
||||||
#define enable_Button2
|
#define enable_Button2
|
||||||
//#define clockgen_installed
|
// #define clockgen_installed
|
||||||
//#define fastcrc
|
// #define fastcrc
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(HW1)
|
#if defined(HW1)
|
||||||
@ -52,8 +52,8 @@
|
|||||||
// flashMenu, nesMenu or smsMenu for single slot Cart Readers
|
// flashMenu, nesMenu or smsMenu for single slot Cart Readers
|
||||||
#define startMenu mainMenu
|
#define startMenu mainMenu
|
||||||
|
|
||||||
//Ignores errors that normally force a reset if button 2 is pressed
|
// Ignores errors that normally force a reset if button 2 is pressed
|
||||||
//#define debug_mode
|
// #define debug_mode
|
||||||
|
|
||||||
// Setup RTC if installed.
|
// Setup RTC if installed.
|
||||||
// remove // if you have an RTC installed
|
// remove // if you have an RTC installed
|
||||||
@ -63,7 +63,7 @@
|
|||||||
// #define clockgen_calibration
|
// #define clockgen_calibration
|
||||||
|
|
||||||
// Write all info to log.txt in root dir
|
// Write all info to log.txt in root dir
|
||||||
//#define global_log
|
// #define global_log
|
||||||
|
|
||||||
// Use Adafruit Clock Generator
|
// Use Adafruit Clock Generator
|
||||||
// #define clockgen_installed
|
// #define clockgen_installed
|
||||||
@ -72,7 +72,7 @@
|
|||||||
// GB OPTIONS
|
// GB OPTIONS
|
||||||
//******************************************
|
//******************************************
|
||||||
// Renames ROM if found in database (slow)
|
// Renames ROM if found in database (slow)
|
||||||
//#define no-intro
|
// #define no-intro
|
||||||
|
|
||||||
//******************************************
|
//******************************************
|
||||||
// N64 OPTIONS
|
// N64 OPTIONS
|
||||||
|
Loading…
Reference in New Issue
Block a user