Printer randomly moves to home during printing, then resumes as normal
During printing, my printer occasionally makes some mystery moves: it will very slowly move either the X or Y axis all the way to the left/front, before very slowly moving back to its original position and resuming the print as normal. I've checked my G-code files, and the moves are definitely not part of the G-code. What could be causing this?
I'm printing from an SD card on a Cartesian printer.
The question is tagged marlin. I've edited the question to include where I'm printing from. I don't have a filament sensor.
Just had the same issue. I could print fine from the computer but load the same file to disk and get the random traveling to the 0 points on x and y at completely at random.
The issue was due to a corrupt SD-card, which was occasionally having some garbage read from it. It turns out that Marlin will try interpret a corrupt move command like
G0 X1q3.54
and still read as many numbers as it can. In this example, it would be interpreted asG0 X1
rather than (as might have been intended)G0 X103.54
.This explains my symptoms perfectly:
X and Y always moved to (approximately) their home positions, but it was always only one of them (it's quite unlikely that both moves are corrupted).
Z was not affected because Z moves are much rarer in the G-code (only on layer change) and thus it was very unlikely that a Z move would be affected.
E was not affected since a request to move E to near 0 would be prevented by Marlin's long extrusion prevention.
Eurgh! I don't like that Marlin does that. Interesting find, though. Would love to know how you figured that out.
What is corrupt in ``G0 X1y3.54``?
@Wirewrap My intention was that the "uncorrupted" G-code would have been something like `G0 X103.54` and I replaced the 0 by a random character. Unfortunately I picked a really confusing random character. Thank you for pointing that out.
License under CC-BY-SA with attribution
Content dated before 7/24/2021 11:53 AM
Lars Pötter 6 years ago
Which Firmware(Marlin,..)? Which printer(Cartesian, delta,..)? Extensions(Out of Filament sensor,..) ? Source of G-Codes (Printing from SD Card or from Serial interface)? Sounds like the printer is pausing the print. Causes might be no G-Codes (Slow serial connection) or some other signal(Out of filament sensor triggering)