Merge pull request #6623 from lrpirlet/AllowUBLG29ToWork

G29 P1 stops reporting Invalid location with this patch
This commit is contained in:
bgort 2017-05-07 09:42:42 -04:00 committed by GitHub
commit 787fdc95bb

View File

@ -1057,12 +1057,12 @@
err_flag = true;
}
if (!WITHIN(RAW_X_POSITION(x_pos), UBL_MESH_MIN_X, UBL_MESH_MAX_X)) {
if (!WITHIN(RAW_X_POSITION(x_pos), X_MIN_POS, X_MAX_POS)) {
SERIAL_PROTOCOLLNPGM("Invalid X location specified.\n");
err_flag = true;
}
if (!WITHIN(RAW_Y_POSITION(y_pos), UBL_MESH_MIN_Y, UBL_MESH_MAX_Y)) {
if (!WITHIN(RAW_Y_POSITION(y_pos), Y_MIN_POS, Y_MAX_POS)) {
SERIAL_PROTOCOLLNPGM("Invalid Y location specified.\n");
err_flag = true;
}