Simple bool in soft_endstops_t

This commit is contained in:
Scott Lahteine
2020-10-13 14:54:56 -05:00
parent 2132efa981
commit 733eb127e9
2 changed files with 5 additions and 7 deletions

View File

@ -536,9 +536,9 @@ void restore_feedrate_and_scaling() {
// Software Endstops are based on the configured limits.
soft_endstops_t soft_endstop = {
true, false,
{ X_MIN_POS, Y_MIN_POS, Z_MIN_POS },
{ X_MAX_POS, Y_MAX_POS, Z_MAX_POS },
{ true, false }
{ X_MAX_POS, Y_MAX_POS, Z_MAX_POS }
};
/**