Hi there, I have been using klipper for over a year now and hardly had any problems, at least nothing I could not solve. Now I ran into a wall and I get the same problem over and over.
I have a custom cube (mixture of Hypercube and ratrig) and I am using superslicer with the ratrig-profile.
Today my print stopped with an error messag after the it had drawn the circle around the printing area.
This is the message I got:
17:28:09 // pressure_advance: 0.050000
// pressure_advance_smooth_time: 0.040000
17:29:54 // Move exceeds maximum extrusion (3.613mm^2 vs 0.640mm^2)
// See the 'max_extrude_cross_section' config option for details
17:29:54 !! Move exceeds maximum extrusion (3.613mm^2 vs 0.640mm^2)
I restarted, re-scliced several times but it continued. It always happend when printing the actual object started. After doing some research I raised the max_extrude_cross_section to 10.
The print started again, this time also starting to print the object. Some way into the print I got this message:
17:37:50 // pressure_advance: 0.050000
// pressure_advance_smooth_time: 0.040000
17:52:35 // Move exceeds maximum extrusion (25.074mm^2 vs 10.000mm^2)
// See the 'max_extrude_cross_section' config option for details
17:52:35 !! Move exceeds maximum extrusion (25.074mm^2 vs 10.000mm^2)
As far as I understood, this is a safety feature and one should not raise the value. I could go up to 50 but if it is a sefty feature I do not want to. So here I am looking for a solution. I do not know where the error came from and why it suddently started. Here’s my extruder config:
[extruder]
step_pin: PG0
dir_pin: PG1
enable_pin: !PF15
microsteps: 16
full_steps_per_rotation: 200
max_extrude_only_velocity: 60
max_extrude_only_distance: 500
max_extrude_cross_section: 10 # default 0.640
rotation_distance: 4.714
nozzle_diameter: 0.400
filament_diameter: 1.750
heater_pin: PA2
sensor_type: NTC 100K MGB18-104F39050L32
sensor_pin: PF3
min_temp: 0
max_temp: 280
This is a changed version however, before the problems started I had 64 microsteps, I did not spefify steps per rotation and I did not specify velocity. That’s what I tried to do to solve the problem. I also looked for M83 in the start g-code.
SO where could the problem be?