|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
我是新手。结合网上资料,我用ISE写了一个SPI控制接口,其中接收数据代码如下:
- module spi_receive_module(
- input clk,
- input rst,
- input mosi,
- input cs,
- input sck_p,
-
- output reg rxc_flag,
- output reg [7:0]rx_data
- );
-
- reg[1:0] rx_state;
- reg[7:0] byte_receive;
- reg[2:0] bit_re_cnt;
- reg[2:0] rxc_flag_width;
-
- always@(posedge clk or negedge rst or posedge cs)
- begin
- if(!rst)
- begin
- rxc_flag<=1'b0;
- rx_data<=8'd0;
- rx_state<=2'b00;
- bit_re_cnt<=3'b000;
- rxc_flag_width<=3'b000;
- end
-
- else if(cs)
- begin
- rx_state<=2'b00;
- bit_re_cnt<=3'd0;
- end
-
-
- else begin
- case(rx_state)
- 2'b00:begin
- //byte_receive={byte_receive[6:0],mosi};
- if(sck_p && !cs)
- begin
- byte_receive={byte_receive[6:0],mosi};
- rxc_flag<=1'b0;
- if(bit_re_cnt==3'd7)
- begin
- bit_re_cnt<=3'd0;
- rx_state<=2'b01;
- rxc_flag<=1'b1;
- end
- else
- begin
- bit_re_cnt<=bit_re_cnt+1'b1;
- end
- end
- else
- begin
- rx_state<=2'b00;
- end
- end
- 2'b01:begin
- rx_data<=byte_receive;
- //rxc_flag<=1'b1;
- if(rxc_flag_width==3'b100)
- begin
- rxc_flag_width<=3'b000;
- rx_state<=2'b10;
- end
- else
- begin
- rxc_flag_width<=rxc_flag_width+1'b1;
- end
- end
- 2'b10:begin
- rxc_flag<=1'b0;
- rx_state<=2'b00;
- end
- default:rx_state<=2'b00;
- endcase
- end
- end
- 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
请各位前辈指点一二,小弟非常感谢 |
|