2017-09-18 08:44:59 +02:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2019-06-28 06:57:50 +02:00
|
|
|
* Copyright (c) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2017-09-18 08:44:59 +02:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-28 06:57:50 +02:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2017-09-18 08:44:59 +02:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "../inc/MarlinConfig.h"
|
|
|
|
|
|
|
|
#if ENABLED(USE_CONTROLLER_FAN)
|
|
|
|
|
2017-10-07 14:26:36 +02:00
|
|
|
#include "../module/stepper_indirection.h"
|
|
|
|
#include "../module/temperature.h"
|
|
|
|
|
2018-10-07 22:34:41 +02:00
|
|
|
uint8_t controllerfan_speed;
|
2018-02-16 09:18:50 +01:00
|
|
|
|
2017-09-18 08:44:59 +02:00
|
|
|
void controllerfan_update() {
|
|
|
|
static millis_t lastMotorOn = 0, // Last time a motor was turned on
|
|
|
|
nextMotorCheck = 0; // Last time the state was checked
|
|
|
|
const millis_t ms = millis();
|
|
|
|
if (ELAPSED(ms, nextMotorCheck)) {
|
|
|
|
nextMotorCheck = ms + 2500UL; // Not a time critical function, so only check every 2.5s
|
2018-08-29 08:49:30 +02:00
|
|
|
|
2019-08-17 04:57:19 +02:00
|
|
|
const bool xory = X_ENABLE_READ() == X_ENABLE_ON || Y_ENABLE_READ() == Y_ENABLE_ON;
|
|
|
|
|
2018-08-29 08:49:30 +02:00
|
|
|
// If any of the drivers or the bed are enabled...
|
2019-08-17 04:57:19 +02:00
|
|
|
if (xory || Z_ENABLE_READ() == Z_ENABLE_ON
|
2018-05-04 07:15:31 +02:00
|
|
|
#if HAS_HEATED_BED
|
2019-03-07 09:09:39 +01:00
|
|
|
|| thermalManager.temp_bed.soft_pwm_amount > 0
|
2018-05-04 07:15:31 +02:00
|
|
|
#endif
|
2018-08-29 08:49:30 +02:00
|
|
|
#if HAS_X2_ENABLE
|
2019-08-17 04:57:19 +02:00
|
|
|
|| X2_ENABLE_READ() == X_ENABLE_ON
|
2018-08-29 08:49:30 +02:00
|
|
|
#endif
|
|
|
|
#if HAS_Y2_ENABLE
|
2019-08-17 04:57:19 +02:00
|
|
|
|| Y2_ENABLE_READ() == Y_ENABLE_ON
|
2018-08-29 08:49:30 +02:00
|
|
|
#endif
|
|
|
|
#if HAS_Z2_ENABLE
|
2019-08-17 04:57:19 +02:00
|
|
|
|| Z2_ENABLE_READ() == Z_ENABLE_ON
|
2018-08-29 08:49:30 +02:00
|
|
|
#endif
|
2018-06-19 18:55:49 +02:00
|
|
|
#if HAS_Z3_ENABLE
|
2019-08-17 04:57:19 +02:00
|
|
|
|| Z3_ENABLE_READ() == Z_ENABLE_ON
|
2018-06-19 18:55:49 +02:00
|
|
|
#endif
|
2019-03-01 08:51:24 +01:00
|
|
|
#if E_STEPPERS
|
2019-08-17 04:57:19 +02:00
|
|
|
|| E0_ENABLE_READ() == E_ENABLE_ON
|
2019-03-01 08:51:24 +01:00
|
|
|
#if E_STEPPERS > 1
|
2019-08-17 04:57:19 +02:00
|
|
|
|| E1_ENABLE_READ() == E_ENABLE_ON
|
2019-03-01 08:51:24 +01:00
|
|
|
#if E_STEPPERS > 2
|
2019-08-17 04:57:19 +02:00
|
|
|
|| E2_ENABLE_READ() == E_ENABLE_ON
|
2019-03-01 08:51:24 +01:00
|
|
|
#if E_STEPPERS > 3
|
2019-08-17 04:57:19 +02:00
|
|
|
|| E3_ENABLE_READ() == E_ENABLE_ON
|
2019-03-01 08:51:24 +01:00
|
|
|
#if E_STEPPERS > 4
|
2019-08-17 04:57:19 +02:00
|
|
|
|| E4_ENABLE_READ() == E_ENABLE_ON
|
2019-03-01 08:51:24 +01:00
|
|
|
#if E_STEPPERS > 5
|
2019-08-17 04:57:19 +02:00
|
|
|
|| E5_ENABLE_READ() == E_ENABLE_ON
|
2019-03-01 08:51:24 +01:00
|
|
|
#endif // E_STEPPERS > 5
|
|
|
|
#endif // E_STEPPERS > 4
|
|
|
|
#endif // E_STEPPERS > 3
|
|
|
|
#endif // E_STEPPERS > 2
|
|
|
|
#endif // E_STEPPERS > 1
|
|
|
|
#endif // E_STEPPERS
|
2017-09-18 08:44:59 +02:00
|
|
|
) {
|
|
|
|
lastMotorOn = ms; //... set time to NOW so the fan will turn on
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fan off if no steppers have been enabled for CONTROLLERFAN_SECS seconds
|
2019-08-17 04:57:19 +02:00
|
|
|
controllerfan_speed = (!lastMotorOn || ELAPSED(ms, lastMotorOn + (CONTROLLERFAN_SECS) * 1000UL)) ? 0 : (
|
|
|
|
#ifdef CONTROLLERFAN_SPEED_Z_ONLY
|
|
|
|
xory ? CONTROLLERFAN_SPEED : CONTROLLERFAN_SPEED_Z_ONLY
|
|
|
|
#else
|
|
|
|
CONTROLLERFAN_SPEED
|
|
|
|
#endif
|
|
|
|
);
|
2017-09-18 08:44:59 +02:00
|
|
|
|
2019-08-17 04:57:19 +02:00
|
|
|
// Allow digital or PWM fan output (see M42 handling)
|
|
|
|
WRITE(CONTROLLER_FAN_PIN, controllerfan_speed);
|
|
|
|
analogWrite(pin_t(CONTROLLER_FAN_PIN), controllerfan_speed);
|
2017-09-18 08:44:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // USE_CONTROLLER_FAN
|