From 4491c64835af480925c6c151239bde5788eb5677 Mon Sep 17 00:00:00 2001 From: Alex Voinea Date: Thu, 8 Sep 2022 16:40:38 +0200 Subject: [PATCH] Allow "PRUSA SN" to print the SN in eeprom on all variants --- Firmware/Marlin_main.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/Firmware/Marlin_main.cpp b/Firmware/Marlin_main.cpp index 680753f00..95ce77d5c 100644 --- a/Firmware/Marlin_main.cpp +++ b/Firmware/Marlin_main.cpp @@ -4266,7 +4266,6 @@ void process_commands() asm volatile("jmp 0x3E000"); #endif } -#ifdef PRUSA_SN_SUPPORT else if (code_seen_P(PSTR("SN"))) { // PRUSA SN char SN[20]; eeprom_read_block(SN, (uint8_t*)EEPROM_PRUSA_SN, 20); @@ -4275,7 +4274,6 @@ void process_commands() else puts(SN); } -#endif //PRUSA_SN_SUPPORT else if(code_seen_P(PSTR("Fir"))){ // PRUSA Fir SERIAL_PROTOCOLLN(FW_VERSION_FULL);