🐛 Fix Chiron new TFT SD print after reset (#23855)

This commit is contained in:
Nick
2022-03-12 23:47:47 +00:00
committed by Scott Lahteine
parent 4028c1cfc7
commit 1a76d4d467
4 changed files with 29 additions and 21 deletions

View File

@ -118,9 +118,11 @@ void GcodeSuite::G29() {
// For each G29 S2...
if (mbl_probe_index == 0) {
// Move close to the bed before the first point
do_blocking_move_to_z(0.4f
do_blocking_move_to_z(
#ifdef MANUAL_PROBE_START_Z
+ (MANUAL_PROBE_START_Z) - 0.4f
MANUAL_PROBE_START_Z
#else
0.4f
#endif
);
}