write_connection_target_report (::quartus::external_memif_toolkit)
The following table displays information for the write_connection_target_report Tcl command:
| Tcl Package and Version |
Belongs to ::quartus::external_memif_toolkit 1.0 |
|||
| Syntax | write_connection_target_report [-h | -help] [-long_help] -file <name> -id <name> | |||
| Arguments | -h | -help | Short help | ||
| -long_help | Long help with examples and possible return values | |||
| -file <name> | File name of report to write | |||
| -id <name> | The connection ID to communicate with | |||
| Description |
Writes the reports for the given connection target to a filename. |
|||
| 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 set conn [lindex [get_connections] 0] write_connection_target_report -id $conn -file report.rpt 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: No reports for connection ID <string> have been generated. Please run create_report_for_target before writing reports to file. | ||
| TCL_ERROR | 1 | ERROR: Toolkit has not been initialized. Use initialize_connections to initialize the toolkit. | ||