From 9682ed455e77e5131a03e30aa485d722040ce443 Mon Sep 17 00:00:00 2001
From: Scott Lahteine <sourcetree@thinkyhead.com>
Date: Sat, 27 Jun 2015 21:49:37 -0700
Subject: [PATCH] Fix comment on M83, add comment to prepare_move
---
Marlin/Marlin_main.cpp | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/Marlin/Marlin_main.cpp b/Marlin/Marlin_main.cpp
index 70fd2cf0a6..192d6ea8a8 100644
--- a/Marlin/Marlin_main.cpp
+++ b/Marlin/Marlin_main.cpp
@@ -3805,7 +3805,7 @@ inline void gcode_M81() {
inline void gcode_M82() { axis_relative_modes[E_AXIS] = false; }
/**
- * M82: Set E codes relative while in Absolute Coordinates (G90) mode
+ * M83: Set E codes relative while in Absolute Coordinates (G90) mode
*/
inline void gcode_M83() { axis_relative_modes[E_AXIS] = true; }
@@ -6153,6 +6153,9 @@ void mesh_plan_buffer_line(float x, float y, float z, const float e, float feed_
/**
* Prepare a single move and get ready for the next one
+ *
+ * (This may call plan_buffer_line several times to put
+ * smaller moves into the planner for DELTA or SCARA.)
*/
void prepare_move() {
clamp_to_software_endstops(destination);
--
GitLab