Commit 44649c64 authored by Guillaume Seguin's avatar Guillaume Seguin

Don't poll for SD printing status when paused

parent 9e811f8b
...@@ -835,7 +835,7 @@ class pronsole(cmd.Cmd): ...@@ -835,7 +835,7 @@ class pronsole(cmd.Cmd):
self.disconnect() self.disconnect()
return return
if do_monitoring: if do_monitoring:
if self.sdprinting: if self.sdprinting and not self.paused:
self.p.send_now("M27") self.p.send_now("M27")
if self.m105_waitcycles % 10 == 0: if self.m105_waitcycles % 10 == 0:
self.p.send_now("M105") self.p.send_now("M105")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment