Use MIN/MAX for min/max
This commit is contained in:
parent
17a8c37148
commit
97da6c1da5
@ -74,7 +74,7 @@ void GcodeSuite::M425() {
|
|||||||
|
|
||||||
if (parser.seen('F')) {
|
if (parser.seen('F')) {
|
||||||
planner.synchronize();
|
planner.synchronize();
|
||||||
backlash_correction = max(0, min(1.0, parser.value_linear_units()));
|
backlash_correction = MAX(0, MIN(1.0, parser.value_linear_units()));
|
||||||
noArgs = false;
|
noArgs = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user