diff --git a/Marlin/Configuration_adv.h b/Marlin/Configuration_adv.h
index 3947e425fbfc329aaef9af8eab92b62821d5e998..3ecc66e88f7e535b273517d2f82e3528d6790a61 100644
--- a/Marlin/Configuration_adv.h
+++ b/Marlin/Configuration_adv.h
@@ -455,6 +455,7 @@
// @section extras
// Arc interpretation settings:
+#define ARC_SUPPORT // Disabling this saves ~2660bytes
#define MM_PER_ARC_SEGMENT 1
#define N_ARC_CORRECTION 25
diff --git a/Marlin/Marlin_main.cpp b/Marlin/Marlin_main.cpp
index 99786e61701c49c1f6e09ccce72d53f4ff225115..f9cd807839c339b55484005919f4a7a5d5c37759 100644
--- a/Marlin/Marlin_main.cpp
+++ b/Marlin/Marlin_main.cpp
@@ -506,7 +506,9 @@ void stop();
void get_available_commands();
void process_next_command();
-void plan_arc(float target[NUM_AXIS], float* offset, uint8_t clockwise);
+#if ENABLED(ARC_SUPPORT)
+ void plan_arc(float target[NUM_AXIS], float* offset, uint8_t clockwise);
+#endif
void serial_echopair_P(const char* s_P, int v) { serialprintPGM(s_P); SERIAL_ECHO(v); }
void serial_echopair_P(const char* s_P, long v) { serialprintPGM(s_P); SERIAL_ECHO(v); }
@@ -2461,32 +2463,34 @@ inline void gcode_G0_G1() {
* G2: Clockwise Arc
* G3: Counterclockwise Arc
*/
-inline void gcode_G2_G3(bool clockwise) {
- if (IsRunning()) {
+#if ENABLED(ARC_SUPPORT)
+ inline void gcode_G2_G3(bool clockwise) {
+ if (IsRunning()) {
- #if ENABLED(SF_ARC_FIX)
- bool relative_mode_backup = relative_mode;
- relative_mode = true;
- #endif
+ #if ENABLED(SF_ARC_FIX)
+ bool relative_mode_backup = relative_mode;
+ relative_mode = true;
+ #endif
- gcode_get_destination();
+ gcode_get_destination();
- #if ENABLED(SF_ARC_FIX)
- relative_mode = relative_mode_backup;
- #endif
+ #if ENABLED(SF_ARC_FIX)
+ relative_mode = relative_mode_backup;
+ #endif
- // Center of arc as offset from current_position
- float arc_offset[2] = {
- code_seen('I') ? code_value() : 0,
- code_seen('J') ? code_value() : 0
- };
+ // Center of arc as offset from current_position
+ float arc_offset[2] = {
+ code_seen('I') ? code_value() : 0,
+ code_seen('J') ? code_value() : 0
+ };
- // Send an arc to the planner
- plan_arc(destination, arc_offset, clockwise);
+ // Send an arc to the planner
+ plan_arc(destination, arc_offset, clockwise);
- refresh_cmd_timeout();
+ refresh_cmd_timeout();
+ }
}
-}
+#endif
/**
* G4: Dwell S<seconds> or P<milliseconds>
@@ -6484,7 +6488,7 @@ void process_next_command() {
break;
// G2, G3
- #if DISABLED(SCARA)
+ #if ENABLED(ARC_SUPPORT) && DISABLED(SCARA)
case 2: // G2 - CW ARC
case 3: // G3 - CCW ARC
gcode_G2_G3(codenum == 2);
@@ -7423,147 +7427,157 @@ void prepare_move() {
set_current_to_destination();
}
-/**
- * Plan an arc in 2 dimensions
- *
- * The arc is approximated by generating many small linear segments.
- * The length of each segment is configured in MM_PER_ARC_SEGMENT (Default 1mm)
- * Arcs should only be made relatively large (over 5mm), as larger arcs with
- * larger segments will tend to be more efficient. Your slicer should have
- * options for G2/G3 arc generation. In future these options may be GCode tunable.
- */
-void plan_arc(
- float target[NUM_AXIS], // Destination position
- float* offset, // Center of rotation relative to current_position
- uint8_t clockwise // Clockwise?
-) {
-
- float radius = hypot(offset[X_AXIS], offset[Y_AXIS]),
- center_X = current_position[X_AXIS] + offset[X_AXIS],
- center_Y = current_position[Y_AXIS] + offset[Y_AXIS],
- linear_travel = target[Z_AXIS] - current_position[Z_AXIS],
- extruder_travel = target[E_AXIS] - current_position[E_AXIS],
- r_X = -offset[X_AXIS], // Radius vector from center to current location
- r_Y = -offset[Y_AXIS],
- rt_X = target[X_AXIS] - center_X,
- rt_Y = target[Y_AXIS] - center_Y;
-
- // CCW angle of rotation between position and target from the circle center. Only one atan2() trig computation required.
- float angular_travel = atan2(r_X * rt_Y - r_Y * rt_X, r_X * rt_X + r_Y * rt_Y);
- if (angular_travel < 0) angular_travel += RADIANS(360);
- if (clockwise) angular_travel -= RADIANS(360);
-
- // Make a circle if the angular rotation is 0
- if (angular_travel == 0 && current_position[X_AXIS] == target[X_AXIS] && current_position[Y_AXIS] == target[Y_AXIS])
- angular_travel += RADIANS(360);
-
- float mm_of_travel = hypot(angular_travel * radius, fabs(linear_travel));
- if (mm_of_travel < 0.001) return;
- uint16_t segments = floor(mm_of_travel / (MM_PER_ARC_SEGMENT));
- if (segments == 0) segments = 1;
-
- float theta_per_segment = angular_travel / segments;
- float linear_per_segment = linear_travel / segments;
- float extruder_per_segment = extruder_travel / segments;
-
+#if ENABLED(ARC_SUPPORT)
/**
- * Vector rotation by transformation matrix: r is the original vector, r_T is the rotated vector,
- * and phi is the angle of rotation. Based on the solution approach by Jens Geisler.
- * r_T = [cos(phi) -sin(phi);
- * sin(phi) cos(phi] * r ;
- *
- * For arc generation, the center of the circle is the axis of rotation and the radius vector is
- * defined from the circle center to the initial position. Each line segment is formed by successive
- * vector rotations. This requires only two cos() and sin() computations to form the rotation
- * matrix for the duration of the entire arc. Error may accumulate from numerical round-off, since
- * all double numbers are single precision on the Arduino. (True double precision will not have
- * round off issues for CNC applications.) Single precision error can accumulate to be greater than
- * tool precision in some cases. Therefore, arc path correction is implemented.
- *
- * Small angle approximation may be used to reduce computation overhead further. This approximation
- * holds for everything, but very small circles and large MM_PER_ARC_SEGMENT values. In other words,
- * theta_per_segment would need to be greater than 0.1 rad and N_ARC_CORRECTION would need to be large
- * to cause an appreciable drift error. N_ARC_CORRECTION~=25 is more than small enough to correct for
- * numerical drift error. N_ARC_CORRECTION may be on the order a hundred(s) before error becomes an
- * issue for CNC machines with the single precision Arduino calculations.
+ * Plan an arc in 2 dimensions
*
- * This approximation also allows plan_arc to immediately insert a line segment into the planner
- * without the initial overhead of computing cos() or sin(). By the time the arc needs to be applied
- * a correction, the planner should have caught up to the lag caused by the initial plan_arc overhead.
- * This is important when there are successive arc motions.
+ * The arc is approximated by generating many small linear segments.
+ * The length of each segment is configured in MM_PER_ARC_SEGMENT (Default 1mm)
+ * Arcs should only be made relatively large (over 5mm), as larger arcs with
+ * larger segments will tend to be more efficient. Your slicer should have
+ * options for G2/G3 arc generation. In future these options may be GCode tunable.
*/
- // Vector rotation matrix values
- float cos_T = 1 - 0.5 * theta_per_segment * theta_per_segment; // Small angle approximation
- float sin_T = theta_per_segment;
+ void plan_arc(
+ float target[NUM_AXIS], // Destination position
+ float* offset, // Center of rotation relative to current_position
+ uint8_t clockwise // Clockwise?
+ ) {
+
+ float radius = hypot(offset[X_AXIS], offset[Y_AXIS]),
+ center_X = current_position[X_AXIS] + offset[X_AXIS],
+ center_Y = current_position[Y_AXIS] + offset[Y_AXIS],
+ linear_travel = target[Z_AXIS] - current_position[Z_AXIS],
+ extruder_travel = target[E_AXIS] - current_position[E_AXIS],
+ r_X = -offset[X_AXIS], // Radius vector from center to current location
+ r_Y = -offset[Y_AXIS],
+ rt_X = target[X_AXIS] - center_X,
+ rt_Y = target[Y_AXIS] - center_Y;
+
+ // CCW angle of rotation between position and target from the circle center. Only one atan2() trig computation required.
+ float angular_travel = atan2(r_X * rt_Y - r_Y * rt_X, r_X * rt_X + r_Y * rt_Y);
+ if (angular_travel < 0) angular_travel += RADIANS(360);
+ if (clockwise) angular_travel -= RADIANS(360);
+
+ // Make a circle if the angular rotation is 0
+ if (angular_travel == 0 && current_position[X_AXIS] == target[X_AXIS] && current_position[Y_AXIS] == target[Y_AXIS])
+ angular_travel += RADIANS(360);
+
+ float mm_of_travel = hypot(angular_travel * radius, fabs(linear_travel));
+ if (mm_of_travel < 0.001) return;
+ uint16_t segments = floor(mm_of_travel / (MM_PER_ARC_SEGMENT));
+ if (segments == 0) segments = 1;
+
+ float theta_per_segment = angular_travel / segments;
+ float linear_per_segment = linear_travel / segments;
+ float extruder_per_segment = extruder_travel / segments;
- float arc_target[NUM_AXIS];
- float sin_Ti, cos_Ti, r_new_Y;
- uint16_t i;
- int8_t count = 0;
+ /**
+ * Vector rotation by transformation matrix: r is the original vector, r_T is the rotated vector,
+ * and phi is the angle of rotation. Based on the solution approach by Jens Geisler.
+ * r_T = [cos(phi) -sin(phi);
+ * sin(phi) cos(phi] * r ;
+ *
+ * For arc generation, the center of the circle is the axis of rotation and the radius vector is
+ * defined from the circle center to the initial position. Each line segment is formed by successive
+ * vector rotations. This requires only two cos() and sin() computations to form the rotation
+ * matrix for the duration of the entire arc. Error may accumulate from numerical round-off, since
+ * all double numbers are single precision on the Arduino. (True double precision will not have
+ * round off issues for CNC applications.) Single precision error can accumulate to be greater than
+ * tool precision in some cases. Therefore, arc path correction is implemented.
+ *
+ * Small angle approximation may be used to reduce computation overhead further. This approximation
+ * holds for everything, but very small circles and large MM_PER_ARC_SEGMENT values. In other words,
+ * theta_per_segment would need to be greater than 0.1 rad and N_ARC_CORRECTION would need to be large
+ * to cause an appreciable drift error. N_ARC_CORRECTION~=25 is more than small enough to correct for
+ * numerical drift error. N_ARC_CORRECTION may be on the order a hundred(s) before error becomes an
+ * issue for CNC machines with the single precision Arduino calculations.
+ *
+ * This approximation also allows plan_arc to immediately insert a line segment into the planner
+ * without the initial overhead of computing cos() or sin(). By the time the arc needs to be applied
+ * a correction, the planner should have caught up to the lag caused by the initial plan_arc overhead.
+ * This is important when there are successive arc motions.
+ */
+ // Vector rotation matrix values
+ float cos_T = 1 - 0.5 * theta_per_segment * theta_per_segment; // Small angle approximation
+ float sin_T = theta_per_segment;
- // Initialize the linear axis
- arc_target[Z_AXIS] = current_position[Z_AXIS];
+ float arc_target[NUM_AXIS];
+ float sin_Ti, cos_Ti, r_new_Y;
+ uint16_t i;
+ int8_t count = 0;
- // Initialize the extruder axis
- arc_target[E_AXIS] = current_position[E_AXIS];
+ // Initialize the linear axis
+ arc_target[Z_AXIS] = current_position[Z_AXIS];
- float feed_rate = feedrate * feedrate_multiplier / 60 / 100.0;
+ // Initialize the extruder axis
+ arc_target[E_AXIS] = current_position[E_AXIS];
- for (i = 1; i < segments; i++) { // Iterate (segments-1) times
+ float feed_rate = feedrate * feedrate_multiplier / 60 / 100.0;
- if (++count < N_ARC_CORRECTION) {
- // Apply vector rotation matrix to previous r_X / 1
- r_new_Y = r_X * sin_T + r_Y * cos_T;
- r_X = r_X * cos_T - r_Y * sin_T;
- r_Y = r_new_Y;
- }
- else {
- // Arc correction to radius vector. Computed only every N_ARC_CORRECTION increments.
- // Compute exact location by applying transformation matrix from initial radius vector(=-offset).
- // To reduce stuttering, the sin and cos could be computed at different times.
- // For now, compute both at the same time.
- cos_Ti = cos(i * theta_per_segment);
- sin_Ti = sin(i * theta_per_segment);
- r_X = -offset[X_AXIS] * cos_Ti + offset[Y_AXIS] * sin_Ti;
- r_Y = -offset[X_AXIS] * sin_Ti - offset[Y_AXIS] * cos_Ti;
- count = 0;
- }
+ millis_t previous_ms = millis();
+
+ for (i = 1; i < segments; i++) { // Iterate (segments-1) times
+
+ millis_t now = millis();
+ if (now - previous_ms > 200UL) {
+ previous_ms = now;
+ idle();
+ }
+
+ if (++count < N_ARC_CORRECTION) {
+ // Apply vector rotation matrix to previous r_X / 1
+ r_new_Y = r_X * sin_T + r_Y * cos_T;
+ r_X = r_X * cos_T - r_Y * sin_T;
+ r_Y = r_new_Y;
+ }
+ else {
+ // Arc correction to radius vector. Computed only every N_ARC_CORRECTION increments.
+ // Compute exact location by applying transformation matrix from initial radius vector(=-offset).
+ // To reduce stuttering, the sin and cos could be computed at different times.
+ // For now, compute both at the same time.
+ cos_Ti = cos(i * theta_per_segment);
+ sin_Ti = sin(i * theta_per_segment);
+ r_X = -offset[X_AXIS] * cos_Ti + offset[Y_AXIS] * sin_Ti;
+ r_Y = -offset[X_AXIS] * sin_Ti - offset[Y_AXIS] * cos_Ti;
+ count = 0;
+ }
+
+ // Update arc_target location
+ arc_target[X_AXIS] = center_X + r_X;
+ arc_target[Y_AXIS] = center_Y + r_Y;
+ arc_target[Z_AXIS] += linear_per_segment;
+ arc_target[E_AXIS] += extruder_per_segment;
- // Update arc_target location
- arc_target[X_AXIS] = center_X + r_X;
- arc_target[Y_AXIS] = center_Y + r_Y;
- arc_target[Z_AXIS] += linear_per_segment;
- arc_target[E_AXIS] += extruder_per_segment;
+ clamp_to_software_endstops(arc_target);
- clamp_to_software_endstops(arc_target);
+ #if ENABLED(DELTA) || ENABLED(SCARA)
+ calculate_delta(arc_target);
+ #if ENABLED(AUTO_BED_LEVELING_FEATURE)
+ adjust_delta(arc_target);
+ #endif
+ planner.buffer_line(delta[X_AXIS], delta[Y_AXIS], delta[Z_AXIS], arc_target[E_AXIS], feed_rate, active_extruder);
+ #else
+ planner.buffer_line(arc_target[X_AXIS], arc_target[Y_AXIS], arc_target[Z_AXIS], arc_target[E_AXIS], feed_rate, active_extruder);
+ #endif
+ }
+ // Ensure last segment arrives at target location.
#if ENABLED(DELTA) || ENABLED(SCARA)
- calculate_delta(arc_target);
+ calculate_delta(target);
#if ENABLED(AUTO_BED_LEVELING_FEATURE)
- adjust_delta(arc_target);
+ adjust_delta(target);
#endif
- planner.buffer_line(delta[X_AXIS], delta[Y_AXIS], delta[Z_AXIS], arc_target[E_AXIS], feed_rate, active_extruder);
+ planner.buffer_line(delta[X_AXIS], delta[Y_AXIS], delta[Z_AXIS], target[E_AXIS], feed_rate, active_extruder);
#else
- planner.buffer_line(arc_target[X_AXIS], arc_target[Y_AXIS], arc_target[Z_AXIS], arc_target[E_AXIS], feed_rate, active_extruder);
+ planner.buffer_line(target[X_AXIS], target[Y_AXIS], target[Z_AXIS], target[E_AXIS], feed_rate, active_extruder);
#endif
- }
- // Ensure last segment arrives at target location.
- #if ENABLED(DELTA) || ENABLED(SCARA)
- calculate_delta(target);
- #if ENABLED(AUTO_BED_LEVELING_FEATURE)
- adjust_delta(target);
- #endif
- planner.buffer_line(delta[X_AXIS], delta[Y_AXIS], delta[Z_AXIS], target[E_AXIS], feed_rate, active_extruder);
- #else
- planner.buffer_line(target[X_AXIS], target[Y_AXIS], target[Z_AXIS], target[E_AXIS], feed_rate, active_extruder);
- #endif
-
- // As far as the parser is concerned, the position is now == target. In reality the
- // motion control system might still be processing the action and the real tool position
- // in any intermediate location.
- set_current_to_destination();
-}
+ // As far as the parser is concerned, the position is now == target. In reality the
+ // motion control system might still be processing the action and the real tool position
+ // in any intermediate location.
+ set_current_to_destination();
+ }
+#endif
#if HAS_CONTROLLERFAN
diff --git a/Marlin/example_configurations/Felix/Configuration_adv.h b/Marlin/example_configurations/Felix/Configuration_adv.h
index 24e5d5ec647caebcf8c68cac380c745e68cd623e..0cd58015c1672aea8d5b9e78672b2619848b44c4 100644
--- a/Marlin/example_configurations/Felix/Configuration_adv.h
+++ b/Marlin/example_configurations/Felix/Configuration_adv.h
@@ -455,6 +455,7 @@
// @section extras
// Arc interpretation settings:
+#define ARC_SUPPORT // Disabling this saves ~2660bytes
#define MM_PER_ARC_SEGMENT 1
#define N_ARC_CORRECTION 25
diff --git a/Marlin/example_configurations/Hephestos/Configuration_adv.h b/Marlin/example_configurations/Hephestos/Configuration_adv.h
index 69e11a8d142e36a49ad695b335df4015110e5955..321e5c634baa6d117769b92561685f8e40ad83e5 100644
--- a/Marlin/example_configurations/Hephestos/Configuration_adv.h
+++ b/Marlin/example_configurations/Hephestos/Configuration_adv.h
@@ -455,6 +455,7 @@
// @section extras
// Arc interpretation settings:
+#define ARC_SUPPORT // Disabling this saves ~2660bytes
#define MM_PER_ARC_SEGMENT 1
#define N_ARC_CORRECTION 25
diff --git a/Marlin/example_configurations/Hephestos_2/Configuration_adv.h b/Marlin/example_configurations/Hephestos_2/Configuration_adv.h
index f641975f134bd6e0c4170d35d0f1ac240f759510..892aad0d213c913acb44d02b2fc30173fe534d99 100644
--- a/Marlin/example_configurations/Hephestos_2/Configuration_adv.h
+++ b/Marlin/example_configurations/Hephestos_2/Configuration_adv.h
@@ -455,6 +455,7 @@
// @section extras
// Arc interpretation settings:
+#define ARC_SUPPORT // Disabling this saves ~2660bytes
#define MM_PER_ARC_SEGMENT 1
#define N_ARC_CORRECTION 25
diff --git a/Marlin/example_configurations/K8200/Configuration_adv.h b/Marlin/example_configurations/K8200/Configuration_adv.h
index 25988f577e36812c7506b3705191e9e91fedc48a..a965e09b46790b857d7f4aacd85127fd341eb99e 100644
--- a/Marlin/example_configurations/K8200/Configuration_adv.h
+++ b/Marlin/example_configurations/K8200/Configuration_adv.h
@@ -461,6 +461,7 @@
// @section extras
// Arc interpretation settings:
+#define ARC_SUPPORT // Disabling this saves ~2660bytes
#define MM_PER_ARC_SEGMENT 1
#define N_ARC_CORRECTION 25
diff --git a/Marlin/example_configurations/RigidBot/Configuration_adv.h b/Marlin/example_configurations/RigidBot/Configuration_adv.h
index bad72079b3e7979e20e57d5fc1273574ad5c8d5e..36abb84aa211f233fb8c2206a136b14d20edc9c7 100644
--- a/Marlin/example_configurations/RigidBot/Configuration_adv.h
+++ b/Marlin/example_configurations/RigidBot/Configuration_adv.h
@@ -455,6 +455,7 @@
// @section extras
// Arc interpretation settings:
+#define ARC_SUPPORT // Disabling this saves ~2660bytes
#define MM_PER_ARC_SEGMENT 1
#define N_ARC_CORRECTION 25
diff --git a/Marlin/example_configurations/SCARA/Configuration_adv.h b/Marlin/example_configurations/SCARA/Configuration_adv.h
index 4eb58471fa67000566385acaa31f23a30e115479..cb906545e9f1a9aa839dce7bde6ea7aecfc7a766 100644
--- a/Marlin/example_configurations/SCARA/Configuration_adv.h
+++ b/Marlin/example_configurations/SCARA/Configuration_adv.h
@@ -455,6 +455,7 @@
// @section extras
// Arc interpretation settings:
+#define ARC_SUPPORT // Disabling this saves ~2660bytes
#define MM_PER_ARC_SEGMENT 1
#define N_ARC_CORRECTION 25
diff --git a/Marlin/example_configurations/TAZ4/Configuration_adv.h b/Marlin/example_configurations/TAZ4/Configuration_adv.h
index 14fd394b5401f87fc59631fae196d15ea34d9baf..7e6375deb866ab9a3dba1f5d474cffcf0d018d91 100644
--- a/Marlin/example_configurations/TAZ4/Configuration_adv.h
+++ b/Marlin/example_configurations/TAZ4/Configuration_adv.h
@@ -463,6 +463,7 @@
// @section extras
// Arc interpretation settings:
+#define ARC_SUPPORT // Disabling this saves ~2660bytes
#define MM_PER_ARC_SEGMENT 1
#define N_ARC_CORRECTION 25
diff --git a/Marlin/example_configurations/WITBOX/Configuration_adv.h b/Marlin/example_configurations/WITBOX/Configuration_adv.h
index 69e11a8d142e36a49ad695b335df4015110e5955..321e5c634baa6d117769b92561685f8e40ad83e5 100644
--- a/Marlin/example_configurations/WITBOX/Configuration_adv.h
+++ b/Marlin/example_configurations/WITBOX/Configuration_adv.h
@@ -455,6 +455,7 @@
// @section extras
// Arc interpretation settings:
+#define ARC_SUPPORT // Disabling this saves ~2660bytes
#define MM_PER_ARC_SEGMENT 1
#define N_ARC_CORRECTION 25
diff --git a/Marlin/example_configurations/delta/biv2.5/Configuration_adv.h b/Marlin/example_configurations/delta/biv2.5/Configuration_adv.h
index 25909cf37525d3a50e288d27c4a58c98ab7ef52f..fc7dab25f8a65a64d33517a51d71e1c021e40ef2 100644
--- a/Marlin/example_configurations/delta/biv2.5/Configuration_adv.h
+++ b/Marlin/example_configurations/delta/biv2.5/Configuration_adv.h
@@ -457,6 +457,7 @@
// @section extras
// Arc interpretation settings:
+#define ARC_SUPPORT // Disabling this saves ~2660bytes
#define MM_PER_ARC_SEGMENT 1
#define N_ARC_CORRECTION 25
diff --git a/Marlin/example_configurations/delta/generic/Configuration_adv.h b/Marlin/example_configurations/delta/generic/Configuration_adv.h
index 982bb572f96ce52f9227b51f11f4336d667fc7e6..ccd17269a2785ee30edeac0138fb5acfe8f3fd43 100644
--- a/Marlin/example_configurations/delta/generic/Configuration_adv.h
+++ b/Marlin/example_configurations/delta/generic/Configuration_adv.h
@@ -457,6 +457,7 @@
// @section extras
// Arc interpretation settings:
+#define ARC_SUPPORT // Disabling this saves ~2660bytes
#define MM_PER_ARC_SEGMENT 1
#define N_ARC_CORRECTION 25
diff --git a/Marlin/example_configurations/delta/kossel_mini/Configuration_adv.h b/Marlin/example_configurations/delta/kossel_mini/Configuration_adv.h
index 50041784c9f3b09033dc88a92a1b8ae5ec3a6465..e6e85aba078cce6b3cc01472df86eaf79668f52b 100644
--- a/Marlin/example_configurations/delta/kossel_mini/Configuration_adv.h
+++ b/Marlin/example_configurations/delta/kossel_mini/Configuration_adv.h
@@ -456,6 +456,7 @@
// @section extras
// Arc interpretation settings:
+#define ARC_SUPPORT // Disabling this saves ~2660bytes
#define MM_PER_ARC_SEGMENT 1
#define N_ARC_CORRECTION 25
diff --git a/Marlin/example_configurations/delta/kossel_pro/Configuration_adv.h b/Marlin/example_configurations/delta/kossel_pro/Configuration_adv.h
index 6a098190f7dbf40a30919a6dad263dd4ffd9de5d..edd1649c14313c97905768405281daa03c4c762d 100644
--- a/Marlin/example_configurations/delta/kossel_pro/Configuration_adv.h
+++ b/Marlin/example_configurations/delta/kossel_pro/Configuration_adv.h
@@ -461,6 +461,7 @@
// @section extras
// Arc interpretation settings:
+#define ARC_SUPPORT // Disabling this saves ~2660bytes
#define MM_PER_ARC_SEGMENT 1
#define N_ARC_CORRECTION 25
diff --git a/Marlin/example_configurations/delta/kossel_xl/Configuration_adv.h b/Marlin/example_configurations/delta/kossel_xl/Configuration_adv.h
index 07bfa32d2a0379e9cab7cdc7fe78b44d038b0816..33ff25a8527b4fab31e0757fa3dfa90c53d60928 100644
--- a/Marlin/example_configurations/delta/kossel_xl/Configuration_adv.h
+++ b/Marlin/example_configurations/delta/kossel_xl/Configuration_adv.h
@@ -457,6 +457,7 @@
// @section extras
// Arc interpretation settings:
+#define ARC_SUPPORT // Disabling this saves ~2660bytes
#define MM_PER_ARC_SEGMENT 1
#define N_ARC_CORRECTION 25
diff --git a/Marlin/example_configurations/makibox/Configuration_adv.h b/Marlin/example_configurations/makibox/Configuration_adv.h
index f0699dfdb7b374b4b56eb7361c1a72742299f040..e93df28b1552791d78f86636c4e3b13c1f4e5ee7 100644
--- a/Marlin/example_configurations/makibox/Configuration_adv.h
+++ b/Marlin/example_configurations/makibox/Configuration_adv.h
@@ -455,6 +455,7 @@
// @section extras
// Arc interpretation settings:
+#define ARC_SUPPORT // Disabling this saves ~2660bytes
#define MM_PER_ARC_SEGMENT 1
#define N_ARC_CORRECTION 25
diff --git a/Marlin/example_configurations/tvrrug/Round2/Configuration_adv.h b/Marlin/example_configurations/tvrrug/Round2/Configuration_adv.h
index 3bc2fe2e0e6a7bd45eeb65d9b7b89b5e65f82f44..bf73f2ce89865c2d237aee3fb0ae7a0007ba7d31 100644
--- a/Marlin/example_configurations/tvrrug/Round2/Configuration_adv.h
+++ b/Marlin/example_configurations/tvrrug/Round2/Configuration_adv.h
@@ -455,6 +455,7 @@
// @section extras
// Arc interpretation settings:
+#define ARC_SUPPORT // Disabling this saves ~2660bytes
#define MM_PER_ARC_SEGMENT 1
#define N_ARC_CORRECTION 25