21 lines
439 B
Python
21 lines
439 B
Python
#!/usr/bin/env python3
|
|
|
|
from litex.soc.tools.remote import RemoteClient
|
|
|
|
wb = RemoteClient()
|
|
wb.open()
|
|
|
|
# # #
|
|
|
|
from litescope.software.driver.analyzer import LiteScopeAnalyzerDriver
|
|
analyzer = LiteScopeAnalyzerDriver(wb.regs, "analyzer", debug=True)
|
|
analyzer.configure_trigger(cond={})
|
|
analyzer.configure_subsampler(1)
|
|
analyzer.run(offset=128, length=256)
|
|
analyzer.wait_done()
|
|
analyzer.upload()
|
|
analyzer.save("dump.vcd")
|
|
|
|
# # #
|
|
|
|
wb.close() |