aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/chelper/__init__.py
diff options
context:
space:
mode:
authorDmitry Butyugin <dmbutyugin@google.com>2024-07-11 20:43:21 +0200
committerGitHub <noreply@github.com>2024-07-11 14:43:21 -0400
commitc84d78f3f169bc5163d11b74837f9880b0b7dba4 (patch)
tree722fac53025245b77d8e9efaf9c6987dc7a41a96 /klippy/chelper/__init__.py
parent248d3dbf8bcda69a51e3a303862bbcc64a32119d (diff)
downloadkutter-c84d78f3f169bc5163d11b74837f9880b0b7dba4.tar.gz
kutter-c84d78f3f169bc5163d11b74837f9880b0b7dba4.tar.xz
kutter-c84d78f3f169bc5163d11b74837f9880b0b7dba4.zip
extruder: Allow dynamic adjustment of pressure advance (#6635)
Signed-off-by: Dmitry Butyugin <dmbutyugin@google.com>
Diffstat (limited to 'klippy/chelper/__init__.py')
-rw-r--r--klippy/chelper/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/klippy/chelper/__init__.py b/klippy/chelper/__init__.py
index e4199561..fa1261be 100644
--- a/klippy/chelper/__init__.py
+++ b/klippy/chelper/__init__.py
@@ -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 = """