Increased manual feedrate for Z movement (T1822)

master
Marcio Teixeira 6 years ago
parent f473aa202f
commit 5520f902a7

@ -13,7 +13,7 @@
* got disabled. * got disabled.
*/ */
#define LULZBOT_FW_VERSION ".14" // Change this with each update #define LULZBOT_FW_VERSION ".15" // Change this with each update
#if ( \ #if ( \
!defined(LULZBOT_Gladiola_Mini) && \ !defined(LULZBOT_Gladiola_Mini) && \
@ -1656,6 +1656,12 @@
#define LULZBOT_Z_MICROSTEPS 16 #define LULZBOT_Z_MICROSTEPS 16
#endif #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) #if defined(LULZBOT_USE_EINSYRAMBO)
// Neither define LULZBOT_PWM_MOTOR_CURRENT nor LULZBOT_DIGIPOT_MOTOR_CURRENT, // 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 // as the current is set in Configuration_adv.h under the HAVE_TMC2130 block

@ -396,7 +396,7 @@
// @section lcd // @section lcd
#if ENABLED(ULTIPANEL) #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 #define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
#endif #endif

Loading…
Cancel
Save