Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for parking extruder compilation issue #23961

Merged
2 changes: 1 addition & 1 deletion Marlin/src/feature/solenoid.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down