Tweak to G33 P error
This commit is contained in:
parent
c10d763d98
commit
7164fd499e
1 changed files with 1 additions and 1 deletions
|
@ -5109,7 +5109,7 @@ void home_all_axes() { gcode_G28(true); }
|
||||||
|
|
||||||
const int8_t probe_points = parser.seen('P') ? parser.value_int() : DELTA_CALIBRATION_DEFAULT_POINTS;
|
const int8_t probe_points = parser.seen('P') ? parser.value_int() : DELTA_CALIBRATION_DEFAULT_POINTS;
|
||||||
if (!WITHIN(probe_points, 1, 7)) {
|
if (!WITHIN(probe_points, 1, 7)) {
|
||||||
SERIAL_PROTOCOLLNPGM("?(P)oints is implausible (1 to 7).");
|
SERIAL_PROTOCOLLNPGM("?(P)oints is implausible (1-7).");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue