extruder: Allow dynamic adjustment of pressure advance (#6635)

Signed-off-by: Dmitry Butyugin <dmbutyugin@google.com>
This commit is contained in:
Dmitry Butyugin 2024-07-11 20:43:21 +02:00 committed by GitHub
parent 248d3dbf8b
commit c84d78f3f1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 185 additions and 20 deletions

View file

@ -142,8 +142,9 @@ defs_kin_winch = """
defs_kin_extruder = """
struct stepper_kinematics *extruder_stepper_alloc(void);
void extruder_stepper_free(struct stepper_kinematics *sk);
void extruder_set_pressure_advance(struct stepper_kinematics *sk
, double pressure_advance, double smooth_time);
, double print_time, double pressure_advance, double smooth_time);
"""
defs_kin_shaper = """