Browse Source

Fix G26 Y argument bug

pull/1/head
Scott Lahteine 7 years ago
committed by GitHub
parent
commit
24437fbb13
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Marlin/src/feature/bedlevel/ubl/G26_Mesh_Validation_Tool.cpp

2
Marlin/src/feature/bedlevel/ubl/G26_Mesh_Validation_Tool.cpp

@ -730,7 +730,7 @@ bool unified_bed_leveling::parse_G26_parameters() {
}
g26_x_pos = parser.seenval('X') ? RAW_X_POSITION(parser.value_linear_units()) : current_position[X_AXIS];
g26_y_pos = parser.seenval('Y') ? RAW_X_POSITION(parser.value_linear_units()) : current_position[Y_AXIS];
g26_y_pos = parser.seenval('Y') ? RAW_Y_POSITION(parser.value_linear_units()) : current_position[Y_AXIS];
if (!position_is_reachable(g26_x_pos, g26_y_pos)) {
SERIAL_PROTOCOLLNPGM("?Specified X,Y coordinate out of bounds.");
return UBL_ERR;

Loading…
Cancel
Save