From a94506ada0d6808b11b6e5dab1a34556c7feaef0 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Thu, 24 May 2018 08:21:16 -0500 Subject: [PATCH] Fix K8400 Y min pos, M118 comment --- Marlin/src/config/examples/Velleman/K8400/Configuration.h | 2 +- Marlin/src/gcode/host/M118.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Marlin/src/config/examples/Velleman/K8400/Configuration.h b/Marlin/src/config/examples/Velleman/K8400/Configuration.h index 11f745d97a..4dc22d6434 100644 --- a/Marlin/src/config/examples/Velleman/K8400/Configuration.h +++ b/Marlin/src/config/examples/Velleman/K8400/Configuration.h @@ -873,7 +873,7 @@ // Travel limits (mm) after homing, corresponding to endstop positions. #define X_MIN_POS 0 -#define Y_MIN_POS 20 +#define Y_MIN_POS 0 #define Z_MIN_POS 0 #define X_MAX_POS X_BED_SIZE #define Y_MAX_POS Y_BED_SIZE diff --git a/Marlin/src/gcode/host/M118.cpp b/Marlin/src/gcode/host/M118.cpp index 674ad6b802..1bd132a3a6 100644 --- a/Marlin/src/gcode/host/M118.cpp +++ b/Marlin/src/gcode/host/M118.cpp @@ -25,7 +25,7 @@ /** * M118: Display a message in the host console. * - * A1 Append '// ' for an action command, as in OctoPrint + * A1 Prepend '// ' for an action command, as in OctoPrint * E1 Have the host 'echo:' the text */ void GcodeSuite::M118() {