mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-02-18 15:21:25 +00:00
🐛 Fix G33 homing current (#22909)
This commit is contained in:
parent
3f9ff2421f
commit
02dc7a6387
1 changed files with 2 additions and 2 deletions
|
@ -73,9 +73,9 @@ float dcr;
|
||||||
|
|
||||||
void ac_home() {
|
void ac_home() {
|
||||||
endstops.enable(true);
|
endstops.enable(true);
|
||||||
TERN_(SENSORLESS_HOMING, probe.set_homing_current(true));
|
TERN_(HAS_DELTA_SENSORLESS_PROBING, probe.set_homing_current(true));
|
||||||
home_delta();
|
home_delta();
|
||||||
TERN_(SENSORLESS_HOMING, probe.set_homing_current(false));
|
TERN_(HAS_DELTA_SENSORLESS_PROBING, probe.set_homing_current(false));
|
||||||
endstops.not_homing();
|
endstops.not_homing();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue