Skip to content

Commit

Permalink
tmc2240: Correct maximum TMC2240 UART address. (#6757)
Browse files Browse the repository at this point in the history
Signed-off-by: Liam Powell <[email protected]>
  • Loading branch information
liampwll authored Dec 2, 2024
1 parent aecb29d commit 7f89668
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion klippy/extras/tmc2240.py
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,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)
7, TMC_FREQUENCY)
else:
# Use SPI bus for communication
self.mcu_tmc = tmc2130.MCU_TMC_SPI(config, Registers, self.fields,
Expand Down

0 comments on commit 7f89668

Please sign in to comment.