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

Page 602: Description, Example, Run_multiple_start –472

Advertising
background image

3–472

Chapter 3: Tcl Packages & Commands

stp

Quartus II Scripting Reference Manual

© July 2013

Altera Corporation

run_multiple_start

Usage

run_multiple_start

Options

None

Description

Defines the start of a set of "run" commands. This command is used when multiple instances of data
acquisition are started simultaneously. Add this command before the set of "run" commands that specify
data acquisition. Add "run_multiple_end" 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