After Updating my marlin to bugfix 2.0
My Cube no longer homes to the center of the bed.I had all the pertinent setting that I have tweaked for my machine saved so I only changed those settings.
I tried enabling #define BED_CENTER_AT_0_0 but that didn't work.
If i enable
#define Z_SAFE_HOMING
I get an error as follows
In file included from sketch\MarlinConfig.h:42:0,
from sketch\G26_Mesh_Validation_Tool.cpp:27:
SanityCheck.h:946: error: static assertion failed: LEFT_PROBE_BED_POSITION is outside the probe region.
static_assert(LEFT_PROBE_BED_POSITION >= MIN_PROBE_X, "LEFT_PROBE_BED_POSITION is outside the probe region.");
^
SanityCheck.h:947: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.
static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");
^
SanityCheck.h:949: error: static assertion failed: BACK_PROBE_BED_POSITION is outside the probe region.
static_assert(BACK_PROBE_BED_POSITION <= MAX_PROBE_Y, "BACK_PROBE_BED_POSITION is outside the probe region.");
^
SanityCheck.h:1011: error: static assertion failed: Z_SAFE_HOMING_X_POINT is outside the probe region.
static_assert(WITHIN(Z_SAFE_HOMING_X_POINT, MIN_PROBE_X, MAX_PROBE_X), "Z_SAFE_HOMING_X_POINT is outside the probe region.");
^
SanityCheck.h:1012: error: static assertion failed: Z_SAFE_HOMING_Y_POINT is outside the probe region.
static_assert(WITHIN(Z_SAFE_HOMING_Y_POINT, MIN_PROBE_Y, MAX_PROBE_Y), "Z_SAFE_HOMING_Y_POINT is outside the probe region.");
^
exit status 1
static assertion failed: LEFT_PROBE_BED_POSITION is outside the probe region.
My Cube no longer homes to the center of the bed.I had all the pertinent setting that I have tweaked for my machine saved so I only changed those settings.
I tried enabling #define BED_CENTER_AT_0_0 but that didn't work.
If i enable
#define Z_SAFE_HOMING
I get an error as follows
In file included from sketch\MarlinConfig.h:42:0,
from sketch\G26_Mesh_Validation_Tool.cpp:27:
SanityCheck.h:946: error: static assertion failed: LEFT_PROBE_BED_POSITION is outside the probe region.
static_assert(LEFT_PROBE_BED_POSITION >= MIN_PROBE_X, "LEFT_PROBE_BED_POSITION is outside the probe region.");
^
SanityCheck.h:947: error: static assertion failed: RIGHT_PROBE_BED_POSITION is outside the probe region.
static_assert(RIGHT_PROBE_BED_POSITION <= MAX_PROBE_X, "RIGHT_PROBE_BED_POSITION is outside the probe region.");
^
SanityCheck.h:949: error: static assertion failed: BACK_PROBE_BED_POSITION is outside the probe region.
static_assert(BACK_PROBE_BED_POSITION <= MAX_PROBE_Y, "BACK_PROBE_BED_POSITION is outside the probe region.");
^
SanityCheck.h:1011: error: static assertion failed: Z_SAFE_HOMING_X_POINT is outside the probe region.
static_assert(WITHIN(Z_SAFE_HOMING_X_POINT, MIN_PROBE_X, MAX_PROBE_X), "Z_SAFE_HOMING_X_POINT is outside the probe region.");
^
SanityCheck.h:1012: error: static assertion failed: Z_SAFE_HOMING_Y_POINT is outside the probe region.
static_assert(WITHIN(Z_SAFE_HOMING_Y_POINT, MIN_PROBE_Y, MAX_PROBE_Y), "Z_SAFE_HOMING_Y_POINT is outside the probe region.");
^
exit status 1
static assertion failed: LEFT_PROBE_BED_POSITION is outside the probe region.