System Console and Toolkit Tcl Command Reference Manual

ID 683101
Date 12/04/2023
Public

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

Document Table of Contents

1.1.89. issp_read_probe_data

Description

Retrieves the current value of the probes. A hex string is returned representing the probe port value.

Usage

issp_read_probe_data <service-path>

ReturnType

String

Returns

Arguments

service-path

Example

#
# Find the ISSP instance service path
#
set service_path [lindex [get_service_paths issp] 0]

#
# Claim an exclusive access to this instance
#
set issp_path [claim_service issp $service_path "my_lib" "EXC"]

#
# Print out the configuration information
#
array set info [issp_get_instance_info $issp_path]
puts "ISSP $info(instance_index) $info(instance_name): $info(probe_width)x$info(source_width)"

#
# Read probe and source port; write to source port.
#
puts [issp_read_probe_data $issp_path]
puts [issp_read_source_data $issp_path]
issp_write_source_data $issp_path 0x1234