Skip to content

Commit 421866c

Browse files
committed
Tweak ProbePtRaise labels
1 parent 00d3540 commit 421866c

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

Marlin/src/module/probe.h

+13
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,19 @@
2828
#include "../inc/MarlinConfig.h"
2929

3030
#if HAS_BED_PROBE
31+
32+
extern xyz_pos_t probe_offset;
33+
34+
#if HAS_PROBE_XY_OFFSET
35+
extern xyz_pos_t &probe_offset_xy;
36+
#else
37+
constexpr xy_pos_t probe_offset_xy{0};
38+
#endif
39+
40+
bool set_probe_deployed(const bool deploy);
41+
#ifdef Z_AFTER_PROBING
42+
void move_z_after_probing();
43+
#endif
3144
enum ProbePtRaise : uint8_t {
3245
PROBE_PT_NONE, // No raise or stow after run_z_probe
3346
PROBE_PT_STOW, // Do a complete stow after run_z_probe

0 commit comments

Comments
 (0)