Skip to content

Commit

Permalink
tmc2240: Correct maximum TMC2240 UART address. (#6757) (#454)
Browse files Browse the repository at this point in the history
Signed-off-by: Liam Powell <[email protected]>
Co-authored-by: Liam Powell <[email protected]>
  • Loading branch information
rogerlz and liampwll authored Dec 5, 2024
1 parent 22022ca commit b2b6c6b
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 @@ -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
Expand Down

0 comments on commit b2b6c6b

Please sign in to comment.