Browse Source

Fix __ARM__ / __arm__ typo (#19063)

Giuliano Zaro 5 years ago
parent
commit
d3c5161476
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/module/stepper.cpp

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

1264
     }
1264
     }
1265
 
1265
 
1266
     FORCE_INLINE int32_t Stepper::_eval_bezier_curve(const uint32_t curr_step) {
1266
     FORCE_INLINE int32_t Stepper::_eval_bezier_curve(const uint32_t curr_step) {
1267
-      #if defined(__ARM__) || defined(__thumb__)
1267
+      #if defined(__arm__) || defined(__thumb__)
1268
 
1268
 
1269
         // For ARM Cortex M3/M4 CPUs, we have the optimized assembler version, that takes 43 cycles to execute
1269
         // For ARM Cortex M3/M4 CPUs, we have the optimized assembler version, that takes 43 cycles to execute
1270
         uint32_t flo = 0;
1270
         uint32_t flo = 0;

Loading…
Cancel
Save