Browse Source

✏️ Fix parking extruder compile (#23961)

Followup to d3e3e6a491
FB4S_WIFI
John Lagonikas 3 years ago
committed by Scott Lahteine
parent
commit
bd5c6bf23c
  1. 2
      Marlin/src/feature/solenoid.cpp

2
Marlin/src/feature/solenoid.cpp

@ -38,7 +38,7 @@ static void set_solenoid(const uint8_t num, const uint8_t state) {
}
#if ENABLED(PARKING_EXTRUDER)
if (!active && active_extruder == num) // If active extruder's solenoid is disabled, carriage is considered parked
if (state == LOW && active_extruder == num) // If active extruder's solenoid is disabled, carriage is considered parked
parking_extruder_set_parked(true);
#endif
}

Loading…
Cancel
Save