diff options
author | Liam Powell <liam@liampwll.com> | 2024-12-03 02:30:57 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-02 13:30:57 -0500 |
commit | 7f89668d6c069deaa02d6479e073d11a2389a948 (patch) | |
tree | ad5b52d0cbdbe8df81f0a02e72d4842fd7c1f19c /klippy/extras | |
parent | aecb29d2b02eed7846204fad9b40b584f79d0095 (diff) | |
download | kutter-7f89668d6c069deaa02d6479e073d11a2389a948.tar.gz kutter-7f89668d6c069deaa02d6479e073d11a2389a948.tar.xz kutter-7f89668d6c069deaa02d6479e073d11a2389a948.zip |
tmc2240: Correct maximum TMC2240 UART address. (#6757)
Signed-off-by: Liam Powell <liam@liampwll.com>
Diffstat (limited to 'klippy/extras')
-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 21c835e2..8816ea2e 100644 --- a/klippy/extras/tmc2240.py +++ b/klippy/extras/tmc2240.py @@ -348,7 +348,7 @@ class TMC2240: if config.get("uart_pin", None) is not None: # use UART for communication self.mcu_tmc = tmc_uart.MCU_TMC_uart(config, Registers, self.fields, - 3, TMC_FREQUENCY) + 7, TMC_FREQUENCY) else: # Use SPI bus for communication self.mcu_tmc = tmc2130.MCU_TMC_SPI(config, Registers, self.fields, |