diff options
author | Timofey Titovets <nefelim4ag@gmail.com> | 2024-05-15 02:37:58 +0200 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2025-07-12 16:17:22 -0400 |
commit | 317f8c94c8bf83af4551fe57f1f8d7395a14773d (patch) | |
tree | 257ccad995d31e13a8f10894ac03f8f859832216 /klippy/extras/tmc2660.py | |
parent | 9c0d0f6a72897dd8eea8a95a7fabcc3c28f3a12c (diff) | |
download | kutter-317f8c94c8bf83af4551fe57f1f8d7395a14773d.tar.gz kutter-317f8c94c8bf83af4551fe57f1f8d7395a14773d.tar.xz kutter-317f8c94c8bf83af4551fe57f1f8d7395a14773d.zip |
tmc.py: add track of stallguard
Signed-off-by: Timofey Titovets <nefelim4ag@gmail.com>
Diffstat (limited to 'klippy/extras/tmc2660.py')
-rw-r--r-- | klippy/extras/tmc2660.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/klippy/extras/tmc2660.py b/klippy/extras/tmc2660.py index 7fd01546..c97f1eff 100644 --- a/klippy/extras/tmc2660.py +++ b/klippy/extras/tmc2660.py @@ -231,6 +231,8 @@ class MCU_TMC2660_SPI: self.spi.spi_send(msg, minclock) def get_tmc_frequency(self): return None + def get_mcu(self): + return self.spi.get_mcu() ###################################################################### |