mirror of
https://github.com/sanni/cartreader.git
synced 2024-11-15 01:15:06 +01:00
Enable Internal Pull-ups for MD
https://github.com/sanni/cartreader/issues/1007
This commit is contained in:
parent
b8f0eeb0af
commit
bf90513edc
@ -4,8 +4,8 @@
|
||||
This project represents a community-driven effort to provide
|
||||
an easy to build and easy to modify cartridge dumper.
|
||||
|
||||
Date: 2024-07-08
|
||||
Version: 14.0
|
||||
Date: 2024-08-02
|
||||
Version: 14.1
|
||||
|
||||
SD lib: https://github.com/greiman/SdFat
|
||||
LCD lib: https://github.com/olikraus/u8g2
|
||||
|
@ -697,6 +697,9 @@ void dataOut_MD() {
|
||||
void dataIn_MD() {
|
||||
DDRC = 0x00;
|
||||
DDRA = 0x00;
|
||||
// Enable Internal Pullups (needed for games like Batman Forever that are open bus with random bytes on the last 1MB, so we get a clean 0xFF padding)
|
||||
PORTC = 0xFF;
|
||||
PORTA = 0xFF;
|
||||
}
|
||||
|
||||
/******************************************
|
||||
|
@ -49,7 +49,7 @@
|
||||
* String Constants
|
||||
**/
|
||||
// Firmware Version
|
||||
constexpr char PROGMEM FSTRING_VERSION[] = "V14.0";
|
||||
constexpr char PROGMEM FSTRING_VERSION[] = "V14.1";
|
||||
|
||||
// Universal
|
||||
constexpr char PROGMEM FSTRING_RESET[] = "Reset";
|
||||
|
Loading…
Reference in New Issue
Block a user