-
-
Notifications
You must be signed in to change notification settings - Fork 19.3k
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
[BUG] IDEX homing crashes into endstop #20237
Comments
Hi @InsanityAutomation |
HI @InsanityAutomation |
HI @InsanityAutomation |
HI @InsanityAutomation Thanks :) |
This issue has had no activity in the last 30 days. Please add a reply if you want to keep this issue active, otherwise it will be automatically closed within 7 days. |
@DrumClock Is this still a problem? I just found this issue and saw it really wasn't getting the attention it deserves. Can you give me the current status? Thanks! |
I will say this: You do a very good job of describing the issue and doing diagrams to help understand the issue! I am very interested in IDEX issues and keeping things running. I'm out of town for 6 more weeks and when I do get back to my machines I do not have as sophisticated of an IDEX setup as you do. With that said... I'll help you work through these issues. The IDEX code isn't that complicated. But there ends up being a lot of corner cases. @InsanityAutomation Can you take a quick look at #17941 and #19178 and see if there is anything simple that can be done to lessen @DrumClock 's pain? And maybe suggest a strategy or direction for us to head towards resolution? |
Hi @Roxy-3D I am testing IDEX on this test 3D frame of mine .... https://youtu.be/WkDNu3AFBKM |
That is a cool setup! Now you need a heat bed and some hot ends so you can really print something with it. |
@Roxy-3D |
On #17941 I know whats needed but havnt had time to sit down and do it. Its on my roadmap but I need to focus on what people sponsoring my work ask for first. #19178 appears to be the same mesh boundary issue discussed over time on UBL, and I havnt gone through the configs to see if they have expanded the mesh over the full motion range as I do to avoid it. |
This issue has had no activity in the last 60 days. Please add a reply if you want to keep this issue active, otherwise it will be automatically closed within 10 days. |
@InsanityAutomation |
@InsanityAutomation |
anyone working on the endstop crashing yet? |
Take a look at this open issue, it's the same #22538 |
Closing in favor of #22538 |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
@InsanityAutomation
ATTENTION!
if DUPLICATE or MIRRORED mode is selected and code
G28
is received.Carriage X2 is parked, "Auto Home" is performed, and then carriage X2
strikes Endstop Xmax until the printer stops with the message
MSG_KILL_HOMING_FAILED
if the AUTO-PARK mode is selected from the LCD or the
M605 S1
command,after executing
G28X
, the printer will restartDANGEROUS MOVEMENT !
In AUTO-PARK mode:
There is a carriage movement X2 between
X2_MIN
and Endstop XmaxCode correction:
Restrict X2 movement in the range
X2_MIN
toX2_MAX
In DUPLICATE mode:
The X movement is in the range
X1_MIN
toX1_MAX
which causes a carriage X2 collision with the Endstop Xmax.
Code correction:
restrict movement between
X=0
and half the value ofX_BED_SIZE
In MIRRORED mode:
The X movement is in the range
X1_MIN
toX1_MAX
which causes carriage X2 to collide with X1.
Code correction:
restrict movement in the
X=0
range and add anX_MAX_MIRRORED_POS
setting that prevents both carriages from collapsing.
The text was updated successfully, but these errors were encountered: