Clean up whitespace

This commit is contained in:
Scott Lahteine 2019-03-10 19:09:19 -05:00
parent 4c43e6c48b
commit 3419099f0a
2 changed files with 4 additions and 1 deletions

View File

@ -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

View File

@ -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