mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-02-17 06:48:05 +00:00
🚸 On pause report "SD printing byte X/Y" (#24709)
This commit is contained in:
parent
7daff755f2
commit
02810616cc
1 changed files with 1 additions and 1 deletions
|
@ -789,7 +789,7 @@ void CardReader::removeFile(const char * const name) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void CardReader::report_status() {
|
void CardReader::report_status() {
|
||||||
if (isPrinting()) {
|
if (isPrinting() || isPaused()) {
|
||||||
SERIAL_ECHOPGM(STR_SD_PRINTING_BYTE, sdpos);
|
SERIAL_ECHOPGM(STR_SD_PRINTING_BYTE, sdpos);
|
||||||
SERIAL_CHAR('/');
|
SERIAL_CHAR('/');
|
||||||
SERIAL_ECHOLN(filesize);
|
SERIAL_ECHOLN(filesize);
|
||||||
|
|
Loading…
Reference in a new issue