️ Improve Sensorless homing/probing accuracy for G28, G33, M48 (#24220)

Co-authored-by: Robby Candra <robbycandra.mail@gmail.com>
Co-authored-by: ellensp <530024+ellensp@users.noreply.github.com>
This commit is contained in:
lujios
2022-06-03 07:19:25 +02:00
committed by GitHub
parent 845e2f6fb7
commit 41f73cb457
13 changed files with 202 additions and 79 deletions

View File

@@ -247,6 +247,11 @@ class Endstops {
static void clear_endstop_state();
static bool tmc_spi_homing_check();
#endif
public:
// Basic functions for Sensorless Homing
#if USE_SENSORLESS
static void set_homing_current(const bool onoff);
#endif
};
extern Endstops endstops;