Intel® Quartus® Prime Pro Edition User Guide: Scripting

ID 683432
Date 9/26/2022
Public

A newer version of this document is available. Customers should click here to go to the newest version.

Document Table of Contents

4.1.17.2. get_insystem_source_probe_instance_info (::quartus::insystem_source_probe)

The following table displays information for the get_insystem_source_probe_instance_info Tcl command:

Tcl Package and Version

Belongs to ::quartus::insystem_source_probe

Syntax get_insystem_source_probe_instance_info [-h | -help] [-long_help] -device_name <device name> -hardware_name <hardware name>
Arguments -h | -help Short help
-long_help Long help with examples and possible return values
-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 Usage
# 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]"
}
Return Value Code Name Code String Return
TCL_OK 0 INFO: Operation successful
TCL_ERROR 1 ERROR: The specified device is not found.
TCL_ERROR 1 ERROR: The specified hardware is not found.
TCL_ERROR 1 ERROR: An internal Tcl interpreter error occurred.
TCL_ERROR 1 ERROR: JTAG communication error detected. Errors can be caused by hardware failure or poor signal integrity in the JTAG chain.
TCL_ERROR 1 ERROR: No In-System Sources and Probes instance was found.
TCL_ERROR 1 ERROR: There is already an active In-System Sources and Probes session started. Unable to start another session.
TCL_ERROR 1 ERROR: The device is locked by another application.