Frix-x / klippain

Generic Klipper configuration for 3D printers
GNU General Public License v3.0
849 stars 221 forks source link

_TILT_CALIBRATE macro doesn't work as it should. #315

Closed AMFkuna closed 11 months ago

AMFkuna commented 11 months ago

Klippain branch

Version

v4.1.1

Describe the bug and expected behavior

In this macro, the conditions for detecting the tilting state are incorrectly defined. When QGL is done, it starts again on the next print.

original - not working correctly {% if printer.quad_gantry_level.applied|lower == 'false' or FORCE_OPERATION %} {% if printer.z_tilt.applied|lower == 'false' or FORCE_OPERATION %}

should be - working {% if printer.quad_gantry_level.applied|lower == 'false' or FORCE_OPERATION|lower == 'true' %} {% if printer.z_tilt.applied|lower == 'false' or FORCE_OPERATION|lower == 'true' %}

Additional information and klippy.log

No response

Frix-x commented 11 months ago

This is a duplicate of issue #214 And I definitely need to implement the fix. I'll do it for the next version, thanks for the reminder ^^