🐛 Fix G33 homing current (#22909)

This commit is contained in:
ellensp 2021-10-13 14:28:45 +13:00 committed by Scott Lahteine
parent 0f519ebf85
commit b18aa933d1

View File

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