Skip to content
Snippets Groups Projects
Unverified Commit c6694201 authored by Anders Sahlman's avatar Anders Sahlman Committed by GitHub
Browse files

Pass along sanity_check for (G33) probing (#17006)

parent f8497b81
No related branches found
No related tags found
No related merge requests found
...@@ -85,7 +85,7 @@ public: ...@@ -85,7 +85,7 @@ public:
#endif #endif
static float probe_at_point(const float &rx, const float &ry, const ProbePtRaise raise_after=PROBE_PT_NONE, const uint8_t verbose_level=0, const bool probe_relative=true, const bool sanity_check=true); static float probe_at_point(const float &rx, const float &ry, const ProbePtRaise raise_after=PROBE_PT_NONE, const uint8_t verbose_level=0, const bool probe_relative=true, const bool sanity_check=true);
static inline float probe_at_point(const xy_pos_t &pos, const ProbePtRaise raise_after=PROBE_PT_NONE, const uint8_t verbose_level=0, const bool probe_relative=true, const bool sanity_check=true) { static inline float probe_at_point(const xy_pos_t &pos, const ProbePtRaise raise_after=PROBE_PT_NONE, const uint8_t verbose_level=0, const bool probe_relative=true, const bool sanity_check=true) {
return probe_at_point(pos.x, pos.y, raise_after, verbose_level, probe_relative); return probe_at_point(pos.x, pos.y, raise_after, verbose_level, probe_relative, sanity_check);
} }
#if HAS_HEATED_BED && ENABLED(WAIT_FOR_BED_HEATER) #if HAS_HEATED_BED && ENABLED(WAIT_FOR_BED_HEATER)
static const char msg_wait_for_bed_heating[25]; static const char msg_wait_for_bed_heating[25];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment