Browse Source

Fix __ARM__ / __arm__ typo (#19063)

vanilla_fb_2.0.x
Giuliano Zaro 4 years ago
committed by GitHub
parent
commit
d3c5161476
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Marlin/src/module/stepper.cpp

2
Marlin/src/module/stepper.cpp

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

Loading…
Cancel
Save