Skip to content

Commit 65fdae1

Browse files
swissnorpvgadreau
authored andcommitted
G35 workaround for Pronterface "feature" (MarlinFirmware#19577)
1 parent 94c3679 commit 65fdae1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Marlin/src/gcode/bedlevel/G35.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ void GcodeSuite::G35() {
157157
const int minutes = trunc(decimal_part * 60.0f);
158158

159159
SERIAL_ECHOPAIR("Turn ", tramming_point_name[i],
160-
" ", (screw_thread & 1) == (adjust > 0) ? "Counter-Clockwise" : "Clockwise",
160+
" ", (screw_thread & 1) == (adjust > 0) ? "CCW" : "CW",
161161
" by ", abs(full_turns), " turns");
162162
if (minutes) SERIAL_ECHOPAIR(" and ", abs(minutes), " minutes");
163163
SERIAL_EOL();

0 commit comments

Comments
 (0)