Sfoglia il codice sorgente

Tweak to G33 P error

Scott Lahteine 8 anni fa
parent
commit
7164fd499e
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1
    1
      Marlin/Marlin_main.cpp

+ 1
- 1
Marlin/Marlin_main.cpp Vedi File

5109
 
5109
 
5110
       const int8_t probe_points = parser.seen('P') ? parser.value_int() : DELTA_CALIBRATION_DEFAULT_POINTS;
5110
       const int8_t probe_points = parser.seen('P') ? parser.value_int() : DELTA_CALIBRATION_DEFAULT_POINTS;
5111
       if (!WITHIN(probe_points, 1, 7)) {
5111
       if (!WITHIN(probe_points, 1, 7)) {
5112
-        SERIAL_PROTOCOLLNPGM("?(P)oints is implausible (1 to 7).");
5112
+        SERIAL_PROTOCOLLNPGM("?(P)oints is implausible (1-7).");
5113
         return;
5113
         return;
5114
       }
5114
       }
5115
 
5115
 

Loading…
Annulla
Salva