소스 검색

🐛 Fix steps-to-mm with backlash (#23814)

Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
tombrazier 2 년 전
부모
커밋
87c4cd20e5
No account linked to committer's email address
3개의 변경된 파일54개의 추가작업 그리고 13개의 파일을 삭제
  1. 26
    5
      Marlin/src/feature/backlash.cpp
  2. 8
    1
      Marlin/src/feature/backlash.h
  3. 20
    7
      Marlin/src/module/planner.cpp

+ 26
- 5
Marlin/src/feature/backlash.cpp 파일 보기

@@ -29,6 +29,11 @@
29 29
 #include "../module/motion.h"
30 30
 #include "../module/planner.h"
31 31
 
32
+axis_bits_t Backlash::last_direction_bits;
33
+#ifdef BACKLASH_SMOOTHING_MM
34
+  xyz_long_t Backlash::residual_error{0};
35
+#endif
36
+
32 37
 #ifdef BACKLASH_DISTANCE_MM
33 38
   #if ENABLED(BACKLASH_GCODE)
34 39
     xyz_float_t Backlash::distance_mm = BACKLASH_DISTANCE_MM;
@@ -61,7 +66,6 @@ Backlash backlash;
61 66
  */
62 67
 
63 68
 void Backlash::add_correction_steps(const int32_t &da, const int32_t &db, const int32_t &dc, const axis_bits_t dm, block_t * const block) {
64
-  static axis_bits_t last_direction_bits;
65 69
   axis_bits_t changed_dir = last_direction_bits ^ dm;
66 70
   // Ignore direction change unless steps are taken in that direction
67 71
   #if DISABLED(CORE_BACKLASH) || EITHER(MARKFORGED_XY, MARKFORGED_YX)
@@ -91,10 +95,6 @@ void Backlash::add_correction_steps(const int32_t &da, const int32_t &db, const
91 95
     // smoothing distance. Since the computation of this proportion involves a floating point
92 96
     // division, defer computation until needed.
93 97
     float segment_proportion = 0;
94
-
95
-    // Residual error carried forward across multiple segments, so correction can be applied
96
-    // to segments where there is no direction change.
97
-    static xyz_long_t residual_error{0};
98 98
   #else
99 99
     // No direction change, no correction.
100 100
     if (!changed_dir) return;
@@ -153,6 +153,27 @@ void Backlash::add_correction_steps(const int32_t &da, const int32_t &db, const
153 153
   }
154 154
 }
155 155
 
156
+int32_t Backlash::applied_steps(const AxisEnum axis) {
157
+  if (axis >= LINEAR_AXES) return 0;
158
+
159
+  const bool reversing = TEST(last_direction_bits, axis);
160
+
161
+  #ifdef BACKLASH_SMOOTHING_MM
162
+    const int32_t residual_error_axis = residual_error[axis];
163
+  #else
164
+    constexpr int32_t residual_error_axis = 0;
165
+  #endif
166
+
167
+  // At startup it is assumed the last move was forwards. So the applied
168
+  // steps will always be a non-positive number.
169
+
170
+  if (!reversing) return -residual_error_axis;
171
+
172
+  const float f_corr = float(correction) / 255.0f;
173
+  const int32_t full_error_axis = -f_corr * distance_mm[axis] * planner.settings.axis_steps_per_mm[axis];
174
+  return full_error_axis - residual_error_axis;
175
+}
176
+
156 177
 #if ENABLED(MEASURE_BACKLASH_WHEN_PROBING)
157 178
 
158 179
   #include "../module/probe.h"

+ 8
- 1
Marlin/src/feature/backlash.h 파일 보기

@@ -27,6 +27,12 @@
27 27
 constexpr uint8_t all_on = 0xFF, all_off = 0x00;
28 28
 
29 29
 class Backlash {
30
+private:
31
+  static axis_bits_t last_direction_bits;
32
+  #ifdef BACKLASH_SMOOTHING_MM
33
+    static xyz_long_t residual_error;
34
+  #endif
35
+
30 36
 public:
31 37
   #if ENABLED(BACKLASH_GCODE)
32 38
     static xyz_float_t distance_mm;
@@ -71,7 +77,8 @@ public:
71 77
     return has_measurement(X_AXIS) || has_measurement(Y_AXIS) || has_measurement(Z_AXIS);
72 78
   }
73 79
 
74
-  void add_correction_steps(const int32_t &da, const int32_t &db, const int32_t &dc, const axis_bits_t dm, block_t * const block);
80
+  static void add_correction_steps(const int32_t &da, const int32_t &db, const int32_t &dc, const axis_bits_t dm, block_t * const block);
81
+  static int32_t applied_steps(const AxisEnum axis);
75 82
 };
76 83
 
77 84
 extern Backlash backlash;

+ 20
- 7
Marlin/src/module/planner.cpp 파일 보기

@@ -1706,7 +1706,8 @@ void Planner::endstop_triggered(const AxisEnum axis) {
1706 1706
 }
1707 1707
 
1708 1708
 float Planner::triggered_position_mm(const AxisEnum axis) {
1709
-  return stepper.triggered_position(axis) * mm_per_step[axis];
1709
+  const float result = DIFF_TERN(BACKLASH_COMPENSATION, stepper.triggered_position(axis), backlash.applied_steps(axis));
1710
+  return result * mm_per_step[axis];
1710 1711
 }
1711 1712
 
1712 1713
 void Planner::finish_and_disable() {
@@ -1728,8 +1729,8 @@ float Planner::get_axis_position_mm(const AxisEnum axis) {
1728 1729
       // Protect the access to the position.
1729 1730
       const bool was_enabled = stepper.suspend();
1730 1731
 
1731
-      const int32_t p1 = stepper.position(CORE_AXIS_1),
1732
-                    p2 = stepper.position(CORE_AXIS_2);
1732
+      const int32_t p1 = DIFF_TERN(BACKLASH_COMPENSATION, stepper.position(CORE_AXIS_1), backlash.applied_steps(CORE_AXIS_1)),
1733
+                    p2 = DIFF_TERN(BACKLASH_COMPENSATION, stepper.position(CORE_AXIS_2), backlash.applied_steps(CORE_AXIS_2));
1733 1734
 
1734 1735
       if (was_enabled) stepper.wake_up();
1735 1736
 
@@ -1738,7 +1739,7 @@ float Planner::get_axis_position_mm(const AxisEnum axis) {
1738 1739
       axis_steps = (axis == CORE_AXIS_2 ? CORESIGN(p1 - p2) : p1 + p2) * 0.5f;
1739 1740
     }
1740 1741
     else
1741
-      axis_steps = stepper.position(axis);
1742
+      axis_steps = DIFF_TERN(BACKLASH_COMPENSATION, stepper.position(axis), backlash.applied_steps(axis));
1742 1743
 
1743 1744
   #elif EITHER(MARKFORGED_XY, MARKFORGED_YX)
1744 1745
 
@@ -1755,11 +1756,12 @@ float Planner::get_axis_position_mm(const AxisEnum axis) {
1755 1756
       axis_steps = ((axis == CORE_AXIS_1) ? p1 - p2 : p2);
1756 1757
     }
1757 1758
     else
1758
-      axis_steps = stepper.position(axis);
1759
+      axis_steps = DIFF_TERN(BACKLASH_COMPENSATION, stepper.position(axis), backlash.applied_steps(axis));
1759 1760
 
1760 1761
   #else
1761 1762
 
1762 1763
     axis_steps = stepper.position(axis);
1764
+    TERN_(BACKLASH_COMPENSATION, axis_steps -= backlash.applied_steps(axis));
1763 1765
 
1764 1766
   #endif
1765 1767
 
@@ -2841,6 +2843,9 @@ void Planner::buffer_sync_block(TERN_(LASER_SYNCHRONOUS_M106_M107, uint8_t sync_
2841 2843
   block->flag = sync_flag;
2842 2844
 
2843 2845
   block->position = position;
2846
+  #if ENABLED(BACKLASH_COMPENSATION)
2847
+    LOOP_LINEAR_AXES(axis) block->position[axis] += backlash.applied_steps((AxisEnum)axis);
2848
+  #endif
2844 2849
 
2845 2850
   #if BOTH(HAS_FAN, LASER_SYNCHRONOUS_M106_M107)
2846 2851
     FANS_LOOP(i) block->fan_speed[i] = thermalManager.fan_speed[i];
@@ -3108,13 +3113,21 @@ void Planner::set_machine_position_mm(const abce_pos_t &abce) {
3108 3113
       LROUND(abce.k * settings.axis_steps_per_mm[K_AXIS])
3109 3114
     )
3110 3115
   );
3116
+
3111 3117
   if (has_blocks_queued()) {
3112 3118
     //previous_nominal_speed_sqr = 0.0; // Reset planner junction speeds. Assume start from rest.
3113 3119
     //previous_speed.reset();
3114 3120
     buffer_sync_block();
3115 3121
   }
3116
-  else
3117
-    stepper.set_position(position);
3122
+  else {
3123
+    #if ENABLED(BACKLASH_COMPENSATION)
3124
+      abce_long_t stepper_pos = position;
3125
+      LOOP_LINEAR_AXES(axis) stepper_pos[axis] += backlash.applied_steps((AxisEnum)axis);
3126
+      stepper.set_position(stepper_pos);
3127
+    #else
3128
+      stepper.set_position(position);
3129
+    #endif
3130
+  }
3118 3131
 }
3119 3132
 
3120 3133
 void Planner::set_position_mm(const xyze_pos_t &xyze) {

Loading…
취소
저장