Apply standards for whole-file conditions

This commit is contained in:
Scott Lahteine 2018-02-04 17:24:23 -06:00
parent 5054c53901
commit 21bfbb9d44
10 changed files with 37 additions and 19 deletions

View file

@ -417,6 +417,7 @@ void report_current_position();
#if HAS_BED_PROBE
extern float zprobe_zoffset;
bool set_probe_deployed(const bool deploy);
#define DEPLOY_PROBE() set_probe_deployed(true)
#define STOW_PROBE() set_probe_deployed(false)
#else