-
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
Cannot set Z speed independently. #2945
Comments
I second that. I had a lot of trouble searching for a clue with Z skipping, after realizing that the gcode generated from Prusa Slicer called a F12000 on the Z axis... |
I second that too. I'm not sure if the limits set in the firmware of my machine can mitigate an excessive speed set by the gcode. |
I agree, it is really helpful to be able to set Z speed freely from XY one. |
I'm having the same problem with an Ender5. Is there any workaround other than writing a post-processing script or manually editing the gcode every time? |
Nope, so I insert my own custom gcode to handle this issue. Depending on which slicer you use determines how it is written but the end result is as such: M201 X1500 Y1500 Z25 E200 |
Hello, I have the same issue, missing steps when my z axis tries to follow the too fast feedrate. Thanks in advance! |
Doubtful since there has been no signs, or a proper response, to this plus it can be set by you in the header gcode as I laid out above. A bit sad but to be expected out of Josef. |
Thanks for your reply!
EDIT: |
Yes, this is what I said you need to set them in the user defined section of the gcode and make it send them each time. |
Hi, nothing news about that ? |
I've made a PR to address this issue, see #6369 |
Excellent. |
In the meantime, here are regular expressions you can use to edit the gcode: replace This will set the feed rate for the Z axis moves to 720. Or replace |
Implemented in master for 2.4.0 release (413bce4). |
Version is all of them because in S3D I can set Z axis movement speed but in Prusa Slicer Z is tied to travel moves so treats Z moves the same as X and Y. This dates back to Slic3r itself and was fine back then but Marlin 2.0 no longer caps the speed you set in the configuration.h. They are changing that thanks to we who begged them as they were opposed to it. Anyway for now people with Marlin 2.0 will slice with your slicer and have the travel moves at 130mm/s and Z will do some ugly nasty things as it did to me.
The text was updated successfully, but these errors were encountered: