From d060c1be33ee71b1bcf0d2e815af73d5ee5b0d8a Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Fri, 21 Jan 2022 22:08:55 +0100 Subject: [PATCH] Work on ATmega2560 compatibility --- Config.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Config.h b/Config.h index 18ce9e1..9c9ea97 100644 --- a/Config.h +++ b/Config.h @@ -4,7 +4,7 @@ #define CONFIG_H #define MAJ_VERS 0x01 - #define MIN_VERS 0x17 + #define MIN_VERS 0x18 #define PLATFORM_AVR 0x90 #define PLATFORM_ESP32 0x80 @@ -63,8 +63,8 @@ #define EEPROM_OFFSET EEPROM_SIZE-EEPROM_RESERVED #elif MCU_VARIANT == MCU_2560 - const int pin_cs = 10; - const int pin_reset = 9; + const int pin_cs = 5; + const int pin_reset = 4; const int pin_dio = 2; const int pin_led_rx = 12; const int pin_led_tx = 13;