Browse Source

Fix missing step_current_down semicolons

Scott Lahteine 5 years ago
parent
commit
25a7ceabdb
1 changed files with 10 additions and 10 deletions
  1. 10
    10
      Marlin/src/feature/tmc_util.cpp

+ 10
- 10
Marlin/src/feature/tmc_util.cpp View File

@@ -349,58 +349,58 @@
349 349
       #if AXIS_IS_TMC(X)
350 350
         if (monitor_tmc_driver(stepperX, need_update_error_counters, need_debug_reporting)) {
351 351
           #if AXIS_IS_TMC(X2)
352
-            step_current_down(stepperX2)
352
+            step_current_down(stepperX2);
353 353
           #endif
354 354
         }
355 355
       #endif
356 356
       #if AXIS_IS_TMC(X2)
357 357
         if (monitor_tmc_driver(stepperX2, need_update_error_counters, need_debug_reporting)) {
358 358
           #if AXIS_IS_TMC(X)
359
-            step_current_down(stepperX)
359
+            step_current_down(stepperX);
360 360
           #endif
361 361
         }
362 362
       #endif
363 363
       #if AXIS_IS_TMC(Y)
364 364
         if (monitor_tmc_driver(stepperY, need_update_error_counters, need_debug_reporting)) {
365 365
           #if AXIS_IS_TMC(Y2)
366
-            step_current_down(stepperY2)
366
+            step_current_down(stepperY2);
367 367
           #endif
368 368
         }
369 369
       #endif
370 370
       #if AXIS_IS_TMC(Y2)
371 371
         if (monitor_tmc_driver(stepperY2, need_update_error_counters, need_debug_reporting)) {
372 372
           #if AXIS_IS_TMC(Y)
373
-            step_current_down(stepperY)
373
+            step_current_down(stepperY);
374 374
           #endif
375 375
         }
376 376
       #endif
377 377
       #if AXIS_IS_TMC(Z)
378 378
         if (monitor_tmc_driver(stepperZ, need_update_error_counters, need_debug_reporting)) {
379 379
           #if AXIS_IS_TMC(Z2)
380
-            step_current_down(stepperZ2)
380
+            step_current_down(stepperZ2);
381 381
           #endif
382 382
           #if AXIS_IS_TMC(Z3)
383
-            step_current_down(stepperZ3)
383
+            step_current_down(stepperZ3);
384 384
           #endif
385 385
         }
386 386
       #endif
387 387
       #if AXIS_IS_TMC(Z2)
388 388
         if (monitor_tmc_driver(stepperZ2, need_update_error_counters, need_debug_reporting)) {
389 389
           #if AXIS_IS_TMC(Z)
390
-            step_current_down(stepperZ)
390
+            step_current_down(stepperZ);
391 391
           #endif
392 392
           #if AXIS_IS_TMC(Z3)
393
-            step_current_down(stepperZ3)
393
+            step_current_down(stepperZ3);
394 394
           #endif
395 395
         }
396 396
       #endif
397 397
       #if AXIS_IS_TMC(Z3)
398 398
         if (monitor_tmc_driver(stepperZ3, need_update_error_counters, need_debug_reporting)) {
399 399
           #if AXIS_IS_TMC(Z)
400
-            step_current_down(stepperZ)
400
+            step_current_down(stepperZ);
401 401
           #endif
402 402
           #if AXIS_IS_TMC(Z2)
403
-            step_current_down(stepperZ2)
403
+            step_current_down(stepperZ2);
404 404
           #endif
405 405
         }
406 406
       #endif

Loading…
Cancel
Save