From 489e4fd35c41950ee84267b96fa27ae3c34e02af Mon Sep 17 00:00:00 2001 From: Alex Voinea Date: Fri, 11 Feb 2022 13:04:27 +0100 Subject: [PATCH] Fix PRUSA commands --- Firmware/Marlin_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Firmware/Marlin_main.cpp b/Firmware/Marlin_main.cpp index 9778e565e..06c699a94 100755 --- a/Firmware/Marlin_main.cpp +++ b/Firmware/Marlin_main.cpp @@ -4550,7 +4550,7 @@ void process_commands() #elif defined(BOOTAPP) //this is a safety precaution. This is because the new bootloader turns off the heaters, but the old one doesn't. The watchdog should be used most of the time. asm volatile("jmp 0x3E000"); #endif - }else if (code_seen_P("fv")) { // PRUSA fv + } else if (code_seen_P(PSTR("fv"))) { // PRUSA fv // get file version #ifdef SDSUPPORT card.openFileReadFilteredGcode(strchr_pointer + 3,true);