Quellcode durchsuchen

Leave Hybrid Threshold as-is for now

Reverting 253ee0c407
Scott Lahteine vor 3 Jahren
Ursprung
Commit
bca4652c5e
2 geänderte Dateien mit 23 neuen und 29 gelöschten Zeilen
  1. 13
    22
      Marlin/src/feature/tmc_util.h
  2. 10
    7
      Marlin/src/module/stepper/trinamic.cpp

+ 13
- 22
Marlin/src/feature/tmc_util.h Datei anzeigen

@@ -120,15 +120,12 @@ class TMCMarlin : public TMC, public TMCStorage<AXIS_LETTER, DRIVER_ID> {
120 120
       uint32_t get_pwm_thrs() {
121 121
         return _tmc_thrs(this->microsteps(), this->TPWMTHRS(), planner.settings.axis_steps_per_mm[AXIS_ID]);
122 122
       }
123
+      void set_pwm_thrs(const uint32_t thrs) {
124
+        TMC::TPWMTHRS(_tmc_thrs(this->microsteps(), thrs, planner.settings.axis_steps_per_mm[AXIS_ID]));
125
+        TERN_(HAS_LCD_MENU, this->stored.hybrid_thrs = thrs);
126
+      }
123 127
     #endif
124 128
 
125
-    void set_pwm_thrs(const uint32_t thrs) {
126
-      TMC::TPWMTHRS(_tmc_thrs(this->microsteps(), thrs, planner.settings.axis_steps_per_mm[AXIS_ID]));
127
-      #if BOTH(HYBRID_THRESHOLD, HAS_LCD_MENU)
128
-        this->stored.hybrid_thrs = thrs;
129
-      #endif
130
-    }
131
-
132 129
     #if USE_SENSORLESS
133 130
       inline int16_t homing_threshold() { return TMC::sgt(); }
134 131
       void homing_threshold(int16_t sgt_val) {
@@ -188,21 +185,19 @@ class TMCMarlin<TMC2208Stepper, AXIS_LETTER, DRIVER_ID, AXIS_ID> : public TMC220
188 185
       inline bool toggle_stepping_mode()           { set_stealthChop(!this->stored.stealthChop_enabled); return get_stealthChop(); }
189 186
     #endif
190 187
 
191
-    void set_pwm_thrs(const uint32_t thrs) {
192
-      TMC2208Stepper::TPWMTHRS(_tmc_thrs(this->microsteps(), thrs, planner.settings.axis_steps_per_mm[AXIS_ID]));
193
-      #if BOTH(HYBRID_THRESHOLD, HAS_LCD_MENU)
194
-        this->stored.hybrid_thrs = thrs;
195
-      #endif
196
-    }
197
-
198 188
     #if ENABLED(HYBRID_THRESHOLD)
199 189
       uint32_t get_pwm_thrs() {
200 190
         return _tmc_thrs(this->microsteps(), this->TPWMTHRS(), planner.settings.axis_steps_per_mm[AXIS_ID]);
201 191
       }
192
+      void set_pwm_thrs(const uint32_t thrs) {
193
+        TMC2208Stepper::TPWMTHRS(_tmc_thrs(this->microsteps(), thrs, planner.settings.axis_steps_per_mm[AXIS_ID]));
194
+        TERN_(HAS_LCD_MENU, this->stored.hybrid_thrs = thrs);
195
+      }
202 196
     #endif
203 197
 
204 198
     #if HAS_LCD_MENU
205 199
       inline void refresh_stepper_current() { rms_current(this->val_mA); }
200
+
206 201
       #if ENABLED(HYBRID_THRESHOLD)
207 202
         inline void refresh_hybrid_thrs() { set_pwm_thrs(this->stored.hybrid_thrs); }
208 203
       #endif
@@ -242,15 +237,11 @@ class TMCMarlin<TMC2209Stepper, AXIS_LETTER, DRIVER_ID, AXIS_ID> : public TMC220
242 237
       uint32_t get_pwm_thrs() {
243 238
         return _tmc_thrs(this->microsteps(), this->TPWMTHRS(), planner.settings.axis_steps_per_mm[AXIS_ID]);
244 239
       }
240
+      void set_pwm_thrs(const uint32_t thrs) {
241
+        TMC2209Stepper::TPWMTHRS(_tmc_thrs(this->microsteps(), thrs, planner.settings.axis_steps_per_mm[AXIS_ID]));
242
+        TERN_(HAS_LCD_MENU, this->stored.hybrid_thrs = thrs);
243
+      }
245 244
     #endif
246
-
247
-    void set_pwm_thrs(const uint32_t thrs) {
248
-      TMC2209Stepper::TPWMTHRS(_tmc_thrs(this->microsteps(), thrs, planner.settings.axis_steps_per_mm[AXIS_ID]));
249
-      #if BOTH(HYBRID_THRESHOLD, HAS_LCD_MENU)
250
-        this->stored.hybrid_thrs = thrs;
251
-      #endif
252
-    }
253
-
254 245
     #if USE_SENSORLESS
255 246
       inline int16_t homing_threshold() { return TMC2209Stepper::SGTHRS(); }
256 247
       void homing_threshold(int16_t sgt_val) {

+ 10
- 7
Marlin/src/module/stepper/trinamic.cpp Datei anzeigen

@@ -158,7 +158,7 @@ enum StealthIndex : uint8_t { STEALTH_AXIS_XY, STEALTH_AXIS_Z, STEALTH_AXIS_E };
158 158
     pwmconf.pwm_ampl = 180;
159 159
     st.PWMCONF(pwmconf.sr);
160 160
 
161
-    st.set_pwm_thrs(TERN0(HYBRID_THRESHOLD, hyb_thrs)); UNUSED(hyb_thrs);
161
+    TERN(HYBRID_THRESHOLD, st.set_pwm_thrs(hyb_thrs), UNUSED(hyb_thrs));
162 162
 
163 163
     st.GSTAT(); // Clear GSTAT
164 164
   }
@@ -196,7 +196,7 @@ enum StealthIndex : uint8_t { STEALTH_AXIS_XY, STEALTH_AXIS_Z, STEALTH_AXIS_E };
196 196
     pwmconf.pwm_ofs = 36;
197 197
     st.PWMCONF(pwmconf.sr);
198 198
 
199
-    st.set_pwm_thrs(TERN0(HYBRID_THRESHOLD, hyb_thrs)); UNUSED(hyb_thrs);
199
+    TERN(HYBRID_THRESHOLD, st.set_pwm_thrs(hyb_thrs), UNUSED(hyb_thrs));
200 200
 
201 201
     st.GSTAT(); // Clear GSTAT
202 202
   }
@@ -517,7 +517,7 @@ enum StealthIndex : uint8_t { STEALTH_AXIS_XY, STEALTH_AXIS_Z, STEALTH_AXIS_E };
517 517
     pwmconf.pwm_ofs = 36;
518 518
     st.PWMCONF(pwmconf.sr);
519 519
 
520
-    st.set_pwm_thrs(TERN0(HYBRID_THRESHOLD, hyb_thrs)); UNUSED(hyb_thrs);
520
+    TERN(HYBRID_THRESHOLD, st.set_pwm_thrs(hyb_thrs), UNUSED(hyb_thrs));
521 521
 
522 522
     st.GSTAT(0b111); // Clear
523 523
     delay(200);
@@ -559,7 +559,7 @@ enum StealthIndex : uint8_t { STEALTH_AXIS_XY, STEALTH_AXIS_Z, STEALTH_AXIS_E };
559 559
     pwmconf.pwm_ofs = 36;
560 560
     st.PWMCONF(pwmconf.sr);
561 561
 
562
-    st.set_pwm_thrs(TERN0(HYBRID_THRESHOLD, hyb_thrs)); UNUSED(hyb_thrs);
562
+    TERN(HYBRID_THRESHOLD, st.set_pwm_thrs(hyb_thrs), UNUSED(hyb_thrs));
563 563
 
564 564
     st.GSTAT(0b111); // Clear
565 565
     delay(200);
@@ -617,7 +617,7 @@ enum StealthIndex : uint8_t { STEALTH_AXIS_XY, STEALTH_AXIS_Z, STEALTH_AXIS_E };
617 617
     pwmconf.pwm_ampl = 180;
618 618
     st.PWMCONF(pwmconf.sr);
619 619
 
620
-    st.set_pwm_thrs(TERN0(HYBRID_THRESHOLD, hyb_thrs)); UNUSED(hyb_thrs);
620
+    TERN(HYBRID_THRESHOLD, st.set_pwm_thrs(hyb_thrs), UNUSED(hyb_thrs));
621 621
 
622 622
     st.GSTAT(); // Clear GSTAT
623 623
   }
@@ -655,8 +655,11 @@ enum StealthIndex : uint8_t { STEALTH_AXIS_XY, STEALTH_AXIS_Z, STEALTH_AXIS_E };
655 655
     pwmconf.pwm_ofs = 36;
656 656
     st.PWMCONF(pwmconf.sr);
657 657
 
658
-    st.set_pwm_thrs(TERN0(HYBRID_THRESHOLD, hyb_thrs)); UNUSED(hyb_thrs);
659
-
658
+    #if ENABLED(HYBRID_THRESHOLD)
659
+      st.set_pwm_thrs(hyb_thrs);
660
+    #else
661
+      UNUSED(hyb_thrs);
662
+    #endif
660 663
     st.GSTAT(); // Clear GSTAT
661 664
   }
662 665
 #endif // TMC5160

Laden…
Abbrechen
Speichern