diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-03-08 11:25:19 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-03-08 11:25:19 -0500 |
commit | 563bc37073d499b438d735ccc4a372d647bcdbf8 (patch) | |
tree | 59308dfb35d5b17ffe217af31c63d09299acfa91 /klippy/extras/tmc2208.py | |
parent | 9c0cf829ee589400e738a337e12b0bd071320769 (diff) | |
download | kutter-563bc37073d499b438d735ccc4a372d647bcdbf8.tar.gz kutter-563bc37073d499b438d735ccc4a372d647bcdbf8.tar.xz kutter-563bc37073d499b438d735ccc4a372d647bcdbf8.zip |
tmc2130: Rename driver_BLANK_TIME_SELECT to driver_TBL
Use the field names from the trinamic specification. This makes the
field similar to all the other driver_XXX config options.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/extras/tmc2208.py')
-rw-r--r-- | klippy/extras/tmc2208.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/tmc2208.py b/klippy/extras/tmc2208.py index 51971b0a..a6f954c5 100644 --- a/klippy/extras/tmc2208.py +++ b/klippy/extras/tmc2208.py @@ -295,7 +295,7 @@ class TMC2208: set_config_field(config, "toff", 3) set_config_field(config, "hstrt", 5) set_config_field(config, "hend", 0) - set_config_field(config, "TBL", 2, "driver_BLANK_TIME_SELECT") + set_config_field(config, "TBL", 2) set_config_field(config, "intpol", True, "interpolate") set_config_field(config, "IHOLDDELAY", 8) set_config_field(config, "TPOWERDOWN", 20) |