Run_multiple_end, Usage, Options – Altera Quartus II Scripting User Manual

Page 601: Description, Example, Run_multiple_end –471

Advertising
background image

Chapter 3: Tcl Packages & Commands

3–471

stp

© July 2013

Altera Corporation

Quartus II Scripting Reference Manual

run_multiple_end

Usage

run_multiple_end

Options

None

Description

Defines the end of a set of "run" commands. This command is used when multiple instances of data
acquisition are started simultaneously. Add "run_multiple_start" before the set of "run" commands that
specify data acquisition. Add this command after the set of commands.

If "run_multiple_end" is not included, the "run" commands do not execute.

Example

#opens signaltap session
open_session -name stp1.stp

#start acquisition of instance auto_signaltap_0 and auto_signaltap_1 at
# the same time
#calling run_multiple_end will start all instances run after
# run_multiple_start call
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 signaltap session
close_session

Advertising