Intel® Quartus® Prime Pro Edition User Guide: Debug Tools
A newer version of this document is available. Customers should click here to go to the newest version.
Visible to Intel only — GUID: mwh1410384829722
Ixiasoft
Visible to Intel only — GUID: mwh1410384829722
Ixiasoft
2.14.2. Data Capture from the Command Line
To execute a Tcl script containing Signal Tap logic analyzer Tcl commands, use:
quartus_stp -t <Tcl file>
Continuously Capturing Data
This excerpt shows commands you can use to continuously capture data. Once the capture meets trigger condition, the Signal Tap logic analyzer starts the capture and stores the data in the data log.
# Open Signal Tap session open_session -name stp1.stp ### Start acquisition of instances auto_signaltap_0 and ### auto_signaltap_1 at the same time # Calling run_multiple_end starts all instances run_multiple_start run -instance auto_signaltap_0 -signal_set signal_set_1 -trigger \ trigger_1 -data_log log_1 -timeout 5 run -instance auto_signaltap_1 -signal_set signal_set_1 -trigger \ trigger_1 -data_log log_1 -timeout 5 run_multiple_end # Close Signal Tap session close_session