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,7 +106,7 @@ void plan_arc(
106 106
   const feedRate_t scaled_fr_mm_s = MMS_SCALED(feedrate_mm_s);
107 107
 
108 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 110
     NOLESS(seg_length, MM_PER_ARC_SEGMENT);
111 111
   #else
112 112
     constexpr float seg_length = MM_PER_ARC_SEGMENT;

Loading…
Cancel
Save