From 25a7ceabdbac8e60fccc61e31283e7be8b8d5e1a Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Sun, 1 Dec 2019 17:30:22 -0600 Subject: [PATCH] Fix missing step_current_down semicolons --- Marlin/src/feature/tmc_util.cpp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Marlin/src/feature/tmc_util.cpp b/Marlin/src/feature/tmc_util.cpp index a6f66deb9a..f5c9509831 100644 --- a/Marlin/src/feature/tmc_util.cpp +++ b/Marlin/src/feature/tmc_util.cpp @@ -349,58 +349,58 @@ #if AXIS_IS_TMC(X) if (monitor_tmc_driver(stepperX, need_update_error_counters, need_debug_reporting)) { #if AXIS_IS_TMC(X2) - step_current_down(stepperX2) + step_current_down(stepperX2); #endif } #endif #if AXIS_IS_TMC(X2) if (monitor_tmc_driver(stepperX2, need_update_error_counters, need_debug_reporting)) { #if AXIS_IS_TMC(X) - step_current_down(stepperX) + step_current_down(stepperX); #endif } #endif #if AXIS_IS_TMC(Y) if (monitor_tmc_driver(stepperY, need_update_error_counters, need_debug_reporting)) { #if AXIS_IS_TMC(Y2) - step_current_down(stepperY2) + step_current_down(stepperY2); #endif } #endif #if AXIS_IS_TMC(Y2) if (monitor_tmc_driver(stepperY2, need_update_error_counters, need_debug_reporting)) { #if AXIS_IS_TMC(Y) - step_current_down(stepperY) + step_current_down(stepperY); #endif } #endif #if AXIS_IS_TMC(Z) if (monitor_tmc_driver(stepperZ, need_update_error_counters, need_debug_reporting)) { #if AXIS_IS_TMC(Z2) - step_current_down(stepperZ2) + step_current_down(stepperZ2); #endif #if AXIS_IS_TMC(Z3) - step_current_down(stepperZ3) + step_current_down(stepperZ3); #endif } #endif #if AXIS_IS_TMC(Z2) if (monitor_tmc_driver(stepperZ2, need_update_error_counters, need_debug_reporting)) { #if AXIS_IS_TMC(Z) - step_current_down(stepperZ) + step_current_down(stepperZ); #endif #if AXIS_IS_TMC(Z3) - step_current_down(stepperZ3) + step_current_down(stepperZ3); #endif } #endif #if AXIS_IS_TMC(Z3) if (monitor_tmc_driver(stepperZ3, need_update_error_counters, need_debug_reporting)) { #if AXIS_IS_TMC(Z) - step_current_down(stepperZ) + step_current_down(stepperZ); #endif #if AXIS_IS_TMC(Z2) - step_current_down(stepperZ2) + step_current_down(stepperZ2); #endif } #endif