2020.8.8
错误内容
在生成bit文件时出现
ERROR:PhysDesignRules:1385 - Issue with pin connections and/or configuration on
block:<U_ila_pro_0/U0/I_NO_D.U_ILA/I_DQ.U_DQQ/DLY_9.DLY_9_GEN[86].I_SRLT_NE_0
.DLY9/SRL16E>:<SLICEM_A6LUT>. For RAMMODE programming set with DPRAM32 or
SPRAM32 or SRL16 the DI2 input pin must be connected.
错误原因
经检查错误出现的原因是:cdc调试文件添加管脚时,误添加了灰色管脚。
警告内容
WARNING:Xst:1710 - FF/Latch <data_out2flash_20> (without init value) has a constant value of 0 in block <config_flash>. This FF/Latch will be trimmed during the optimization process.
WARNING:in unit u6_config_top Conflict on KEEP property on signal data_out2flash<28> and data_out2flash<20> data_out2flash<20> signal will be lost.
就是说这条线在你的程序里一点变化没有,在综合成电路的时候它给优化掉了,不算是错误
解决方法
出现的原因是因为这根线你一直没有去操作它,使得他一直保持一个值,所以就被认为是没有用被综合掉了,之下在去抓信号时就抓不到,需要在最底层这个信号被赋值的时候注意必须每一位出现不同的值才行,一般复位为FF,且无用时为00即可