[2.0.x] G33 probe error handling

This commit is contained in:
LVD-AC
2017-11-25 10:59:46 +01:00
committed by Scott Lahteine
parent d3ed0f53cd
commit 65f365333f
5 changed files with 51 additions and 56 deletions

View File

@ -32,7 +32,7 @@
#if HAS_BED_PROBE
extern float zprobe_zoffset;
bool set_probe_deployed(const bool deploy);
float probe_pt(const float &rx, const float &ry, const bool, const uint8_t, const bool printable=true);
float probe_pt(const float &rx, const float &ry, const bool, const uint8_t, const bool probe_relative=true);
#define DEPLOY_PROBE() set_probe_deployed(true)
#define STOW_PROBE() set_probe_deployed(false)
#else