Skip to content

Commit

Permalink
馃┕Increase range of G34 accuracy target (#26771)
Browse files Browse the repository at this point in the history
* Allow G34 accuracy down to 0.001mm, previous minimum was 0.01mm.
  • Loading branch information
sargonphin committed Apr 7, 2024
1 parent 351a1a1 commit 9343247
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Marlin/src/gcode/calibrate/G34_M422.cpp
Expand Up @@ -115,8 +115,8 @@ void GcodeSuite::G34() {
}

const float z_auto_align_accuracy = parser.floatval('T', Z_STEPPER_ALIGN_ACC);
if (!WITHIN(z_auto_align_accuracy, 0.01f, 1.0f)) {
SERIAL_ECHOLNPGM(GCODE_ERR_MSG("(T)arget accuracy out of bounds (0.01-1.0)."));
if (!WITHIN(z_auto_align_accuracy, 0.001f, 1.0f)) {
SERIAL_ECHOLNPGM(GCODE_ERR_MSG("(T)arget accuracy out of bounds (0.001-1.0)."));
break;
}

Expand Down
1 change: 1 addition & 0 deletions Marlin/src/inc/SanityCheck.h
Expand Up @@ -3617,6 +3617,7 @@ static_assert(_PLUS_TEST(3), "DEFAULT_MAX_ACCELERATION values must be positive."
#error "Z_STEPPER_ALIGN_STEPPER_XY requires 3 or 4 Z steppers."
#endif
#endif
static_assert(WITHIN(Z_STEPPER_ALIGN_ACC, 0.001, 1.0), "Z_STEPPER_ALIGN_ACC needs to be between 0.001 and 1.0");
#endif

#if ENABLED(MECHANICAL_GANTRY_CALIBRATION)
Expand Down

0 comments on commit 9343247

Please sign in to comment.