aboutsummaryrefslogtreecommitdiffstats
path: root/docs/G-Codes.md
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2021-04-25 15:02:42 -0400
committerKevin O'Connor <kevin@koconnor.net>2021-04-30 11:26:19 -0400
commit8f76e53c0eef351576be7fa2acbb964af031d7b3 (patch)
treea2e5ca68c7846aa1de993c3ebd445cef36f3844a /docs/G-Codes.md
parentb1ea4f3befe202e681115fe4e6b4a5986a581e17 (diff)
downloadkutter-8f76e53c0eef351576be7fa2acbb964af031d7b3.tar.gz
kutter-8f76e53c0eef351576be7fa2acbb964af031d7b3.tar.xz
kutter-8f76e53c0eef351576be7fa2acbb964af031d7b3.zip
stepper: Remove min_stop_interval from mcu code
Now that the host never uses a min_stop_interval, remove it from the mcu code. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'docs/G-Codes.md')
-rw-r--r--docs/G-Codes.md16
1 files changed, 7 insertions, 9 deletions
diff --git a/docs/G-Codes.md b/docs/G-Codes.md
index b8b96636..2f012bf5 100644
--- a/docs/G-Codes.md
+++ b/docs/G-Codes.md
@@ -517,15 +517,13 @@ enabled:
the given distance (in mm) at the given constant velocity (in
mm/s). If ACCEL is specified and is greater than zero, then the
given acceleration (in mm/s^2) will be used; otherwise no
- acceleration is performed. If acceleration is not performed then it
- can lead to the micro-controller reporting "No next step" errors
- (avoid these errors by specifying an ACCEL value or use a very low
- VELOCITY). No boundary checks are performed; no kinematic updates
- are made; other parallel steppers on an axis will not be moved. Use
- caution as an incorrect command could cause damage! Using this
- command will almost certainly place the low-level kinematics in an
- incorrect state; issue a G28 afterwards to reset the kinematics.
- This command is intended for low-level diagnostics and debugging.
+ acceleration is performed. No boundary checks are performed; no
+ kinematic updates are made; other parallel steppers on an axis will
+ not be moved. Use caution as an incorrect command could cause
+ damage! Using this command will almost certainly place the low-level
+ kinematics in an incorrect state; issue a G28 afterwards to reset
+ the kinematics. This command is intended for low-level diagnostics
+ and debugging.
- `SET_KINEMATIC_POSITION [X=<value>] [Y=<value>] [Z=<value>]`: Force
the low-level kinematic code to believe the toolhead is at the given
cartesian position. This is a diagnostic and debugging command; use