Browse Source

Followup to math patch

Scott Lahteine 7 years ago
parent
commit
d9154ebdf6
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/src/module/stepper.cpp

+ 2
- 2
Marlin/src/module/stepper.cpp View File

1159
 }
1159
 }
1160
 
1160
 
1161
 #ifdef CPU_32_BIT
1161
 #ifdef CPU_32_BIT
1162
-  #define STEP_MULTIPLY(A,B) MultiU32X24toH32(A, B);
1162
+  #define STEP_MULTIPLY(A,B) MultiU32X24toH32(A, B)
1163
 #else
1163
 #else
1164
-  #define STEP_MULTIPLY(A,B) MultiU24X32toH16(A, B);
1164
+  #define STEP_MULTIPLY(A,B) MultiU24X32toH16(A, B)
1165
 #endif
1165
 #endif
1166
 
1166
 
1167
 void Stepper::isr() {
1167
 void Stepper::isr() {

Loading…
Cancel
Save