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

Page 264: Description, Example, Get_insystem_source_probe_instance_info –134

Advertising
background image

3–134

Chapter 3: Tcl Packages & Commands

insystem_source_probe

Quartus II Scripting Reference Manual

© July 2013

Altera Corporation

get_insystem_source_probe_instance_info

Usage

get_insystem_source_probe_instance_info -device_name <device name> -hardware_name
<hardware name>

Options

-device_name <device name>: Name of the device programmed with the design that includes
In-System Sources and Probes instances

-hardware_name <hardware name>: Name of the hardware that connects to the JTAG chain

Description

Returns a list of the available In-System Sources and Probes instances and their configuration.
{instance_index source_width probe_width instance_name}

Example:

{0 4 3 src1} {1 5 5 src2} {2 3 6 none}

Example

# List information of all In-System Sources and Probes instances
puts "Information on all In-System Sources and Probes instances:"
puts "index,source_width,probe_width,name"
foreach instance \
[get_insystem_source_probe_instance_info -hardware_name "USB-Blaster \
\[USB-0\]" -device_name "@1: EP1S25/_HARDCOPY_FPGA_PROTOTYPE \
(0x020030DD)"] {

puts "[lindex $instance 0],[lindex $instance 1],[lindex $instance \
2],[lindex $instance 3]"

}

Advertising