From f6e23c872f553469a8488593cc33666b499119a7 Mon Sep 17 00:00:00 2001 From: Theo Gaillard Date: Tue, 1 Jul 2025 17:20:04 +0200 Subject: [PATCH] Removed accel_to_decel from the SET_VELOCITY_LIMIT in TEST_SPEED.cfg Removing the error message from klipper following changes 20240313 --- macros/TEST_SPEED.cfg | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/macros/TEST_SPEED.cfg b/macros/TEST_SPEED.cfg index a8c3179..3ae91e1 100644 --- a/macros/TEST_SPEED.cfg +++ b/macros/TEST_SPEED.cfg @@ -80,7 +80,7 @@ gcode: {% if printer.configfile.settings.printer.minimum_cruise_ratio is defined %} SET_VELOCITY_LIMIT VELOCITY={speed} ACCEL={accel} MINIMUM_CRUISE_RATIO={min_cruise_ratio} {% else %} - SET_VELOCITY_LIMIT VELOCITY={speed} ACCEL={accel} ACCEL_TO_DECEL={accel / 2} + SET_VELOCITY_LIMIT VELOCITY={speed} ACCEL={accel} {% endif %} {% for i in range(iterations) %} @@ -113,11 +113,11 @@ gcode: G0 X{x_center_max} Y{y_center_min} F{speed*60} {% endfor %} - # Restore max speed/accel/accel_to_decel to their configured values + # Restore max speed/accel to their configured values {% if printer.configfile.settings.printer.minimum_cruise_ratio is defined %} SET_VELOCITY_LIMIT VELOCITY={printer.configfile.settings.printer.max_velocity} ACCEL={printer.configfile.settings.printer.max_accel} MINIMUM_CRUISE_RATIO={printer.configfile.settings.printer.minimum_cruise_ratio} {% else %} - SET_VELOCITY_LIMIT VELOCITY={printer.configfile.settings.printer.max_velocity} ACCEL={printer.configfile.settings.printer.max_accel} ACCEL_TO_DECEL={printer.configfile.settings.printer.max_accel_to_decel} + SET_VELOCITY_LIMIT VELOCITY={printer.configfile.settings.printer.max_velocity} ACCEL={printer.configfile.settings.printer.max_accel} {% endif %} # Re-home and get position again for comparison: