Write hardware VIO probe OUTPUT_VALUE properties values to VIO core(s).
Syntax
commit_hw_vio [‑quiet] [‑verbose] <hw_objects>...
Usage
Name | Description |
---|---|
[-quiet]
|
Ignore command errors |
[-verbose]
|
Suspend message limits during command execution |
<hw_objects>
|
List of hardware VIO and hardware probe objects. |
Categories
Description
Commit the current values defined on the probes of the VIO Debug core to the current hardware device.
The Virtual Input/Output (VIO) debug core can both monitor and drive internal signals on a programmed Xilinx FPGA in real time. The VIO core uses hardware probes, hw_probe objects, to monitor and drive signals on the device. Input probes monitor signals as inputs to the VIO core. Output probes drive signals to specified values from the VIO core.
The VIO core operates on an object property-based set/commit use model. You can set the OUTPUT_VALUE property on the output probes of the VIO core using the set_property
command. You can then drive those values onto probed signals on the hardware device using the commit_hw_vio
command.
This command returns nothing if successful, or returns an error if it fails.
Arguments
-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.get_hw_vios
or get_hw_probes
commands, rather than specified by name.Example
set_property OUTPUT_VALUE 1 [get_hw_probes fast_cnt_reset \
-of_objects [get_hw_vios hw_vio_1]]
commit_hw_vio [get_hw_probes {fast_cnt_reset} \
-of_objects [get_hw_vios hw_vio_1]]
set_property OUTPUT_VALUE 0 [get_hw_probes fast_cnt_reset \
-of_objects [get_hw_vios hw_vio_1]]
commit_hw_vio [get_hw_vios hw_vio_1]
commit_hw_vio
command, a single hardware probe is specified as the object, while the whole hw_vio debug core is specified in the second occurrence of the command.