Skip to content
Snippets Groups Projects
Unverified Commit 37550e9d authored by Roxy-3D's avatar Roxy-3D Committed by GitHub
Browse files

Allow 3-digit LCD Display of value

The LCD Display shows 3 digits of precision, not 4.   
So change the bounding value to something more rational.
parent 05eed72b
Branches
Tags
No related merge requests found
......@@ -527,9 +527,9 @@ void menu_backlash();
#if DISABLED(CLASSIC_JERK)
#if ENABLED(LIN_ADVANCE)
EDIT_ITEM(float43, MSG_JUNCTION_DEVIATION, &planner.junction_deviation_mm, 0.0025f, 0.3f, planner.recalculate_max_e_jerk);
EDIT_ITEM(float43, MSG_JUNCTION_DEVIATION, &planner.junction_deviation_mm, 0.001f, 0.3f, planner.recalculate_max_e_jerk);
#else
EDIT_ITEM(float43, MSG_JUNCTION_DEVIATION, &planner.junction_deviation_mm, 0.0025f, 0.5f);
EDIT_ITEM(float43, MSG_JUNCTION_DEVIATION, &planner.junction_deviation_mm, 0.001f, 0.5f);
#endif
#endif
#if HAS_CLASSIC_JERK
......
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment