Skip to content

Commit

Permalink
G35 workaround for Pronterface "feature" (MarlinFirmware#19577)
Browse files Browse the repository at this point in the history
  • Loading branch information
swissnorp authored and thinkyhead committed Oct 16, 2020
1 parent 5a02959 commit f8375a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/gcode/bedlevel/G35.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ void GcodeSuite::G35() {
const int minutes = trunc(decimal_part * 60.0f);

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

0 comments on commit f8375a3

Please sign in to comment.