Hello.
I want to configure Prusaslicer.
In SM2, what are the default values for the following parameters?
Acceleration x,y,z,e (mm/s2)
jerk x,y,z,e (mm/s)
Thank you .
Hello.
I want to configure Prusaslicer.
In SM2, what are the default values for the following parameters?
Acceleration x,y,z,e (mm/s2)
jerk x,y,z,e (mm/s)
Thank you .
You can reference, for example, Set Starting Acceleration | Marlin Firmware for acceleration.
Which is XYZE=1000mm/s/s
You can note the machine does not use jerk, instead junction deviation in M205, of 0.02mm.
You can check these against your own machine’s M503 to view the current parameters, and change them if necessary.
For example, I find increased print quality at an acceleration limit of 750mm/s/s.
Hi brent113.
Thanks for the advice.
The following is a GCODE created by Prusa.
Do I need to worry about the M205 code in particular?
M201 X1000 Y1000 Z500 E1000 ; sets maximum accelerations, mm/sec^2
M203 X100 Y100 Z20 E100 ; sets maximum feedrates, mm/sec
M204 P1500 R1500 T1500 ; sets acceleration (P, T) and retract acceleration (R), mm/sec^2
M205 X10.00 Y10.00 Z0.20 E2.50 ; sets the jerk limits, mm/sec
M205 S0 T0 ; sets the minimum extruding and travel feed rate, mm/sec
Is there a way to just turn that all off? It’s already defined in the firmware with pretty good values, there’s not really a reason to just change them for the sake of changing them
Hi brent113.
I found a function to turn off the restriction by GCODE.
Thanks for the advice.