在线咨询
eetop公众号 创芯大讲堂 创芯人才网
切换到宽版

EETOP 创芯网论坛 (原名:电子顶级开发网)

手机号码,快捷登录

手机号码,快捷登录

找回密码

  登录   注册  

快捷导航
搜帖子
查看: 5945|回复: 8

[求助] ISE编译,出现警告“WARNING:Xst:1467...."原因

[复制链接]
发表于 2014-10-6 17:26:22 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?注册

x
我是新手。结合网上资料,我用ISE写了一个SPI控制接口,其中接收数据代码如下:



  1. module spi_receive_module(
  2.         input clk,
  3.         input rst,
  4.         input mosi,
  5.         input cs,
  6.         input sck_p,
  7.        
  8.         output reg rxc_flag,
  9.         output reg [7:0]rx_data
  10.     );
  11.          
  12.          reg[1:0] rx_state;
  13.          reg[7:0] byte_receive;
  14.          reg[2:0] bit_re_cnt;
  15.          reg[2:0] rxc_flag_width;
  16.          
  17.          always@(posedge clk or negedge rst or posedge cs)
  18.          begin
  19.                 if(!rst)
  20.                         begin
  21.                                 rxc_flag<=1'b0;
  22.                                 rx_data<=8'd0;
  23.                                 rx_state<=2'b00;
  24.                                 bit_re_cnt<=3'b000;
  25.                                 rxc_flag_width<=3'b000;
  26.                         end
  27.                        
  28.                 else if(cs)
  29.                         begin
  30.                                 rx_state<=2'b00;
  31.                                 bit_re_cnt<=3'd0;
  32.                         end
  33.                
  34.                
  35.                 else begin
  36.                                 case(rx_state)
  37.                                         2'b00:begin
  38.                                                 //byte_receive={byte_receive[6:0],mosi};
  39.                                                 if(sck_p && !cs)
  40.                                                         begin
  41.                                                                         byte_receive={byte_receive[6:0],mosi};
  42.                                                                         rxc_flag<=1'b0;
  43.                                                                         if(bit_re_cnt==3'd7)
  44.                                                                                 begin
  45.                                                                                         bit_re_cnt<=3'd0;
  46.                                                                                         rx_state<=2'b01;
  47.                                                                                         rxc_flag<=1'b1;
  48.                                                                                 end
  49.                                                                         else
  50.                                                                                 begin
  51.                                                                                         bit_re_cnt<=bit_re_cnt+1'b1;
  52.                                                                                 end
  53.                                                         end  
  54.                                                 else
  55.                                                         begin
  56.                                                                         rx_state<=2'b00;
  57.                                                         end
  58.                                         end
  59.                                         2'b01:begin
  60.                                                 rx_data<=byte_receive;
  61.                                                 //rxc_flag<=1'b1;
  62.                                                 if(rxc_flag_width==3'b100)
  63.                                                         begin
  64.                                                                 rxc_flag_width<=3'b000;
  65.                                                                 rx_state<=2'b10;
  66.                                                         end
  67.                                                 else
  68.                                                         begin
  69.                                                                 rxc_flag_width<=rxc_flag_width+1'b1;
  70.                                                         end
  71.                                         end
  72.                                         2'b10:begin
  73.                                                 rxc_flag<=1'b0;
  74.                                                 rx_state<=2'b00;
  75.                                         end
  76.                                         default:rx_state<=2'b00;
  77.                                 endcase
  78.                         end
  79.          end
  80. endmodule



复制代码


编译时出现如下警告:
WARNING:Xst:1467 - "spi_receive_module.v" line 56: Reset or set value is not constant in <byte_receive>. It could involve simulation mismatches
WARNING:Xst:1467 - "spi_receive_module.v" line 56: Reset or set value is not constant in <byte_receive>. It could involve simulation mismatches
WARNING:Xst:1467 - "spi_receive_module.v" line 41: Reset or set value is not constant in <rxc_flag>. It could involve simulation mismatches
WARNING:Xst:1467 - "spi_receive_module.v" line 42: Reset or set value is not constant in <rx_data>. It could involve simulation mismatches
WARNING:Xst:1467 - "spi_receive_module.v" line 45: Reset or set value is not constant in <rxc_flag_width>. It could involve simulation mismatches


请各位前辈指点一二,小弟非常感谢
 楼主| 发表于 2014-10-6 20:49:30 | 显示全部楼层
我将敏感信号negedge rst or posedge cs 去掉警告消失了,但是原因我不是太清楚,希望对遇到相似情况的网友有所帮助,同时也希望得到高手们的指教
发表于 2014-10-7 00:52:56 | 显示全部楼层
posedge clk or negedge rst or posedge cs

no such flip flop, please rework to use only posedge xx, or negedge xx   - not both
 楼主| 发表于 2014-10-7 09:30:09 | 显示全部楼层
回复 3# anovickis

谢谢你的提醒,我看过的例程中的确也没有这种写法!
发表于 2014-10-7 10:13:18 | 显示全部楼层
The signal "CS" should be level controling signal. So I personally think it is not suitable to use edge to trigger series operation.
发表于 2014-10-8 11:08:02 | 显示全部楼层
(posedge clk or negedge rst) 可以这样写
发表于 2014-10-8 15:12:48 | 显示全部楼层
每个case中的信号赋值不全吧
 楼主| 发表于 2014-10-8 18:43:25 | 显示全部楼层
回复 6# 成长中的原始人
嗯,加三个触发信号就会有警告,功能仿真没问题,但是程序烧到板子里就有问题(没信号)
发表于 2014-10-20 11:52:34 | 显示全部楼层
这样写always(posedge clk or negedge rstn),三个敏感变量时compile没有对应的寄存器
您需要登录后才可以回帖 登录 | 注册

本版积分规则

关闭

站长推荐 上一条 /2 下一条

小黑屋| 手机版| 关于我们| 联系我们| 隐私声明| EETOP 创芯网
( 京ICP备:10050787号 京公网安备:11010502037710 )

GMT+8, 2025-4-6 02:51 , Processed in 0.029430 second(s), 10 queries , Gzip On, MemCached On.

eetop公众号 创芯大讲堂 创芯人才网
快速回复 返回顶部 返回列表