Skip to content

Commit d8f4f26

Browse files
authored
Merge pull request #4673 from thinkyhead/rc_segments_steps_move
MIN_SEGMENTS_FOR_MOVE => MIN_STEPS_PER_SEGMENT
2 parents 27b80b1 + ab59280 commit d8f4f26

File tree

20 files changed

+40
-40
lines changed

20 files changed

+40
-40
lines changed

Marlin/Configuration_adv.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -530,8 +530,8 @@
530530
// Support for G5 with XYZE destination and IJPQ offsets. Requires ~2666 bytes.
531531
//#define BEZIER_CURVE_SUPPORT
532532

533-
// Moves with fewer segments than this will be ignored and joined with the next movement
534-
#define MIN_SEGMENTS_FOR_MOVE 6
533+
// Moves (or segments) with fewer steps than this will be joined with the next move
534+
#define MIN_STEPS_PER_SEGMENT 6
535535

536536
// @section temperature
537537

Marlin/SanityCheck.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,8 @@
133133
#error "Z_RAISE_(BEFORE|AFTER)_PROBING are deprecated. Use Z_PROBE_DEPLOY_HEIGHT instead."
134134
#elif defined(Z_RAISE_PROBE_DEPLOY_STOW) || defined(Z_RAISE_BETWEEN_PROBINGS)
135135
#error "Z_RAISE_PROBE_DEPLOY_STOW and Z_RAISE_BETWEEN_PROBINGS are now Z_PROBE_DEPLOY_HEIGHT and Z_PROBE_TRAVEL_HEIGHT Please update your configuration."
136-
#elif !defined(MIN_SEGMENTS_FOR_MOVE)
137-
#error "\"dropsegments\" is replaced with MIN_SEGMENTS_FOR_MOVE (and increases by 1). Please update Configuration_adv.h."
136+
#elif !defined(MIN_STEPS_PER_SEGMENT)
137+
#error "\"dropsegments\" is replaced with MIN_STEPS_PER_SEGMENT (and increases by 1). Please update Configuration_adv.h."
138138
#elif defined(PREVENT_DANGEROUS_EXTRUDE)
139139
#error "PREVENT_DANGEROUS_EXTRUDE is now PREVENT_COLD_EXTRUSION. Please update your configuration."
140140
#endif

Marlin/example_configurations/Cartesio/Configuration_adv.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -530,8 +530,8 @@
530530
// Support for G5 with XYZE destination and IJPQ offsets. Requires ~2666 bytes.
531531
//#define BEZIER_CURVE_SUPPORT
532532

533-
// Moves with fewer segments than this will be ignored and joined with the next movement
534-
#define MIN_SEGMENTS_FOR_MOVE 6
533+
// Moves (or segments) with fewer steps than this will be joined with the next move
534+
#define MIN_STEPS_PER_SEGMENT 6
535535

536536
// @section temperature
537537

Marlin/example_configurations/Felix/Configuration_adv.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -530,8 +530,8 @@
530530
// Support for G5 with XYZE destination and IJPQ offsets. Requires ~2666 bytes.
531531
//#define BEZIER_CURVE_SUPPORT
532532

533-
// Moves with fewer segments than this will be ignored and joined with the next movement
534-
#define MIN_SEGMENTS_FOR_MOVE 6
533+
// Moves (or segments) with fewer steps than this will be joined with the next move
534+
#define MIN_STEPS_PER_SEGMENT 6
535535

536536
// @section temperature
537537

Marlin/example_configurations/Hephestos/Configuration_adv.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -530,8 +530,8 @@
530530
// Support for G5 with XYZE destination and IJPQ offsets. Requires ~2666 bytes.
531531
//#define BEZIER_CURVE_SUPPORT
532532

533-
// Moves with fewer segments than this will be ignored and joined with the next movement
534-
#define MIN_SEGMENTS_FOR_MOVE 6
533+
// Moves (or segments) with fewer steps than this will be joined with the next move
534+
#define MIN_STEPS_PER_SEGMENT 6
535535

536536
// @section temperature
537537

Marlin/example_configurations/Hephestos_2/Configuration_adv.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -530,8 +530,8 @@
530530
// Support for G5 with XYZE destination and IJPQ offsets. Requires ~2666 bytes.
531531
//#define BEZIER_CURVE_SUPPORT
532532

533-
// Moves with fewer segments than this will be ignored and joined with the next movement
534-
#define MIN_SEGMENTS_FOR_MOVE 6
533+
// Moves (or segments) with fewer steps than this will be joined with the next move
534+
#define MIN_STEPS_PER_SEGMENT 6
535535

536536
// @section temperature
537537

Marlin/example_configurations/K8200/Configuration_adv.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -536,8 +536,8 @@
536536
// Support for G5 with XYZE destination and IJPQ offsets. Requires ~2666 bytes.
537537
//#define BEZIER_CURVE_SUPPORT
538538

539-
// Moves with fewer segments than this will be ignored and joined with the next movement
540-
#define MIN_SEGMENTS_FOR_MOVE 3
539+
// Moves (or segments) with fewer steps than this will be joined with the next move
540+
#define MIN_STEPS_PER_SEGMENT 3
541541

542542
// @section temperature
543543

Marlin/example_configurations/K8400/Configuration_adv.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -530,8 +530,8 @@
530530
// Support for G5 with XYZE destination and IJPQ offsets. Requires ~2666 bytes.
531531
//#define BEZIER_CURVE_SUPPORT
532532

533-
// Moves with fewer segments than this will be ignored and joined with the next movement
534-
#define MIN_SEGMENTS_FOR_MOVE 6
533+
// Moves (or segments) with fewer steps than this will be joined with the next move
534+
#define MIN_STEPS_PER_SEGMENT 6
535535

536536
// @section temperature
537537

Marlin/example_configurations/RigidBot/Configuration_adv.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -530,8 +530,8 @@
530530
// Support for G5 with XYZE destination and IJPQ offsets. Requires ~2666 bytes.
531531
//#define BEZIER_CURVE_SUPPORT
532532

533-
// Moves with fewer segments than this will be ignored and joined with the next movement
534-
#define MIN_SEGMENTS_FOR_MOVE 6
533+
// Moves (or segments) with fewer steps than this will be joined with the next move
534+
#define MIN_STEPS_PER_SEGMENT 6
535535

536536
// @section temperature
537537

Marlin/example_configurations/SCARA/Configuration_adv.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -530,8 +530,8 @@
530530
// Support for G5 with XYZE destination and IJPQ offsets. Requires ~2666 bytes.
531531
//#define BEZIER_CURVE_SUPPORT
532532

533-
// Moves with fewer segments than this will be ignored and joined with the next movement
534-
#define MIN_SEGMENTS_FOR_MOVE 6
533+
// Moves (or segments) with fewer steps than this will be joined with the next move
534+
#define MIN_STEPS_PER_SEGMENT 6
535535

536536
// @section temperature
537537

0 commit comments

Comments
 (0)