- 2025-06-08 started print layer shift at 8 hours
[printer]
kinematics: cartesian
max_velocity: 100
max_accel: 3000
max_z_velocity: 5
max_z_accel: 100
[stepper_y]
step_pin: PB7?
dir_pin: PB8?
enable_pin: !PC3?
microsteps: 16
rotation_distance:8
- rotation distance was 40
endstop_pin: ^PA6?
position_endstop: 0
position_max: 600
homing_speed: 20
IS M201 or M204 valid in klipper? https://reprap.org/wiki/G-code#M201:_Firmware_dependent ?
https://www.klipper3d.org/Config_Reference.html
https://www.youtube.com/watch?v=RgTvi0QqXho
"max_velocity:
- Maximum velocity (in mm/s) of the toolhead (relative to the
- print). This value may be changed at runtime using the
- SET_VELOCITY_LIMIT command. This parameter must be specified.
max_accel:
- Maximum acceleration (in mm/s^2) of the toolhead (relative to the
- print). Although this parameter is described as a "maximum"
- acceleration, in practice most moves that accelerate or decelerate
- will do so at the rate specified here. The value specified here
- may be changed at runtime using the SET_VELOCITY_LIMIT command.
- This parameter must be specified.
- minimum_cruise_ratio: 0.5
- Most moves will accelerate to a cruising speed, travel at that
- cruising speed, and then decelerate. However, some moves that
- travel a short distance could nominally accelerate and then
- immediately decelerate. This option reduces the top speed of these
- moves to ensure there is always a minimum distance traveled at a
- cruising speed. That is, it enforces a minimum distance traveled
- at cruising speed relative to the total distance traveled. It is
- intended to reduce the top speed of short zigzag moves (and thus
- reduce printer vibration from these moves). For example, a
- minimum_cruise_ratio of 0.5 would ensure that a standalone 1.5mm
- move would have a minimum cruising distance of 0.75mm. Specify a
- ratio of 0.0 to disable this feature (there would be no minimum
- cruising distance enforced between acceleration and deceleration).
- The value specified here may be changed at runtime using the
- SET_VELOCITY_LIMIT command. The default is 0.5.
- square_corner_velocity: 5.0
- The maximum velocity (in mm/s) that the toolhead may travel a 90
- degree corner at. A non-zero value can reduce changes in extruder
- flow rates by enabling instantaneous velocity changes of the
- toolhead during cornering. This value configures the internal
- centripetal velocity cornering algorithm; corners with angles
- larger than 90 degrees will have a higher cornering velocity while
- corners with angles less than 90 degrees will have a lower
- cornering velocity. If this is set to zero then the toolhead will
- decelerate to zero at each corner. The value specified here may be
- changed at runtime using the SET_VELOCITY_LIMIT command. The
- default is 5mm/s.
- max_accel_to_decel:
- This parameter is deprecated and should no longer be used."
"rotation_distance:
- Distance (in mm) that the axis travels with one full rotation of
- the stepper motor (or final gear if gear_ratio is specified).
- This parameter must be provided.
microsteps:
- The number of microsteps the stepper motor driver uses. This
- parameter must be provided.
- full_steps_per_rotation: 200
- The number of full steps for one rotation of the stepper motor.
- Set this to 200 for a 1.8 degree stepper motor or set to 400 for a
- 0.9 degree motor. The default is 200.
- gear_ratio:
- The gear ratio if the stepper motor is connected to the axis via a
- gearbox. For example, one may specify "5:1" if a 5 to 1 gearbox is
- in use. If the axis has multiple gearboxes one may specify a comma
- separated list of gear ratios (for example, "57:11, 2:1"). If a
- gear_ratio is specified then rotation_distance specifies the
- distance the axis travels for one full rotation of the final gear.
- The default is to not use a gear ratio.
"
2025-06-9 The printer.cfg max acceleration is 3000mm/s**2
I changed the max accelleration in the gcode with M204 S100 right before the skirt. this was inserted using the Prusa Slicer. While Marlin allows separate acceleration values for X,Y,Z and E Klipper is more limited.