X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=litex%2Fsoc%2Ftools%2Fremote%2Fcomm_uart.py;h=0f7987d12377ce9f773916c9cb3cd754eca9d4ec;hb=8056653004916b4cea4a7f22b9d814a45d0ee2fe;hp=0f20dd16028dc4f75151e0623a3ca4578dba0c5e;hpb=68707076208e8ac2ed44d580959ba36b9bc25d01;p=litex.git diff --git a/litex/soc/tools/remote/comm_uart.py b/litex/soc/tools/remote/comm_uart.py index 0f20dd16..0f7987d1 100644 --- a/litex/soc/tools/remote/comm_uart.py +++ b/litex/soc/tools/remote/comm_uart.py @@ -45,7 +45,7 @@ class CommUART: for i in range(length_int): value = int.from_bytes(self._read(4), "big") if self.debug: - print("read {:08x} @ {:08x}".format(data, addr + 4*i)) + print("read {:08x} @ {:08x}".format(value, addr + 4*i)) if length is None: return value data.append(value)