mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2024-11-27 13:56:24 +00:00
Fix CardReader::getStatus when not printing
This commit is contained in:
parent
4dc4d348d4
commit
c294613b53
@ -533,7 +533,7 @@ void CardReader::removeFile(const char * const name) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void CardReader::getStatus() {
|
void CardReader::getStatus() {
|
||||||
if (cardOK) {
|
if (cardOK && sdprinting) {
|
||||||
SERIAL_PROTOCOLPGM(MSG_SD_PRINTING_BYTE);
|
SERIAL_PROTOCOLPGM(MSG_SD_PRINTING_BYTE);
|
||||||
SERIAL_PROTOCOL(sdpos);
|
SERIAL_PROTOCOL(sdpos);
|
||||||
SERIAL_PROTOCOLCHAR('/');
|
SERIAL_PROTOCOLCHAR('/');
|
||||||
|
Loading…
Reference in New Issue
Block a user