mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
litex_client: remove duplicate read
This commit is contained in:
parent
5e667f17d7
commit
4eed62143c
1 changed files with 1 additions and 1 deletions
|
@ -317,7 +317,7 @@ def run_gui(host, csr_csv, port):
|
|||
# CSR Update.
|
||||
for name, reg in bus.regs.__dict__.items():
|
||||
value = reg.read()
|
||||
dpg.set_value(item=name, value=f"0x{reg.read():x}")
|
||||
dpg.set_value(item=name, value=f"0x{value():x}")
|
||||
|
||||
# XADC Update.
|
||||
if with_xadc:
|
||||
|
|
Loading…
Reference in a new issue