From b2b6c6b68d32337ced615104e3617609516ddf11 Mon Sep 17 00:00:00 2001 From: Rogerio Goncalves Date: Thu, 5 Dec 2024 19:55:00 +0000 Subject: [PATCH] tmc2240: Correct maximum TMC2240 UART address. (#6757) (#454) Signed-off-by: Liam Powell Co-authored-by: Liam Powell --- klippy/extras/tmc2240.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/klippy/extras/tmc2240.py b/klippy/extras/tmc2240.py index 3c8665a27..be32eefe3 100644 --- a/klippy/extras/tmc2240.py +++ b/klippy/extras/tmc2240.py @@ -381,7 +381,7 @@ def __init__(self, config): 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 + config, Registers, self.fields, 7, TMC_FREQUENCY ) else: # Use SPI bus for communication