diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2021-05-09 09:02:43 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2021-05-09 09:02:43 -0400 |
commit | 8eef1e214639284e386e0d833b6e9c092f9db53e (patch) | |
tree | 0bd5d61e7e01e64acfd49ef2c5b2908ece2b0e6d /config/sample-bigtreetech-exp-mot.cfg | |
parent | 1ed67120cde08dc32262d4adc04ff1f693a448d8 (diff) | |
download | kutter-8eef1e214639284e386e0d833b6e9c092f9db53e.tar.gz kutter-8eef1e214639284e386e0d833b6e9c092f9db53e.tar.xz kutter-8eef1e214639284e386e0d833b6e9c092f9db53e.zip |
config: Use "stealthchop_threshold: 999999" if set
Change all the example config files to use either 0 or 999999 for
stealthchop_threshold (as is recommended in the TMC_Drivers.md
document).
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'config/sample-bigtreetech-exp-mot.cfg')
-rw-r--r-- | config/sample-bigtreetech-exp-mot.cfg | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/sample-bigtreetech-exp-mot.cfg b/config/sample-bigtreetech-exp-mot.cfg index 1e93e8a4..c7d8357d 100644 --- a/config/sample-bigtreetech-exp-mot.cfg +++ b/config/sample-bigtreetech-exp-mot.cfg @@ -35,7 +35,7 @@ uart_pin: EXP1_6 microsteps: 16 run_current: 0.800 hold_current: 0.500 -stealthchop_threshold: 250 +stealthchop_threshold: 999999 diag_pin: EXP1_5 [tmc2209 stepper_2] @@ -43,7 +43,7 @@ uart_pin: EXP1_4 microsteps: 16 run_current: 0.800 hold_current: 0.500 -stealthchop_threshold: 250 +stealthchop_threshold: 999999 diag_pin: EXP1_3 [tmc2209 stepper_3] @@ -51,5 +51,5 @@ uart_pin: EXP1_2 microsteps: 16 run_current: 0.650 hold_current: 0.450 -stealthchop_threshold: 30 +stealthchop_threshold: 999999 diag_pin: EXP1_1 |