From 1fa264a9d89029e6a5bca4a5ab031f317b02697d Mon Sep 17 00:00:00 2001 From: InsanityAutomation Date: Sat, 26 Oct 2019 16:08:46 -0400 Subject: [PATCH] SX2 Tweaks --- Marlin/Configuration.h | 9 +++++++-- Marlin/Configuration_adv.h | 2 +- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/Marlin/Configuration.h b/Marlin/Configuration.h index 1d86709d9f..bb0b45eccd 100644 --- a/Marlin/Configuration.h +++ b/Marlin/Configuration.h @@ -163,7 +163,12 @@ #endif // Name displayed in the LCD "Ready" message and Info menu -#define CUSTOM_MACHINE_NAME "TM3D SX4" +#if ENABLED(SX2) + #define CUSTOM_MACHINE_NAME "TM3D SX2" + #else + #define CUSTOM_MACHINE_NAME "TM3D SX4" +#endif + // Printer's unique ID, used by some programs to differentiate between machines. // Choose your own or use a service like http://www.uuidgenerator.net/version4 @@ -1162,7 +1167,7 @@ // The size of the print bed #if ENABLED(SX2) #define X_BED_SIZE 248 - #define Y_BED_SIZE 230 + #define Y_BED_SIZE 238 #else #define X_BED_SIZE 398 #define Y_BED_SIZE 390 diff --git a/Marlin/Configuration_adv.h b/Marlin/Configuration_adv.h index 543f204200..a9c3f2746e 100644 --- a/Marlin/Configuration_adv.h +++ b/Marlin/Configuration_adv.h @@ -608,7 +608,7 @@ #if ENABLED(Z_STEPPER_AUTO_ALIGN) // Define probe X and Y positions for Z1, Z2 [, Z3] #if ENABLED(SX2) - #define Z_STEPPER_ALIGN_XY { { 50, 100 }, { 225, 100 } } + #define Z_STEPPER_ALIGN_XY { { 42, 100 }, { 225, 100 } } #else #define Z_STEPPER_ALIGN_XY { { 50, 200 }, { 350, 200 } } #endif