update litescope

This commit is contained in:
Florent Kermarrec 2017-06-23 09:14:19 +02:00
parent ad9ecdbd5e
commit 5bc6e879ae

View file

@ -5,20 +5,16 @@ from litex.soc.tools.remote import RemoteClient
wb = RemoteClient() wb = RemoteClient()
wb.open() wb.open()
logic_analyzer = LiteScopeLogicAnalyzerDriver(wb.regs, "logic_analyzer", debug=True) analyzer = LiteScopeLogicAnalyzerDriver(wb.regs, "logic_analyzer", debug=True)
# # # # # #
conditions = {} conditions = {}
logic_analyzer.configure_term(port=0, cond=conditions) analyzer.configure_trigger(cond={})
logic_analyzer.configure_sum("term")
# run logic analyzer # run logic analyzer
logic_analyzer.run(offset=2048, length=4000) analyzer.run(offset=2048, length=4000)
analyzer.wait_done()
while not logic_analyzer.done(): analyzer.upload()
pass analyzer.save("dump.vcd")
logic_analyzer.upload()
logic_analyzer.save("dump.vcd")
# # # # # #