Browse Source

Can't use the ENABLED macro as a boolean

pull/1/head
Scott Lahteine 8 years ago
parent
commit
13f85a2b50
  1. 8
      Marlin/endstops.cpp

8
Marlin/endstops.cpp

@ -37,7 +37,13 @@
Endstops endstops; Endstops endstops;
Endstops::Endstops() { Endstops::Endstops() {
enable_globally(ENABLED(ENDSTOPS_ONLY_FOR_HOMING)); enable_globally(
#if ENABLED(ENDSTOPS_ONLY_FOR_HOMING)
true
#else
false
#endif
);
enable(true); enable(true);
#if ENABLED(HAS_Z_MIN_PROBE) #if ENABLED(HAS_Z_MIN_PROBE)
enable_z_probe(false); enable_z_probe(false);

Loading…
Cancel
Save