From a61fcb09f0b01a57095e99056f4533a75c7c03e2 Mon Sep 17 00:00:00 2001 From: InsanityAutomation Date: Thu, 24 May 2018 14:25:04 -0400 Subject: [PATCH] Add config option for 700mm machine --- Marlin/Configuration.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Marlin/Configuration.h b/Marlin/Configuration.h index 9b8b18b4e0..2cf6793e84 100644 --- a/Marlin/Configuration.h +++ b/Marlin/Configuration.h @@ -24,6 +24,8 @@ //#define Y_2208 //#define BedAC + +//#define tallVersion /** * Configuration.h * @@ -849,8 +851,12 @@ #define Z_MIN_POS 0 #define X_MAX_POS 450 #define Y_MAX_POS Y_BED_SIZE -#define Z_MAX_POS 500 +#if(ENABLED(tallVersion)) + #define Z_MAX_POS 700 +#else + #define Z_MAX_POS 500 +#endif /** * Software Endstops *