|
@@ -411,7 +411,7 @@ void GcodeSuite::G33() {
|
411
|
411
|
|
412
|
412
|
const int8_t probe_points = parser.intval('P', DELTA_CALIBRATION_DEFAULT_POINTS);
|
413
|
413
|
if (!WITHIN(probe_points, 0, 10)) {
|
414
|
|
- SERIAL_ECHOLNPGM("?(P)oints is implausible (0-10).");
|
|
414
|
+ SERIAL_ECHOLNPGM("?(P)oints implausible (0-10).");
|
415
|
415
|
return;
|
416
|
416
|
}
|
417
|
417
|
|
|
@@ -419,19 +419,19 @@ void GcodeSuite::G33() {
|
419
|
419
|
|
420
|
420
|
const float calibration_precision = parser.floatval('C', 0.0);
|
421
|
421
|
if (calibration_precision < 0) {
|
422
|
|
- SERIAL_ECHOLNPGM("?(C)alibration precision is implausible (>=0).");
|
|
422
|
+ SERIAL_ECHOLNPGM("?(C)alibration precision implausible (>=0).");
|
423
|
423
|
return;
|
424
|
424
|
}
|
425
|
425
|
|
426
|
426
|
const int8_t force_iterations = parser.intval('F', 0);
|
427
|
427
|
if (!WITHIN(force_iterations, 0, 30)) {
|
428
|
|
- SERIAL_ECHOLNPGM("?(F)orce iteration is implausible (0-30).");
|
|
428
|
+ SERIAL_ECHOLNPGM("?(F)orce iteration implausible (0-30).");
|
429
|
429
|
return;
|
430
|
430
|
}
|
431
|
431
|
|
432
|
432
|
const int8_t verbose_level = parser.byteval('V', 1);
|
433
|
433
|
if (!WITHIN(verbose_level, 0, 3)) {
|
434
|
|
- SERIAL_ECHOLNPGM("?(V)erbose level is implausible (0-3).");
|
|
434
|
+ SERIAL_ECHOLNPGM("?(V)erbose level implausible (0-3).");
|
435
|
435
|
return;
|
436
|
436
|
}
|
437
|
437
|
|
|
@@ -475,7 +475,7 @@ void GcodeSuite::G33() {
|
475
|
475
|
const float a = RADIANS(210 + (360 / NPP) * (axis - 1)),
|
476
|
476
|
r = delta_calibration_radius;
|
477
|
477
|
if (!position_is_reachable(cos(a) * r, sin(a) * r)) {
|
478
|
|
- SERIAL_ECHOLNPGM("?(M665 B)ed radius is implausible.");
|
|
478
|
+ SERIAL_ECHOLNPGM("?(M665 B)ed radius implausible.");
|
479
|
479
|
return;
|
480
|
480
|
}
|
481
|
481
|
}
|