Skip to content

Commit

Permalink
Fix __ARM__ / __arm__ typo (MarlinFirmware#19063)
Browse files Browse the repository at this point in the history
  • Loading branch information
GMagician authored Aug 19, 2020
1 parent 60b61de commit d3c5161
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/module/stepper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit d3c5161

Please sign in to comment.