Browse Source

Clean up whitespace

Scott Lahteine 5 years ago
parent
commit
3419099f0a
2 changed files with 4 additions and 1 deletions
  1. 3
    0
      Marlin/src/module/planner.cpp
  2. 1
    1
      Marlin/src/module/temperature.cpp

+ 3
- 0
Marlin/src/module/planner.cpp View File

@@ -1264,6 +1264,7 @@ void Planner::check_axes_activity() {
1264 1264
     #endif
1265 1265
 
1266 1266
     #if ENABLED(FAN_SOFT_PWM)
1267
+
1267 1268
       #if HAS_FAN0
1268 1269
         thermalManager.soft_pwm_amount_fan[0] = CALC_FAN_SPEED(0);
1269 1270
       #endif
@@ -1275,6 +1276,7 @@ void Planner::check_axes_activity() {
1275 1276
       #endif
1276 1277
 
1277 1278
     #elif ENABLED(FAST_PWM_FAN)
1279
+
1278 1280
       #if HAS_FAN0
1279 1281
         thermalManager.set_pwm_duty(FAN_PIN, CALC_FAN_SPEED(0));
1280 1282
       #endif
@@ -1286,6 +1288,7 @@ void Planner::check_axes_activity() {
1286 1288
       #endif
1287 1289
 
1288 1290
     #else
1291
+
1289 1292
       #if HAS_FAN0
1290 1293
         analogWrite(FAN_PIN, CALC_FAN_SPEED(0));
1291 1294
       #endif

+ 1
- 1
Marlin/src/module/temperature.cpp View File

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

Loading…
Cancel
Save