Skip to content

Commit

Permalink
Tweak ProbePtRaise labels
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Feb 4, 2020
1 parent 00d3540 commit 421866c
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Marlin/src/module/probe.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,19 @@
#include "../inc/MarlinConfig.h"

#if HAS_BED_PROBE

extern xyz_pos_t probe_offset;

#if HAS_PROBE_XY_OFFSET
extern xyz_pos_t &probe_offset_xy;
#else
constexpr xy_pos_t probe_offset_xy{0};
#endif

bool set_probe_deployed(const bool deploy);
#ifdef Z_AFTER_PROBING
void move_z_after_probing();
#endif
enum ProbePtRaise : uint8_t {
PROBE_PT_NONE, // No raise or stow after run_z_probe
PROBE_PT_STOW, // Do a complete stow after run_z_probe
Expand Down

0 comments on commit 421866c

Please sign in to comment.