Edit gcodes file

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 !

If the bed on the y-axis slams against some hardware, you may check position_max in [stepper_y] is properly set.

Don’t measure the size bed, measure the way the bed can move from zero to the end.

Thank you… It was indeed et wrong ! I am going to change the ‘PAUSE’ gcode as it would bring the print forward on the machine instead of the back.

The printer config file was a generic one, not specific to the Mendel90.

1 Like