Need help. #error "Z_SAFE_HOMING_X_POINT can't be reached by the Z probe." May 24, 2018 12:42PM |
Registered: 8 years ago Posts: 13 |
Re: Need help. #error "Z_SAFE_HOMING_X_POINT can't be reached by the Z probe." May 24, 2018 01:44PM |
Registered: 7 years ago Posts: 1,883 |
Re: Need help. #error "Z_SAFE_HOMING_X_POINT can't be reached by the Z probe." May 24, 2018 03:41PM |
Registered: 8 years ago Posts: 13 |
Re: Need help. #error "Z_SAFE_HOMING_X_POINT can't be reached by the Z probe." May 24, 2018 04:26PM |
Registered: 7 years ago Posts: 1,883 |
Re: Need help. #error "Z_SAFE_HOMING_X_POINT can't be reached by the Z probe." May 25, 2018 06:03AM |
Registered: 8 years ago Posts: 759 |
Re: Need help. #error "Z_SAFE_HOMING_X_POINT can't be reached by the Z probe." May 25, 2018 09:40AM |
Admin Registered: 13 years ago Posts: 7,118 |
#define X_MAX_POS X_BED_SIZE+27 #define Y_MAX_POS Y_BED_SIZE+24
#define X_PROBE_OFFSET_FROM_EXTRUDER 16 // X offset: -left +right [of the nozzle] #define Y_PROBE_OFFSET_FROM_EXTRUDER 0 // Y offset: -front +behind [the nozzle] #define Z_PROBE_OFFSET_FROM_EXTRUDER 2 // Z offset: -below +above [the nozzle]
#define X_BED_SIZE 275 #define Y_BED_SIZE 275
// Set the boundaries for probing (where the probe can reach). #define LEFT_PROBE_BED_POSITION -26 #define RIGHT_PROBE_BED_POSITION 272
Re: Need help. #error "Z_SAFE_HOMING_X_POINT can't be reached by the Z probe." May 25, 2018 10:41AM |
Admin Registered: 13 years ago Posts: 7,118 |
#if ENABLED(Z_SAFE_HOMING) #if !WITHIN(Z_SAFE_HOMING_X_POINT, MIN_PROBE_X, MAX_PROBE_X) #if HAS_BED_PROBE #error "Z_SAFE_HOMING_X_POINT can't be reached by the Z probe." #define _MIN_PROBE_X (max(X_MIN_BED, X_MIN_POS+ X_PROBE_OFFSET_FROM_EXTRUDER)) #define X_MIN_BED (X_CENTER - (X_BED_SIZE) / 2) #define X_CENTER ((X_BED_SIZE) / 2) (ie 275/2) #define X_MIN_POS -27 Z_SAFE_HOMING_X_POINT = -11 X_PROBE_OFFSET_FROM_EXTRUDER 16 #define _MAX_PROBE_X (min(X_MAX_BED, X_MAX_POS + X_PROBE_OFFSET_FROM_EXTRUDER)) #define X_MAX_BED (X_CENTER + (X_BED_SIZE) / 2)
#else // Boundaries for Cartesian probing based on bed limits #define _MIN_PROBE_X (max(X_MIN_BED, X_MIN_POS + X_PROBE_OFFSET_FROM_EXTRUDER)) #define _MIN_PROBE_Y (max(Y_MIN_BED, Y_MIN_POS + Y_PROBE_OFFSET_FROM_EXTRUDER)) #define _MAX_PROBE_X (min(X_MAX_BED, X_MAX_POS + X_PROBE_OFFSET_FROM_EXTRUDER)) #define _MAX_PROBE_Y (min(Y_MAX_BED, Y_MAX_POS + Y_PROBE_OFFSET_FROM_EXTRUDER)) #endif
Re: Need help. #error "Z_SAFE_HOMING_X_POINT can't be reached by the Z probe." May 25, 2018 10:53AM |
Registered: 8 years ago Posts: 13 |
Re: Need help. #error "Z_SAFE_HOMING_X_POINT can't be reached by the Z probe." May 25, 2018 11:33AM |
Admin Registered: 13 years ago Posts: 7,118 |
Re: Need help. #error "Z_SAFE_HOMING_X_POINT can't be reached by the Z probe." May 26, 2018 01:31PM |
Registered: 8 years ago Posts: 13 |
Re: Need help. #error "Z_SAFE_HOMING_X_POINT can't be reached by the Z probe." May 29, 2018 06:20AM |
Admin Registered: 13 years ago Posts: 7,118 |
When I set the extruder cooling fan pin, in rambo fan0 is 8, #define E0_AUTO_FAN_PIN 8, I get this #error "You cannot set E0_AUTO_FAN_PIN equal to FAN_PIN."
Re: Need help. #error "Z_SAFE_HOMING_X_POINT can't be reached by the Z probe." May 29, 2018 07:03AM |
Admin Registered: 13 years ago Posts: 7,118 |
Re: Need help. #error "Z_SAFE_HOMING_X_POINT can't be reached by the Z probe." May 29, 2018 12:05PM |
Registered: 8 years ago Posts: 13 |