Fix probe without leveling
This commit is contained in:
parent
8cbb5350ad
commit
39578a5919
|
@ -50,6 +50,8 @@
|
|||
extern const char msg_wait_for_bed_heating[25];
|
||||
#endif
|
||||
|
||||
#if HAS_LEVELING
|
||||
|
||||
inline float probe_min_x() {
|
||||
return _MAX(
|
||||
#if ENABLED(DELTA) || IS_SCARA
|
||||
|
@ -59,6 +61,7 @@
|
|||
#endif
|
||||
);
|
||||
}
|
||||
|
||||
inline float probe_max_x() {
|
||||
return _MIN(
|
||||
#if ENABLED(DELTA) || IS_SCARA
|
||||
|
@ -68,6 +71,7 @@
|
|||
#endif
|
||||
);
|
||||
}
|
||||
|
||||
inline float probe_min_y() {
|
||||
return _MAX(
|
||||
#if ENABLED(DELTA) || IS_SCARA
|
||||
|
@ -77,6 +81,7 @@
|
|||
#endif
|
||||
);
|
||||
}
|
||||
|
||||
inline float probe_max_y() {
|
||||
return _MIN(
|
||||
#if ENABLED(DELTA) || IS_SCARA
|
||||
|
@ -87,6 +92,8 @@
|
|||
);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
#else
|
||||
|
||||
constexpr float probe_offset[XYZ] = { 0 };
|
||||
|
|
Loading…
Reference in a new issue