mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2026-03-05 09:34:47 -07:00
Merge 20f990ed33 into a6ebfe14cc
This commit is contained in:
commit
bbb62fadc3
1 changed files with 8 additions and 0 deletions
|
|
@ -39,6 +39,10 @@
|
|||
#include "../../feature/probe_temp_comp.h"
|
||||
#endif
|
||||
|
||||
#if ENABLED(FT_MOTION)
|
||||
#include "../../module/ft_motion.h"
|
||||
#endif
|
||||
|
||||
/**
|
||||
* M48: Z probe repeatability measurement function.
|
||||
*
|
||||
|
|
@ -93,6 +97,10 @@ void GcodeSuite::M48() {
|
|||
SERIAL_ECHOLNPGM(GCODE_ERR_MSG("Legs of movement implausible (0-15)."));
|
||||
return;
|
||||
}
|
||||
|
||||
// Potentially disable Fixed-Time Motion for probing
|
||||
TERN_(FT_MOTION, FTM_DISABLE_IN_SCOPE());
|
||||
|
||||
if (n_legs == 1) n_legs = 2;
|
||||
|
||||
// Schizoid motion as an optional stress-test
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue