|
Melzi 2.0 Z-Axis steppers not working (Marlin 2.0.x) February 01, 2021 02:39PM |
Registered: 5 years ago Posts: 7 |
// These are all excerpts from various parts of Configuration.h
#define DEFAULT_AXIS_STEPS_PER_UNIT { 80, 80, 400, 500 }
#define DEFAULT_MAX_FEEDRATE { 300, 300, 4, 25 }
#define DEFAULT_MAX_ACCELERATION { 3000, 3000, 100, 10000 }
#define DEFAULT_ACCELERATION 2800 // X, Y, Z and E acceleration for printing moves
#define DEFAULT_RETRACT_ACCELERATION 2800 // E acceleration for retracts
#define DEFAULT_TRAVEL_ACCELERATION 2800 // X, Y, Z acceleration for travel (non printing) moves
//#define CLASSIC_JERK //left at default
// :{ 0:'Low', 1:'High' }
#define X_ENABLE_ON 0
#define Y_ENABLE_ON 0
#define Z_ENABLE_ON 0
#define E_ENABLE_ON 0 // For all extruders
#define DISABLE_X false
#define DISABLE_Y false
#define DISABLE_Z false
#define INVERT_X_DIR false
#define INVERT_Y_DIR false
#define INVERT_Z_DIR false
#define X_HOME_DIR -1
#define Y_HOME_DIR -1
#define Z_HOME_DIR -1
#define X_MIN_POS 0
#define Y_MIN_POS 0
#define Z_MIN_POS 0
#define X_MAX_POS X_BED_SIZE
#define Y_MAX_POS Y_BED_SIZE
#define Z_MAX_POS 150
#define MIN_SOFTWARE_ENDSTOPS
#if ENABLED(MIN_SOFTWARE_ENDSTOPS)
#define MIN_SOFTWARE_ENDSTOP_X
#define MIN_SOFTWARE_ENDSTOP_Y
//#define MIN_SOFTWARE_ENDSTOP_Z //disabled until the driver works correctly
#endif
#define MAX_SOFTWARE_ENDSTOPS
#if ENABLED(MAX_SOFTWARE_ENDSTOPS)
#define MAX_SOFTWARE_ENDSTOP_X
#define MAX_SOFTWARE_ENDSTOP_Y
//#define MAX_SOFTWARE_ENDSTOP_Z
#endif
//#define Z_SAFE_HOMING
#if ENABLED(Z_SAFE_HOMING)
#define Z_SAFE_HOMING_X_POINT X_CENTER // X point for Z homing
#define Z_SAFE_HOMING_Y_POINT Y_CENTER // Y point for Z homing
#endif
// Homing speeds (mm/min)
#define HOMING_FEEDRATE_XY (50*50) //changed from 3000 to 2500
#define HOMING_FEEDRATE_Z (4*60)
// Validate that endstops are triggered on homing moves
#define VALIDATE_HOMING_ENDSTOPS
// Sorry if that was a bit much, I tried to include all the settings that could potentially have an effect on the Z motion.
|
Re: Melzi 2.0 Z-Axis steppers not working (Marlin 2.0.x) February 01, 2021 02:44PM |
Registered: 9 years ago Posts: 759 |
|
Re: Melzi 2.0 Z-Axis steppers not working (Marlin 2.0.x) February 04, 2021 06:58PM |
Registered: 5 years ago Posts: 7 |
|
Re: Melzi 2.0 Z-Axis steppers not working (Marlin 2.0.x) February 07, 2021 01:04AM |
Registered: 5 years ago Posts: 6 |
|
Re: Melzi 2.0 Z-Axis steppers not working (Marlin 2.0.x) February 07, 2021 06:33PM |
Registered: 5 years ago Posts: 7 |
|
Re: Melzi 2.0 Z-Axis steppers not working (Marlin 2.0.x) February 07, 2021 08:04PM |
Registered: 5 years ago Posts: 6 |
|
Re: Melzi 2.0 Z-Axis steppers not working (Marlin 2.0.x) February 07, 2021 09:03PM |
Registered: 5 years ago Posts: 7 |
|
Re: Melzi 2.0 Z-Axis steppers not working (Marlin 2.0.x) February 22, 2021 01:53PM |
Registered: 5 years ago Posts: 7 |