10-31-2019 03:02 PM
Is it possible to use the ILA Sample Data depth as 512 using the following TCL command? I tried using the command below using the TCL console but it gave an error valid data depth can only be 1024, 4096 ...
create_ip -name ila -vendor xilinx.com -library ip -module_name ila_0
set_property -dict [list CONFIG.Component_Name {ila_0} \
CONFIG.C_NUM_OF_PROBES {4} \
CONFIG.C_DATA_DEPTH {512} \
CONFIG.EN_BRAM_DRC {false} \
CONFIG.C_TRIGIN_EN {false} \
CONFIG.C_TRIGOUT_EN {false} \
CONFIG.C_ADV_TRIGGER {false} \
CONFIG.C_PROBE0_WIDTH {32} \
CONFIG.C_PROBE1_WIDTH {32} \
CONFIG.C_PROBE2_WIDTH {32} \
CONFIG.C_PROBE3_WIDTH {32} ] [get_ips ila_0]
10-31-2019 03:14 PM
Hi @akshat2904,
The minimum data depth is 1024.
Here's a list of the valid values for the parameters C_DATA_DEPTH:
1024, 2048, 4096, 8192,16384, 32768, 65536,131072
Thanks,