Use 0 as the bed position (not Z_MIN_POS)

This commit is contained in:
Scott Lahteine
2018-04-17 20:32:56 -05:00
parent 428c54f2ad
commit df2f24617b
4 changed files with 7 additions and 7 deletions

View File

@ -473,7 +473,7 @@ void GcodeSuite::G29() {
enable_soft_endstops = soft_endstops_enabled;
#endif
// Move close to the bed before the first point
do_blocking_move_to_z(Z_MIN_POS);
do_blocking_move_to_z(0);
}
else {