Browse Source

G35 workaround for Pronterface "feature" (#19577)

vanilla_fb_2.0.x
swissnorp 4 years ago
committed by GitHub
parent
commit
d02d7a95d1
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Marlin/src/gcode/bedlevel/G35.cpp

2
Marlin/src/gcode/bedlevel/G35.cpp

@ -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();

Loading…
Cancel
Save