[Opt 31-66] Net ila0/inst/ila_core_inst/TRIGGER_I[82] is driverless and is driving the D pin of shif

【代码】

wire clock_locked;
wire clock50;
clk_wiz_0 clk_wiz_0(
    .clk_in1(clock), // 输入10MHz时钟
    .clk_out1(clock50), // 输出50MHz时钟
    .reset(!nrst),
    .locked(clock_locked)
);

ila_0 ila0(
    .clk(clock50), // ILA使用的是倍频后的50MHz时钟
    .probe0(i), // [3:0]
    .probe1(state), // [3:0]
    .probe2(ad5660_spi_request),
    .probe3(ad5660_spi_ready),
    .probe4(ad5660_spi_bits_cnt), // [15:0]
    .probe5(uart_rx),
    .probe6(uart_bytearray_rx_request),
    .probe7(uart_bytearray_rx_complete),
    .probe8(uart_bytearray_rx_error),
    .probe9(uart_bytearray_receiver.wait_first),
    .probe10(uart_bytearray_receiver.remaining_time), // [31:0]
    .probe11(uart_bytearray_rx_size), // [7:0]
    .probe12(uart_bytearray_rx_remaining), // [7:0]
    .probe13(uart_tx),
    .probe14(ad5660_spi_sync),
    .probe15(ad5660_spi_sclk),
    .probe16(ad5660_spi_din)
);

【错误提示】

[Opt 31-66] Net ila0/inst/ila_core_inst/TRIGGER_I[82] is driverless and is driving the D pin of shifted_data_in_reg[7][82]_srl8. If the entire cell is not removed or a driver added to the net, this will trigger an error after the design has been optimized.

【解决方案】

第82个信号(从0开始数)刚好是ad5660_spi_din这一信号,给这个信号加一级wire即可解决问题。

wire _ad5660_spi_din = ad5660_spi_din;
ila_0 ila0(
    .clk(clock50),
    .probe0(i), // [3:0]
    .probe1(state), // [3:0]
    .probe2(ad5660_spi_request),
    .probe3(ad5660_spi_ready),
    .probe4(ad5660_spi_bits_cnt), // [15:0]
    .probe5(uart_rx),
    .probe6(uart_bytearray_rx_request),
    .probe7(uart_bytearray_rx_complete),
    .probe8(uart_bytearray_rx_error),
    .probe9(uart_bytearray_receiver.wait_first),
    .probe10(uart_bytearray_receiver.remaining_time), // [31:0]
    .probe11(uart_bytearray_rx_size), // [7:0]
    .probe12(uart_bytearray_rx_remaining), // [7:0]
    .probe13(uart_tx),
    .probe14(ad5660_spi_sync),
    .probe15(ad5660_spi_sclk),
    .probe16(_ad5660_spi_din)
);

 

  • 3
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 3
    评论
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

巨大八爪鱼

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值