Browse Source

G35 workaround for Pronterface "feature" (#19577)

swissnorp 3 years ago
parent
commit
f8375a3ea2
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/gcode/bedlevel/G35.cpp

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

@@ -157,7 +157,7 @@ void GcodeSuite::G35() {
157 157
       const int minutes = trunc(decimal_part * 60.0f);
158 158
 
159 159
       SERIAL_ECHOPAIR("Turn ", tramming_point_name[i],
160
-             " ", (screw_thread & 1) == (adjust > 0) ? "Counter-Clockwise" : "Clockwise",
160
+             " ", (screw_thread & 1) == (adjust > 0) ? "CCW" : "CW",
161 161
              " by ", abs(full_turns), " turns");
162 162
       if (minutes) SERIAL_ECHOPAIR(" and ", abs(minutes), " minutes");
163 163
       SERIAL_EOL();

Loading…
Cancel
Save