0
0
Fork 0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2025-01-19 08:08:25 +00:00

🚸 On pause report "SD printing byte X/Y" (#24709)

This commit is contained in:
Arkadiusz Miśkiewicz 2022-09-06 08:48:42 +02:00 committed by GitHub
parent 2b23bdce70
commit c9ef1277f3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -789,7 +789,7 @@ void CardReader::removeFile(const char * const name) {
}
void CardReader::report_status() {
if (isPrinting()) {
if (isPrinting() || isPaused()) {
SERIAL_ECHOPGM(STR_SD_PRINTING_BYTE, sdpos);
SERIAL_CHAR('/');
SERIAL_ECHOLN(filesize);