24 lines
522 B
Python
24 lines
522 B
Python
#!/usr/bin/env python3
|
|
|
|
# This file is Copyright (c) 2015-2018 Florent Kermarrec <florent@enjoy-digital.fr>
|
|
# License: BSD
|
|
|
|
from litex 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() |