Clean up whitespace

2.0.x
Scott Lahteine 6 years ago
parent 4c43e6c48b
commit 3419099f0a

@ -1264,6 +1264,7 @@ void Planner::check_axes_activity() {
#endif
#if ENABLED(FAN_SOFT_PWM)
#if HAS_FAN0
thermalManager.soft_pwm_amount_fan[0] = CALC_FAN_SPEED(0);
#endif
@ -1275,6 +1276,7 @@ void Planner::check_axes_activity() {
#endif
#elif ENABLED(FAST_PWM_FAN)
#if HAS_FAN0
thermalManager.set_pwm_duty(FAN_PIN, CALC_FAN_SPEED(0));
#endif
@ -1286,6 +1288,7 @@ void Planner::check_axes_activity() {
#endif
#else
#if HAS_FAN0
analogWrite(FAN_PIN, CALC_FAN_SPEED(0));
#endif

@ -2270,7 +2270,7 @@ void Temperature::readings_ready() {
#else
#define CHAMBERCMP(A,B) ((A)>=(B))
#endif
const bool chamber_on = (temp_chamber.target > 0)
const bool chamber_on = (temp_chamber.target > 0)
#if ENABLED(PIDTEMPCHAMBER)
|| (temp_chamber.soft_pwm_amount > 0)
#endif

Loading…
Cancel
Save