Browse Source

Implausible

Scott Lahteine 4 years ago
parent
commit
f9992c5f33

+ 1
- 1
Marlin/src/feature/bedlevel/ubl/ubl_G29.cpp View File

@@ -1091,7 +1091,7 @@
1091 1091
 
1092 1092
     g29_verbose_level = parser.seen('V') ? parser.value_int() : 0;
1093 1093
     if (!WITHIN(g29_verbose_level, 0, 4)) {
1094
-      SERIAL_ECHOLNPGM("?(V)erbose level is implausible (0-4).\n");
1094
+      SERIAL_ECHOLNPGM("?(V)erbose level implausible (0-4).\n");
1095 1095
       err_flag = true;
1096 1096
     }
1097 1097
 

+ 3
- 3
Marlin/src/gcode/bedlevel/abl/G29.cpp View File

@@ -349,7 +349,7 @@ G29_TYPE GcodeSuite::G29() {
349 349
 
350 350
     verbose_level = parser.intval('V');
351 351
     if (!WITHIN(verbose_level, 0, 4)) {
352
-      SERIAL_ECHOLNPGM("?(V)erbose level is implausible (0-4).");
352
+      SERIAL_ECHOLNPGM("?(V)erbose level implausible (0-4).");
353 353
       G29_RETURN(false);
354 354
     }
355 355
 
@@ -370,11 +370,11 @@ G29_TYPE GcodeSuite::G29() {
370 370
       if (parser.seenval('P')) abl_grid_points_x = abl_grid_points_y = parser.value_int();
371 371
 
372 372
       if (!WITHIN(abl_grid_points_x, 2, GRID_MAX_POINTS_X)) {
373
-        SERIAL_ECHOLNPGM("?Probe points (X) is implausible (2-" STRINGIFY(GRID_MAX_POINTS_X) ").");
373
+        SERIAL_ECHOLNPGM("?Probe points (X) implausible (2-" STRINGIFY(GRID_MAX_POINTS_X) ").");
374 374
         G29_RETURN(false);
375 375
       }
376 376
       if (!WITHIN(abl_grid_points_y, 2, GRID_MAX_POINTS_Y)) {
377
-        SERIAL_ECHOLNPGM("?Probe points (Y) is implausible (2-" STRINGIFY(GRID_MAX_POINTS_Y) ").");
377
+        SERIAL_ECHOLNPGM("?Probe points (Y) implausible (2-" STRINGIFY(GRID_MAX_POINTS_Y) ").");
378 378
         G29_RETURN(false);
379 379
       }
380 380
 

+ 5
- 5
Marlin/src/gcode/calibrate/G33.cpp View File

@@ -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
     }

+ 1
- 1
Marlin/src/gcode/calibrate/M48.cpp View File

@@ -59,7 +59,7 @@ void GcodeSuite::M48() {
59 59
 
60 60
   const int8_t verbose_level = parser.byteval('V', 1);
61 61
   if (!WITHIN(verbose_level, 0, 4)) {
62
-    SERIAL_ECHOLNPGM("?(V)erbose level is implausible (0-4).");
62
+    SERIAL_ECHOLNPGM("?(V)erbose level implausible (0-4).");
63 63
     return;
64 64
   }
65 65
 

+ 1
- 1
Marlin/src/gcode/config/M575.cpp View File

@@ -67,7 +67,7 @@ void GcodeSuite::M575() {
67 67
       #endif
68 68
 
69 69
     } break;
70
-    default: SERIAL_ECHO_MSG("?(B)aud rate is implausible.");
70
+    default: SERIAL_ECHO_MSG("?(B)aud rate implausible.");
71 71
   }
72 72
 }
73 73
 

Loading…
Cancel
Save