…printer working fine and just now came up with Internal error on command:“QUAD_GANTRY_LEVEL”
all axis home bed mesh works just fails instantly when try quad bed level.
No it is not related to this case. In this case, the error was purely caused by Klipper code.
In your case, the error is:
Internal error on command:"QUAD_GANTRY_LEVEL"
Traceback (most recent call last):
File "/home/biqu/klipper/klippy/gcode.py", line 211, in _process_commands
handler(gcmd)
File "/home/biqu/klipper/klippy/gcode.py", line 137, in <lambda>
func = lambda params: origfunc(self._get_extended_params(params))
File "/home/biqu/klipper/klippy/extras/quad_gantry_level.py", line 53, in cmd_QUAD_GANTRY_LEVEL
self.probe_helper.start_probe(gcmd)
File "/home/biqu/klipper/klippy/extras/probe.py", line 449, in start_probe
self.lift_speed = probe.get_probe_params(gcmd)['lift_speed']
AttributeError: 'CartographerProbeWrapper' object has no attribute 'get_probe_params'
Transition to shutdown state: Internal error on command:"QUAD_GANTRY_LEVEL"
The key is AttributeError: 'CartographerProbeWrapper' object has no attribute 'get_probe_params', which clearly points to the Cartographer code. If anything, you should adress your issue there.
Thank you for the response, however it was working great before the last klipper update, would you be able to point out the changes to klipper which made it in conflict with the probe?