Basic Information:
Printer Model: Mendel90
MCU / Printerboard: BTT Manta 8P c/w CB1
klippy.log (727.5 KB)
klippy.log
When I pause a print the x-axis homes but the y axis slams the hard stops at maximum. I found this in the log file:
[gcode_macro _TOOLHEAD_PARK_PAUSE_CANCEL]
description = Helper: park toolhead used in PAUSE and CANCEL_PRINT
variable_retract_extrude = 10.0
variable_extrude_extrude = 11.0
gcode =
{% set x_park = printer.toolhead.axis_minimum.x|float + 5.0 %}
{% set y_park = printer.toolhead.axis_maximum.y|float - 5.0 %}
{% set z_park_delta = 2.0 %}
Is the answer simply to edit the gcodes file changing ““set y_park = printer.toolhead.axis_maximum.y|flo…”” to “minimum…” ?
As it is I lose the print after a pause because the y axis is lost.
Thanx in advance !