Probe Data Radix - 2020.2 English

Vivado Design Suite User Guide: Programming and Debugging (UG908)

Document ID
UG908
Release Date
2020-12-07
Version
2020.2 English

Every probe has a DISPLAY_RADIX property associated with it. This property is set to HEX for a multi-bit probe and BINARY for a one-bit probe by default. The exported probe data in the .csv files use probe radix.

You can change the DISPLAY_RADIX property of all the probes of all ILAs in the design as follows in the Vivado Hardware Manager Tcl Console:

foreach probe [get_hw_probes -of [get_hw_ilas]] {
  set_property DISPLAY_RADIX binary $probe
  set_property DISPLAY_AS_ENUM false $probe
 }
Note: Here we are changing the radix of all the probes in all the ILAs to BINARY. To change the radix to HEX, use the script below.
foreach probe [get_hw_probes -of [get_hw_ilas]] {
  set_property DISPLAY_RADIX hex $probe
  set_property DISPLAY_AS_ENUM false $probe
 }