You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if self_counter-get_distance() returns '0' due to misfeed of filament in cartrige, this will cause an internal error in klipper and shutdown the printer.
There should be applied a check for zero value in final_position prior to line 411.
The text was updated successfully, but these errors were encountered:
Lines 409-411 in ercf.py include the below logic:
409 self._load_to_end_of_bowden(load_length-encoder_moved)
410 final_position = self._counter.get_distance()
411 ratio = load_length / final_position
if self_counter-get_distance() returns '0' due to misfeed of filament in cartrige, this will cause an internal error in klipper and shutdown the printer.
There should be applied a check for zero value in final_position prior to line 411.
The text was updated successfully, but these errors were encountered: