Add G29_RETRY_AND_RECOVER feature
- Add an option to retry G29, optionally executing a G-code procedure after each failed probe.
This commit is contained in:
committed by
Scott Lahteine
parent
78ea4871f9
commit
5cc7916e69
@ -285,9 +285,17 @@ public:
|
||||
|
||||
static bool get_target_extruder_from_command();
|
||||
static void get_destination_from_command();
|
||||
static void process_parsed_command();
|
||||
static void process_parsed_command(
|
||||
#if ENABLED(USE_EXECUTE_COMMANDS_IMMEDIATE)
|
||||
const bool no_ok = false
|
||||
#endif
|
||||
);
|
||||
static void process_next_command();
|
||||
|
||||
#if ENABLED(USE_EXECUTE_COMMANDS_IMMEDIATE)
|
||||
static void process_subcommands_now_P(const char *pgcode);
|
||||
#endif
|
||||
|
||||
FORCE_INLINE static void home_all_axes() { G28(true); }
|
||||
|
||||
/**
|
||||
@ -380,6 +388,9 @@ private:
|
||||
|
||||
#if HAS_LEVELING
|
||||
static void G29();
|
||||
#if ENABLED(G29_RETRY_AND_RECOVER)
|
||||
static void G29_with_retry();
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if HAS_BED_PROBE
|
||||
|
Reference in New Issue
Block a user