Merge pull request #3828 from AnHardt/hw-endstops-default
Correct hardware endstops default
This commit is contained in:
commit
714d526614
1 changed files with 2 additions and 2 deletions
|
@ -39,9 +39,9 @@ Endstops endstops;
|
||||||
Endstops::Endstops() {
|
Endstops::Endstops() {
|
||||||
enable_globally(
|
enable_globally(
|
||||||
#if ENABLED(ENDSTOPS_ONLY_FOR_HOMING)
|
#if ENABLED(ENDSTOPS_ONLY_FOR_HOMING)
|
||||||
true
|
|
||||||
#else
|
|
||||||
false
|
false
|
||||||
|
#else
|
||||||
|
true
|
||||||
#endif
|
#endif
|
||||||
);
|
);
|
||||||
enable(true);
|
enable(true);
|
||||||
|
|
Reference in a new issue