From 1002eb67c83aa0fe4b27fcd36e8471a69ed138d6 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Sun, 6 Mar 2016 15:46:39 -0800 Subject: [PATCH] Update name of st_get_axis_position_mm in stepper.h --- Marlin/stepper.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Marlin/stepper.h b/Marlin/stepper.h index 46211948e5..8eb7016626 100644 --- a/Marlin/stepper.h +++ b/Marlin/stepper.h @@ -66,8 +66,8 @@ void st_set_e_position(const long& e); // Get current position in steps long st_get_position(uint8_t axis); -// Get current position in mm -float st_get_position_mm(AxisEnum axis); +// Get current axis position in mm +float st_get_axis_position_mm(AxisEnum axis); // The stepper subsystem goes to sleep when it runs out of things to execute. Call this // to notify the subsystem that it is time to go to work.