Browse Source

prevent steppers from turning off during manual probes

pull/1/head
Roxy-3D 6 years ago
committed by GitHub
parent
commit
646dd5554c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      Marlin/src/feature/bedlevel/ubl/ubl_G29.cpp

1
Marlin/src/feature/bedlevel/ubl/ubl_G29.cpp

@ -775,6 +775,7 @@
wait_for_release();
while (!is_lcd_clicked()) {
idle();
refresh_cmd_timeout();
if (encoder_diff) {
do_blocking_move_to_z(current_position[Z_AXIS] + float(encoder_diff) * multiplier);
encoder_diff = 0;

Loading…
Cancel
Save