diff options
author | Timofey Titovets <nefelim4ag@gmail.com> | 2024-05-19 01:52:36 +0200 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2024-05-21 20:31:23 -0400 |
commit | b6a0063235dd58bc9c1bb5767e87e09c9927f39a (patch) | |
tree | 6cbb94895924e716cd1cf842ac9008d172e098fe /klippy/extras/tmc2240.py | |
parent | 4a92727eab61349f2e24fd4296c7fb06740dffe9 (diff) | |
download | kutter-b6a0063235dd58bc9c1bb5767e87e09c9927f39a.tar.gz kutter-b6a0063235dd58bc9c1bb5767e87e09c9927f39a.tar.xz kutter-b6a0063235dd58bc9c1bb5767e87e09c9927f39a.zip |
tmc5160: csactual -> cs_actual
Correct the name of "cs_actual" and correct the size on tmc5160.
Signed-off-by: Timofey Titovets <nefelim4ag@gmail.com>
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/extras/tmc2240.py')
-rw-r--r-- | klippy/extras/tmc2240.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/tmc2240.py b/klippy/extras/tmc2240.py index 1e2a4915..21c835e2 100644 --- a/klippy/extras/tmc2240.py +++ b/klippy/extras/tmc2240.py @@ -95,7 +95,7 @@ Fields["DRV_STATUS"] = { "s2vsb": 0x01 << 13, "stealth": 0x01 << 14, "fsactive": 0x01 << 15, - "csactual": 0x1F << 16, + "cs_actual": 0x1F << 16, "stallguard": 0x01 << 24, "ot": 0x01 << 25, "otpw": 0x01 << 26, |