0
0
Fork 0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2025-03-13 01:40:09 +00:00

🔧 No DISABLE_OTHER_EXTRUDERS if < 2 steppers (#25818)

This commit is contained in:
Giuliano Zaro 2023-05-13 23:28:17 +02:00 committed by GitHub
parent d5fdbb89ea
commit 30c3daf031
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -681,8 +681,8 @@
#endif
// No inactive extruders with SWITCHING_NOZZLE or Průša MMU1
#if HAS_SWITCHING_NOZZLE || HAS_PRUSA_MMU1
// No inactive extruders with SWITCHING_NOZZLE or Průša MMU1 or just 1 E stepper exists
#if HAS_SWITCHING_NOZZLE || HAS_PRUSA_MMU1 || E_STEPPERS < 2
#undef DISABLE_OTHER_EXTRUDERS
#endif