(self, cmd)
| 1505 | return cmd |
| 1506 | |
| 1507 | def _gcode_M109(self, cmd): |
| 1508 | self._heatingUp = True |
| 1509 | self._callback.mcHeatingUpUpdate(self._heatingUp) |
| 1510 | self._heatupWaitStartTime = time.time() |
| 1511 | return self._gcode_M104(cmd) |
| 1512 | |
| 1513 | def _gcode_M190(self, cmd): |
| 1514 | self._heatingUp = True |
nothing calls this directly
no test coverage detected