Browse Source

Update default/Configuration_adv.h

Scott Lahteine 5 years ago
parent
commit
f39d025a80
1 changed files with 7 additions and 7 deletions
  1. 7
    7
      config/default/Configuration_adv.h

+ 7
- 7
config/default/Configuration_adv.h View File

1732
   //#define E5_CS_PIN         -1
1732
   //#define E5_CS_PIN         -1
1733
 
1733
 
1734
   /**
1734
   /**
1735
-   * Use software SPI for TMC2130.
1736
    * Software option for SPI driven drivers (TMC2130, TMC2160, TMC2660, TMC5130 and TMC5160).
1735
    * Software option for SPI driven drivers (TMC2130, TMC2160, TMC2660, TMC5130 and TMC5160).
1737
    * The default SW SPI pins are defined the respective pins files,
1736
    * The default SW SPI pins are defined the respective pins files,
1738
    * but you can override or define them here.
1737
    * but you can override or define them here.
1774
   //#define SOFTWARE_DRIVER_ENABLE
1773
   //#define SOFTWARE_DRIVER_ENABLE
1775
 
1774
 
1776
   /**
1775
   /**
1777
-   * TMC2130, TMC2160, TMC2208, TMC5130 and TMC5160 only
1776
+   * TMC2130, TMC2160, TMC2208, TMC2209, TMC5130 and TMC5160 only
1778
    * Use Trinamic's ultra quiet stepping mode.
1777
    * Use Trinamic's ultra quiet stepping mode.
1779
    * When disabled, Marlin will use spreadCycle stepping mode.
1778
    * When disabled, Marlin will use spreadCycle stepping mode.
1780
    */
1779
    */
1800
 
1799
 
1801
   /**
1800
   /**
1802
    * Monitor Trinamic drivers for error conditions,
1801
    * Monitor Trinamic drivers for error conditions,
1803
-   * like overtemperature and short to ground. TMC2208 requires hardware serial.
1802
+   * like overtemperature and short to ground.
1804
    * In the case of overtemperature Marlin can decrease the driver current until error condition clears.
1803
    * In the case of overtemperature Marlin can decrease the driver current until error condition clears.
1805
    * Other detected conditions can be used to stop the current print.
1804
    * Other detected conditions can be used to stop the current print.
1806
    * Relevant g-codes:
1805
    * Relevant g-codes:
1818
   #endif
1817
   #endif
1819
 
1818
 
1820
   /**
1819
   /**
1821
-   * TMC2130, TMC2160, TMC2208, TMC5130 and TMC5160 only
1820
+   * TMC2130, TMC2160, TMC2208, TMC2209, TMC5130 and TMC5160 only
1822
    * The driver will switch to spreadCycle when stepper speed is over HYBRID_THRESHOLD.
1821
    * The driver will switch to spreadCycle when stepper speed is over HYBRID_THRESHOLD.
1823
    * This mode allows for faster movements at the expense of higher noise levels.
1822
    * This mode allows for faster movements at the expense of higher noise levels.
1824
    * STEALTHCHOP_(XY|Z|E) must be enabled to use HYBRID_THRESHOLD.
1823
    * STEALTHCHOP_(XY|Z|E) must be enabled to use HYBRID_THRESHOLD.
1841
   #define E5_HYBRID_THRESHOLD     30
1840
   #define E5_HYBRID_THRESHOLD     30
1842
 
1841
 
1843
   /**
1842
   /**
1844
-   * TMC2130, TMC2160, TMC2660, TMC5130, and TMC5160 only
1843
+   * TMC2130, TMC2160, TMC2209, TMC2660, TMC5130, and TMC5160 only
1845
    * Use StallGuard2 to sense an obstacle and trigger an endstop.
1844
    * Use StallGuard2 to sense an obstacle and trigger an endstop.
1846
    * Connect the stepper driver's DIAG1 pin to the X/Y endstop pin.
1845
    * Connect the stepper driver's DIAG1 pin to the X/Y endstop pin.
1847
    * X, Y, and Z homing will always be done in spreadCycle mode.
1846
    * X, Y, and Z homing will always be done in spreadCycle mode.
1853
    * It is advised to set X/Y/Z_HOME_BUMP_MM to 0.
1852
    * It is advised to set X/Y/Z_HOME_BUMP_MM to 0.
1854
    * M914 X/Y/Z to live tune the setting
1853
    * M914 X/Y/Z to live tune the setting
1855
    */
1854
    */
1856
-  //#define SENSORLESS_HOMING // TMC2130 only
1855
+  //#define SENSORLESS_HOMING // StallGuard capable drivers only
1857
 
1856
 
1858
   /**
1857
   /**
1859
    * Use StallGuard2 to probe the bed with the nozzle.
1858
    * Use StallGuard2 to probe the bed with the nozzle.
1861
    * CAUTION: This could cause damage to machines that use a lead screw or threaded rod
1860
    * CAUTION: This could cause damage to machines that use a lead screw or threaded rod
1862
    *          to move the Z axis. Take extreme care when attempting to enable this feature.
1861
    *          to move the Z axis. Take extreme care when attempting to enable this feature.
1863
    */
1862
    */
1864
-  //#define SENSORLESS_PROBING // TMC2130 only
1863
+  //#define SENSORLESS_PROBING // StallGuard capable drivers only
1865
 
1864
 
1866
   #if EITHER(SENSORLESS_HOMING, SENSORLESS_PROBING)
1865
   #if EITHER(SENSORLESS_HOMING, SENSORLESS_PROBING)
1866
+    // TMC2209: 0...255. TMC2130: -64...63
1867
     #define X_STALL_SENSITIVITY  8
1867
     #define X_STALL_SENSITIVITY  8
1868
     #define Y_STALL_SENSITIVITY  8
1868
     #define Y_STALL_SENSITIVITY  8
1869
     //#define Z_STALL_SENSITIVITY  8
1869
     //#define Z_STALL_SENSITIVITY  8

Loading…
Cancel
Save