mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2024-11-30 23:30:16 +00:00
Followup to G33 patch
This commit is contained in:
parent
4c93153194
commit
e56ead5e1c
@ -5544,13 +5544,12 @@ void home_all_axes() { gcode_G28(true); }
|
|||||||
}
|
}
|
||||||
|
|
||||||
inline float calibration_probe(const float nx, const float ny, const bool stow) {
|
inline float calibration_probe(const float nx, const float ny, const bool stow) {
|
||||||
return
|
#if HAS_BED_PROBE
|
||||||
#if HAS_BED_PROBE
|
return probe_pt(nx, ny, stow, 0, false);
|
||||||
probe_pt(nx, ny, stow, 0, false)
|
#else
|
||||||
#else
|
UNUSED(stow);
|
||||||
lcd_probe_pt(nx, ny)
|
return lcd_probe_pt(nx, ny);
|
||||||
#endif
|
#endif
|
||||||
;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static float probe_G33_points(float z_at_pt[NPP + 1], const int8_t probe_points, const bool towers_set, const bool stow_after_each) {
|
static float probe_G33_points(float z_at_pt[NPP + 1], const int8_t probe_points, const bool towers_set, const bool stow_after_each) {
|
||||||
|
Loading…
Reference in New Issue
Block a user