From 004169034a2bb72c0c2a0c2121b8ae01e18ef66e Mon Sep 17 00:00:00 2001 From: Juan Francisco Estrada Date: Tue, 24 Oct 2023 11:30:24 +0200 Subject: [PATCH] Remove some MYSERIAL calls --- Firmware/ultralcd.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Firmware/ultralcd.cpp b/Firmware/ultralcd.cpp index e11550208..6fe1b8fbb 100644 --- a/Firmware/ultralcd.cpp +++ b/Firmware/ultralcd.cpp @@ -7475,7 +7475,6 @@ void reprint_from_eeprom() { depth = eeprom_read_byte((uint8_t*)EEPROM_DIR_DEPTH); - MYSERIAL.println(int(depth)); for (int i = 0; i < depth; i++) { for (int j = 0; j < 8; j++) { dir_name[j] = eeprom_read_byte((uint8_t*)EEPROM_DIRS + j + 8 * i); @@ -7501,9 +7500,7 @@ void reprint_from_eeprom() { strcat_P(altfilename, PSTR(".g")); } } - MYSERIAL.print(altfilename); - - // M23: Select SD file + // M23: Select SD file enquecommandf_P(MSG_M23, altfilename); // M24: Start/resume SD print enquecommand_P(MSG_M24);