-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Wipe movement at the end of each layer ignored #13941
Comments
I don't know how much you know about G-Code so: The lines beginning with a semi-colon (;) are just comments and are ignored by the printer. So as far as the printer is concerned that code snippet actually looks like this:
The code performing the wipe is this bit:
So this is the bit you need to debug. To move and print use G1 to move the nozzle tip top: Xnn.nnn Ynn.nnn tells it where to move to, and Enn.nnnn tell it how much filament to extrude as it goes. Now the previous code block ended by moving the nozzle tip to X=101.551 and Y=133.02. So now you need to go through your gcode and search for each wipe and see what it is doing and whether it is right or not. You can find the start of each layer by searching for G1 Znn.nnn which moves the nozzle up by nn.nnn units. Just above this will be the wipe code for the end of the last layer. Hope this helps a bit at least... |
I know that, but PrusaSlicer Gcode viewer don't display wipe movement either. It just jumps to to next layer. You can check that by yourself. Again, I don't know whether this expected behavior or not. |
Description of the bug
My printer (hugely modernized ) has now Bowden extruder and I have to enable wipe. So wipe is working well, except last wipe in each layer. Firstly, I observed this on my machine because of strings at layer change. Later, when debugging GCODE it seems that printer just skipped part containing wipe movement. It is part from provided gcode:
My guess that
;LAYER_CHANGE
triggers layer change routines.Is this expected behavior?
Project file & How to reproduce
Gcode.zip
Project.zip
Checklist of files included above
Version of PrusaSlicer
Версия 2.9.0
Operating system
Bluefin (Fedora Silverblue 41)
Printer model
FlyingBear P902 + Mainsail
The text was updated successfully, but these errors were encountered: