Followup to G33 patch
This commit is contained in:
parent
4c93153194
commit
e56ead5e1c
1 changed files with 6 additions and 7 deletions
|
|
@ -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
|
||||||
probe_pt(nx, ny, stow, 0, false)
|
return probe_pt(nx, ny, stow, 0, false);
|
||||||
#else
|
#else
|
||||||
lcd_probe_pt(nx, ny)
|
UNUSED(stow);
|
||||||
|
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…
Add table
Add a link
Reference in a new issue