Browse Source

Use RECIPROCAL macro (not _RECIP) (#16530)

Ryan V1 4 years ago
parent
commit
56e51efeea
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/gcode/motion/G2_G3.cpp

+ 1
- 1
Marlin/src/gcode/motion/G2_G3.cpp View File

106
   const feedRate_t scaled_fr_mm_s = MMS_SCALED(feedrate_mm_s);
106
   const feedRate_t scaled_fr_mm_s = MMS_SCALED(feedrate_mm_s);
107
 
107
 
108
   #ifdef ARC_SEGMENTS_PER_SEC
108
   #ifdef ARC_SEGMENTS_PER_SEC
109
-    float seg_length = scaled_fr_mm_s * _RECIP(ARC_SEGMENTS_PER_SEC);
109
+    float seg_length = scaled_fr_mm_s * RECIPROCAL(ARC_SEGMENTS_PER_SEC);
110
     NOLESS(seg_length, MM_PER_ARC_SEGMENT);
110
     NOLESS(seg_length, MM_PER_ARC_SEGMENT);
111
   #else
111
   #else
112
     constexpr float seg_length = MM_PER_ARC_SEGMENT;
112
     constexpr float seg_length = MM_PER_ARC_SEGMENT;

Loading…
Cancel
Save