gcode: Rename bg_temp() to wait_for_temperature()

Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
Kevin O'Connor 2019-12-16 19:21:37 -05:00
parent 665323eb29
commit 0e2d1a190e
2 changed files with 4 additions and 3 deletions

View file

@ -390,7 +390,8 @@ class GCodeParser:
if not out:
return "T:0"
return " ".join(out)
def bg_temp(self, heater):
def wait_for_temperature(self, heater):
# Helper to wait on heater.check_busy() and report M105 temperatures
if self.is_fileinput:
return
eventtime = self.reactor.monotonic()
@ -420,7 +421,7 @@ class GCodeParser:
print_time = self.toolhead.get_last_move_time()
heater.set_temp(print_time, temp)
if wait and temp:
self.bg_temp(heater)
self.wait_for_temperature(heater)
# G-Code special command handlers
def cmd_default(self, params):
if not self.is_printer_ready: