Fix Singlenozzle Standby issues (#21759)
Fixes #21758 Co-authored-by: Scott Lahteine <github@thinkyhead.com>
This commit is contained in:
@@ -372,9 +372,11 @@ class Temperature {
|
||||
static inline bool hotEnoughToExtrude(const uint8_t e) { return !tooColdToExtrude(e); }
|
||||
static inline bool targetHotEnoughToExtrude(const uint8_t e) { return !targetTooColdToExtrude(e); }
|
||||
|
||||
#if ENABLED(SINGLENOZZLE_STANDBY_FAN)
|
||||
static celsius_t singlenozzle_temp[EXTRUDERS];
|
||||
#if HAS_FAN
|
||||
#if EITHER(SINGLENOZZLE_STANDBY_TEMP, SINGLENOZZLE_STANDBY_FAN)
|
||||
#if ENABLED(SINGLENOZZLE_STANDBY_TEMP)
|
||||
static celsius_t singlenozzle_temp[EXTRUDERS];
|
||||
#endif
|
||||
#if ENABLED(SINGLENOZZLE_STANDBY_FAN)
|
||||
static uint8_t singlenozzle_fan_speed[EXTRUDERS];
|
||||
#endif
|
||||
static void singlenozzle_change(const uint8_t old_tool, const uint8_t new_tool);
|
||||
|
||||
Reference in New Issue
Block a user