Thank you very much
and for others ;This will provide you a little bit more comfortable. make it into .tcl file and add it on menu. (you have to open h/w manager first)
connect_hw_server -host localhost -port 60001
current_hw_target [get_hw_targets */xilinx_tcf/Digilent//*your device number*/]
open_hw_target
current_hw_device [lindex [get_hw_devices] 1]
refresh_hw_device -update_hw_probes false [lindex [get_hw_devices] 1]
set_property PROBES.FILE {C:/.../debug_nets.ltx} [lindex [get_hw_devices] 1]
refresh_hw_device [lindex [get_hw_devices] 1]
run_hw_ila hw_ila_1
wait_on_hw_ila hw_ila_1
display_hw_ila_data [upload_hw_ila_data hw_ila_1]
proc adi_ila_probe {w_obj w_msb w_lsb w_name} {
add_wave_virtual_bus -radix dec $w_name
for {set b $w_lsb} {$b <= $w_msb} {incr b} {
add_wave -into $w_name "$w_obj[$b]"
}
}
adi_ila_probe i_system_wrapper/system_i/axi_ad9361_adc_mon_data [expr (12*0)+11] [expr (12*0)] adc_data_i0
adi_ila_probe i_system_wrapper/system_i/axi_ad9361_adc_mon_data [expr (12*1)+11] [expr (12*1)] adc_data_q0
adi_ila_probe i_system_wrapper/system_i/axi_ad9361_adc_mon_data [expr (12*2)+11] [expr (12*2)] adc_data_i1
adi_ila_probe i_system_wrapper/system_i/axi_ad9361_adc_mon_data [expr (12*3)+11] [expr (12*3)] adc_data_q1