From 5520f902a7b83fc5d34949e0abb4d6b66270ebf1 Mon Sep 17 00:00:00 2001 From: Marcio Teixeira Date: Fri, 9 Mar 2018 12:54:53 -0700 Subject: [PATCH] Increased manual feedrate for Z movement (T1822) --- Marlin/Conditionals_LulzBot.h | 8 +++++++- Marlin/Configuration_adv.h | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Marlin/Conditionals_LulzBot.h b/Marlin/Conditionals_LulzBot.h index 9a42a3b4b..4c9ee38cc 100644 --- a/Marlin/Conditionals_LulzBot.h +++ b/Marlin/Conditionals_LulzBot.h @@ -13,7 +13,7 @@ * got disabled. */ -#define LULZBOT_FW_VERSION ".14" // Change this with each update +#define LULZBOT_FW_VERSION ".15" // Change this with each update #if ( \ !defined(LULZBOT_Gladiola_Mini) && \ @@ -1656,6 +1656,12 @@ #define LULZBOT_Z_MICROSTEPS 16 #endif +#if defined(LULZBOT_USE_Z_BELT) + #define LULZBOT_DEFAULT_MANUAL_FEEDRATE {50*60, 50*60, 40*60, 60} // (mm/min) +#else + #define LULZBOT_DEFAULT_MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // (mm/min) +#endif + #if defined(LULZBOT_USE_EINSYRAMBO) // Neither define LULZBOT_PWM_MOTOR_CURRENT nor LULZBOT_DIGIPOT_MOTOR_CURRENT, // as the current is set in Configuration_adv.h under the HAVE_TMC2130 block diff --git a/Marlin/Configuration_adv.h b/Marlin/Configuration_adv.h index be3220caf..15333b01b 100644 --- a/Marlin/Configuration_adv.h +++ b/Marlin/Configuration_adv.h @@ -396,7 +396,7 @@ // @section lcd #if ENABLED(ULTIPANEL) - #define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel + #define MANUAL_FEEDRATE LULZBOT_MANUAL_FEEDRATE // Feedrates for manual moves along X, Y, Z, E from panel #define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder #endif