-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Acceleration, bad code generated #3292
Comments
It would be trivial to make the change you suggest but according to http://reprap.org/wiki/G-code#M204:_Set_default_acceleration, Marlin hasn't always supported the P and T values so I don't know if this can be done without causing a problem with backwards compatibility. |
Correct. It is not in Marlin 1.0. My GeeTech MeCreator 2 came with Marlin 1.0.2-2, so it would not be compatible with acceleration control the new way. So I will just do it in in preamble gcode. |
Hi, thanks for looking into that. Well, As I said the change is trivial. However, it's not me that makes this kind of decision, we need to involve someone like @Ghostkeeper or some other Ultimaker person. |
smartavionics I mistakenly looked for M205. M204 with P/T was not implemented before 1.1, so doing the change will break backward compatibility. |
OK, understood. Well, if this can't be done, could you please close the issue? Thanks. |
Closed. Would break backward compatibility. |
Running 3.2, and I have issues with the genrated gcode when using acceleration from within Cura.
I get code like this:
Since I am using Marlin, it is possible to set the values once per file, using specific values. See http://marlinfw.org/docs/gcode/M204.html
M204 P2000 T2400
Would set travel to 2400 and print to 2000mm/s^2
As it is, curves are printed very slowly (I am at 115kbps, as I have enabled Linear Advance in FW). With the current implementation, I will not use it. Then it is way better to put the values in header gcode or early on like setting initial layer temps.
The text was updated successfully, but these errors were encountered: