Remove some MYSERIAL calls

This commit is contained in:
Juan Francisco Estrada 2023-10-24 11:30:24 +02:00 committed by 3d-gussner
parent ae5fbce6e7
commit 004169034a
1 changed files with 1 additions and 4 deletions

View File

@ -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);