cli: enable CSV export from logic analyzer capture

This commit is contained in:
Fischer Moseley 2024-07-17 18:50:48 -07:00
parent 67103ad70e
commit f687f071dd
1 changed files with 2 additions and 0 deletions

View File

@ -97,6 +97,8 @@ def capture(config_path, logic_analyzer_name, export_paths):
for path in export_paths:
if ".vcd" in path:
cap.export_vcd(path)
elif ".csv" in path:
cap.export_csv(path)
elif ".v" in path:
cap.export_playback_verilog(path)
else: