0
0
Fork 0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2025-02-17 23:00:50 +00:00

🩹 Fan speed followup

This commit is contained in:
Scott Lahteine 2022-01-15 23:17:39 -06:00
parent cc87695ae7
commit 9778b67e84

View file

@ -1392,12 +1392,7 @@ void Planner::check_axes_activity() {
// Update Fan speeds
// Only if synchronous M106/M107 is disabled
//
#if HAS_TAIL_FAN_SPEED
if (fans_need_update) {
sync_fan_speeds(tail_fan_speed);
fans_need_update = false;
}
#endif
TERN_(HAS_TAIL_FAN_SPEED, if (fans_need_update) sync_fan_speeds(tail_fan_speed));
TERN_(AUTOTEMP, autotemp_task());