diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2023-12-03 18:50:44 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2024-03-13 21:31:37 -0400 |
commit | 0105aa330f2a4865b01cbbc548cba1322be5371e (patch) | |
tree | aac2527aed98d2aa5dcef13d1b16ac6efda704ff /docs/G-Codes.md | |
parent | 18de421c4acbdb00946df35dfb412dedb159abca (diff) | |
download | kutter-0105aa330f2a4865b01cbbc548cba1322be5371e.tar.gz kutter-0105aa330f2a4865b01cbbc548cba1322be5371e.tar.xz kutter-0105aa330f2a4865b01cbbc548cba1322be5371e.zip |
toolhead: Replace max_accel_to_decel with minimum_cruise_ratio
The user facing max_accel_to_decel setting is complicated and
confusing. Replace it with a new minimum_cruise_ratio parameter.
Internally this user-facing parameter will calculate the existing
low-level "accel_to_decel" mechanism.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'docs/G-Codes.md')
-rw-r--r-- | docs/G-Codes.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/G-Codes.md b/docs/G-Codes.md index 199dc283..1f88937a 100644 --- a/docs/G-Codes.md +++ b/docs/G-Codes.md @@ -1291,7 +1291,7 @@ The toolhead module is automatically loaded. #### SET_VELOCITY_LIMIT `SET_VELOCITY_LIMIT [VELOCITY=<value>] [ACCEL=<value>] -[ACCEL_TO_DECEL=<value>] [SQUARE_CORNER_VELOCITY=<value>]`: This +[MINIMUM_CRUISE_RATIO=<value>] [SQUARE_CORNER_VELOCITY=<value>]`: This command can alter the velocity limits that were specified in the printer config file. See the [printer config section](Config_Reference.md#printer) for a |