Browse Source

Fix compile error (macro substitution typo) (#16194)

pull/1/head
randellhodges 5 years ago
committed by Scott Lahteine
parent
commit
2a7f1091ce
  1. 2
      Marlin/src/Marlin.cpp

2
Marlin/src/Marlin.cpp

@ -553,7 +553,7 @@ void manage_inactivity(const bool ignore_stepper_queue/*=false*/) {
bool oldstatus;
switch (active_extruder) {
default:
#define _CASE_EN(N) case N: oldstatus = E##N_ENABLE_READ(); enable_E##N(); break;
#define _CASE_EN(N) case N: oldstatus = E##N##_ENABLE_READ(); enable_E##N(); break;
REPEAT(E_STEPPERS, _CASE_EN);
}
#endif

Loading…
Cancel
Save