-
Notifications
You must be signed in to change notification settings - Fork 147
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MMU issue: Unload sequence failed: Error running _MMU_CUT_TIP #610
Comments
Try homing first rather than relying on the automatic home -- I bet it will work. wonder if, when the macro "corrects what klipper reports" it is getting confused. I'll add to the list of bugs to look at. |
I try home first and then unload, but is it the same error
V ned., 26. jan. 2025, 10:28 je oseba moggieuk ***@***.***>
napisala:
… Try homing first rather than relying on the automatic home -- I bet it
will work.
wonder if, when the macro "corrects what klipper reports" it is getting
confused. I'll add to the list of bugs to look at.
—
Reply to this email directly, view it on GitHub
<#610 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/APFEK4KCSJDFFEHS2JPH4SD2MSTCVAVCNFSM6AAAAABV3UY37GVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDMMJUGI4TIMBVGA>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
I too am seeing this warning as well, I wasn't quite sure why it was doing this. |
I can't reproduce, so you will have to debug a little for me... ###########################################################################
# Helper macro for tip cutting
#
[gcode_macro _FILAMETRIX_MOVE_TO_CUTTER_PIN]
description: Helper to move the toolhead to the target pin in either safe or faster way, depending on toolhead clearance
gcode:
{% set pin_park_x_loc = params.PIN_PARK_X_LOC|float %}
{% set pin_park_y_loc = params.PIN_PARK_Y_LOC|float %}
{% set vars = printer['gcode_macro _MMU_CUT_TIP_VARS'] %}
{% set safe_margin_x, safe_margin_y = vars.safe_margin_xy|map('float') %}
{% set travel_speed = vars['travel_speed']|float %}
M118 _FILAMETRIX_MOVE_TO_CUTTER_PIN: X{pin_park_x_loc} Y{pin_park_y_loc} safe_margin_x={safe_margin_x}, safe_margin_x={safe_margin_y}
{% if ((printer.gcode_move.gcode_position.x - pin_park_x_loc)|abs < safe_margin_x) or ((printer.gcode_move.gcode_position.y - pin_park_y_loc)|abs < safe_margin_y) %}
# Make a safe but slower travel move
M118 G1 X{pin_park_x_loc} F{travel_speed * 60}
M118 G1 Y{pin_park_y_loc} F{travel_speed * 60}
G1 X{pin_park_x_loc} F{travel_speed * 60}
G1 Y{pin_park_y_loc} F{travel_speed * 60}
{% else %}
M118 G1 X{pin_park_x_loc} Y{pin_park_y_loc} F{travel_speed * 60}
G1 X{pin_park_x_loc} Y{pin_park_y_loc} F{travel_speed * 60}
{% endif %} Re-run and share the logs with me. |
Hi, this is my configs and logs |
This mmu cut tip.cfg I need to find in RPI maps and there I can change this debug version, yes? |
I have this in now, will let you know how this goes. I have my happy hare and ercf tuned, this used to happen a bunch when I was testing testing the cut using the test macro from a cold start. i.e. make some changes, restart klipper and then run |
Hi. I made this operation with debug configuration. |
I'm sorry I wasn't clear. The M118 will write to the console log. Can you send that when you experience the error... I've looked again at the logs you supplied and everything looks fine, so I need the console output with debugging to go the next step.. |
I have Voron 2.4 350mm, ERCF V2 and filamentrix cutter. My issue appears, when printer trys to cut filament with mmu_cut_tip macro.
17:52:17 Forming tip...
17:52:17 Automatically homing XY
17:52:22 Warning: Klipper reported out of range gcode position (x:350.03251015625, y:352.00309609375)! Adjusted to (x:350.0, y:352.0) to prevent move failure
17:52:22 Retracting filament 29.0mm prior to cut
17:52:22 DEBUG: Restoring pressure advance: 0.030000
17:52:27 Unsynced MMU from extruder
17:52:27 MMU issue: Unload sequence failed: Error running _MMU_CUT_TIP: Move out of range: -305.000 352.000 5.000 [-29.000].
Occured when unloading tool
I found out that if I put zero in this settings (mmu_macro_vars.cfg):
-variable_pin_loc_xy : 0, 352 ; x,y coordinates of depressor pin
-variable_pin_park_dist : 0 ; Distance in mm
there is no error from above, but printer head obviously cut filament to ˝early˝. If I replace form_tip_macro: _MMU_CUT_TIP from mmu_parameters.cfg file, with _MMU_FORM_TIP, there is also no error.
How I run in this error? In the evening, I was printing model with 3 colors. When it was over I shutdown printer as usually. Next day I turn on printer and start printing new model with 2 colors. When the printer wanted to change color, there was this error. I didn't change any settings. Problem is still there also if I try to unload manual.
I do not know, if this is bug or problem with my configuration.
P.S. sorry for bad english
The text was updated successfully, but these errors were encountered: