Skip to content

Commit

Permalink
🐛 Fix G33 homing current (MarlinFirmware#22909)
Browse files Browse the repository at this point in the history
  • Loading branch information
ellensp authored and AlexColello committed Jan 14, 2022
1 parent cdf7e22 commit 271d00c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Marlin/src/gcode/calibrate/G33.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ float dcr;

void ac_home() {
endstops.enable(true);
TERN_(SENSORLESS_HOMING, probe.set_homing_current(true));
TERN_(HAS_DELTA_SENSORLESS_PROBING, probe.set_homing_current(true));
home_delta();
TERN_(SENSORLESS_HOMING, probe.set_homing_current(false));
TERN_(HAS_DELTA_SENSORLESS_PROBING, probe.set_homing_current(false));
endstops.not_homing();
}

Expand Down

0 comments on commit 271d00c

Please sign in to comment.