Sfoglia il codice sorgente

Fix __ARM__ / __arm__ typo (#19063)

Giuliano Zaro 5 anni fa
parent
commit
d3c5161476
Nessun account collegato all'indirizzo email del committer
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1
    1
      Marlin/src/module/stepper.cpp

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

@@ -1264,7 +1264,7 @@ void Stepper::set_directions() {
1264 1264
     }
1265 1265
 
1266 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 1269
         // For ARM Cortex M3/M4 CPUs, we have the optimized assembler version, that takes 43 cycles to execute
1270 1270
         uint32_t flo = 0;

Loading…
Annulla
Salva