tmc.py: add track of stallguard

Signed-off-by: Timofey Titovets <nefelim4ag@gmail.com>
This commit is contained in:
Timofey Titovets
2024-05-15 02:37:58 +02:00
committed by KevinOConnor
parent 9c0d0f6a72
commit 317f8c94c8
4 changed files with 102 additions and 0 deletions

View File

@@ -187,6 +187,8 @@ class MCU_TMC_uart_bitbang:
self.analog_mux.activate(instance_id)
msg = self._encode_write(0xf5, addr, reg | 0x80, val)
self.tmcuart_send_cmd.send([self.oid, msg, 0], minclock=minclock)
def get_mcu(self):
return self.mcu
# Lookup a (possibly shared) tmc uart
def lookup_tmc_uart_bitbang(config, max_addr):
@@ -261,3 +263,5 @@ class MCU_TMC_uart:
"Unable to write tmc uart '%s' register %s" % (self.name, reg_name))
def get_tmc_frequency(self):
return self.tmc_frequency
def get_mcu(self):
return self.mcu_uart.get_mcu()