We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00d3540 commit 421866cCopy full SHA for 421866c
1 file changed
Marlin/src/module/probe.h
@@ -28,6 +28,19 @@
28
#include "../inc/MarlinConfig.h"
29
30
#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
44
enum ProbePtRaise : uint8_t {
45
PROBE_PT_NONE, // No raise or stow after run_z_probe
46
PROBE_PT_STOW, // Do a complete stow after run_z_probe
0 commit comments