Browse Source

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

Anders Sahlman 5 years ago
parent
commit
c669420134
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/module/probe.h

+ 1
- 1
Marlin/src/module/probe.h View File

85
     #endif
85
     #endif
86
     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);
86
     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);
87
     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) {
87
     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) {
88
-      return probe_at_point(pos.x, pos.y, raise_after, verbose_level, probe_relative);
88
+      return probe_at_point(pos.x, pos.y, raise_after, verbose_level, probe_relative, sanity_check);
89
     }
89
     }
90
     #if HAS_HEATED_BED && ENABLED(WAIT_FOR_BED_HEATER)
90
     #if HAS_HEATED_BED && ENABLED(WAIT_FOR_BED_HEATER)
91
       static const char msg_wait_for_bed_heating[25];
91
       static const char msg_wait_for_bed_heating[25];

Loading…
Cancel
Save