mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-07-24 23:24:01 -06:00
tmc5160: allow changing the globalscaler at runtime
Previously, the globalscaler was calculated during the config parsing and set to a fixed value. If the current was changed for any reason after the initialization, only IRUN and IHOLD would be changed. This however caused issues: - If the new current was lower, then the resolution of the possible current values would be low since there are only 32 IRUN/IHOLD steps. - If the new current was higher, it wouldn't actually work since IRUN and IHOLD are capped at 31, so it wouldn't be possible to increase the current without increasing globalscaler. With this commit, the globalscaler is recalculated whenever necessary in order to ensure the correct range of IRUN/IHOLD is used. Signed-off-by: Alex Voinea <voinea.dragos.alexandru@gmail.com>
This commit is contained in:
parent
e6307ca9fe
commit
bee1c67416
3 changed files with 24 additions and 11 deletions
|
@ -1226,7 +1226,10 @@ turned off then back on.
|
|||
#### SET_TMC_CURRENT
|
||||
`SET_TMC_CURRENT STEPPER=<name> CURRENT=<amps> HOLDCURRENT=<amps>`:
|
||||
This will adjust the run and hold currents of the TMC driver.
|
||||
(HOLDCURRENT is not applicable to tmc2660 drivers.)
|
||||
`HOLDCURRENT` is not applicable to tmc2660 drivers.
|
||||
When used on a driver which has the `globalscaler` field (tmc5160 and tmc2240),
|
||||
if StealthChop2 is used, the stepper must be held at standstill for >130ms so
|
||||
that the driver executes the AT#1 calibration.
|
||||
|
||||
#### SET_TMC_FIELD
|
||||
`SET_TMC_FIELD STEPPER=<name> FIELD=<field> VALUE=<value>`: This will
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue