Wait until hardware SIO sweep has completed.
Syntax
wait_on_hw_sio_sweep [‑timeout <arg>] [‑quiet] [‑verbose]
<hw_sio_sweeps>...
Usage
Name | Description |
---|---|
[-timeout]
|
Timeout in minutes. Decimal value allowed Default: No timeout |
[-quiet]
|
Ignore command errors |
[-verbose]
|
Suspend message limits during command execution |
<hw_sio_sweeps>
|
List of hardware SIO sweep objects. |
Categories
Description
Suspend a Tcl script or Tcl command processing until the serial I/O analyzer sweep scan is complete.
This command is used after the run_hw_sio_sweep
command to pause Tcl processing to wait for the sweep scan to complete. When the wait_on_sio_sweep
command returns, the Tcl command or script processing can continue.
This command operates silently, returning nothing if successful, or returning an error if it fails.
Arguments
-timeout <arg>
- (Optional) Wait for this period of time for the serial I/O analyzer sweep scan to complete. If the timeout interval is reached, the wait command is terminated.
-quiet
- (Optional) Execute the command quietly, returning no messages from the command. The command also returns TCL_OK regardless of any errors encountered during execution.
-verbose
- (Optional) Temporarily override any message limits and return all messages from this command.
set_msg_config
command.<hw_sio_sweeps> - (Required) Specify one or more hw_sio_sweep objects to wait on. The hw_sio_sweep must be specified as an object as returned by the create_hw_sio_sweep
or get_hw_sio_sweeps
commands.
Example
run_hw_sio_sweep [lindex [get_hw_sio_sweeps {SWEEP_0}] 0]
wait_on_hw_sio_sweep [lindex [get_hw_sio_sweeps {SWEEP_0}] 0]