Dependency adjustments

This commit is contained in:
Scott Lahteine
2017-11-19 13:59:40 -06:00
parent 550f1025f0
commit 1d4571b88d
8 changed files with 17 additions and 18 deletions

View File

@ -29,11 +29,10 @@
#include "../inc/MarlinConfig.h"
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);
#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);
#define DEPLOY_PROBE() set_probe_deployed(true)
#define STOW_PROBE() set_probe_deployed(false)
#else