Add Z_PROBE_LOW_POINT to prevent damage

This commit is contained in:
Scott Lahteine 2018-04-08 23:53:09 -05:00
parent e87ae5b643
commit 4f660a18bc
4 changed files with 36 additions and 9 deletions

View file

@ -392,7 +392,7 @@ void report_current_position();
PROBE_PT_STOW, // Do a complete stow after run_z_probe
PROBE_PT_RAISE // Raise to "between" clearance after run_z_probe
};
float probe_pt(const float &rx, const float &ry, const ProbePtRaise raise_after=PROBE_PT_NONE, const uint8_t verbose_level=0, const bool probe_relative=true);
float probe_pt(const float &rx, const float &ry, const ProbePtRaise raise_after=PROBE_PT_NONE, const uint8_t verbose_level=0, const bool is_calibration=false);
#define DEPLOY_PROBE() set_probe_deployed(true)
#define STOW_PROBE() set_probe_deployed(false)
#else