Sfoglia il codice sorgente

Fix G35 output formatting (#18631)

Keith Bennett 5 anni fa
parent
commit
56c3deb423
Nessun account collegato all'indirizzo email del committer
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1
    1
      Marlin/src/gcode/bedlevel/G35.cpp

+ 1
- 1
Marlin/src/gcode/bedlevel/G35.cpp Vedi File

@@ -154,7 +154,7 @@ void GcodeSuite::G35() {
154 154
 
155 155
       SERIAL_ECHOPAIR("Turn ", tramming_point_name[i],
156 156
              " ", (screw_thread & 1) == (adjust > 0) ? "Counter-Clockwise" : "Clockwise",
157
-             "by ", abs(full_turns), " turns");
157
+             " by ", abs(full_turns), " turns");
158 158
       if (minutes) SERIAL_ECHOPAIR(" and ", abs(minutes), " minutes");
159 159
       SERIAL_EOL();
160 160
     }

Loading…
Annulla
Salva