Intel® Quartus® Prime Pro Edition User Guide: Scripting

ID 683432
Date 4/03/2023
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.11.12. get_connection_report_info (::quartus::external_memif_toolkit)

The following table displays information for the get_connection_report_info Tcl command:

Tcl Package and Version

Belongs to ::quartus::external_memif_toolkit

Syntax get_connection_report_info [-h | -help] [-long_help] -id <name> [-name] -report_type <name>
Arguments -h | -help Short help
-long_help Long help with examples and possible return values
-id <name> The connection ID to communicate with
-name Queries the name of the report
-report_type <name> The report type to generate
Description
	Queries info about a report type.
Example Usage
	project_open dut

	initialize_connections

	set hw_name [lindex [get_hardware_names] 0]
	set dev_name [lindex [get_device_names -hardware_name $hw_name] 0]
	link_project_to_device -hardware_name $hw_name -device_name $dev_name -sof_file dut.sof

	foreach conn [get_connections] {
		puts "Connection : $conn"
		foreach rpt [get_connection_report_types -id $conn] {
			puts "   Report : $rpt"
			puts "   Report name : [get_connection_report_info -id $conn -report_type $rpt -name]"
		}
	}

	terminate_connections

	project_close
Return Value Code Name Code String Return
TCL_OK 0 INFO: Operation successful
TCL_ERROR 1 ERROR: The specified connection ID <string> is illegal. Please specify a valid connection ID.
TCL_ERROR 1 ERROR: The specified report type <string> is illegal. The legal report types are: <string> .
TCL_ERROR 1 ERROR: The currently opened project has not been linked to a device. Run link_project_to_device to link a project to a device.
TCL_ERROR 1 ERROR: Toolkit has not been initialized. Use initialize_connections to initialize the toolkit.