初级会员

- 积分
- 92
- 金钱
- 92
- 注册时间
- 2017-8-17
- 在线时间
- 50 小时
|
20金钱
问题现象:程序执行不到2ms就会重启。像是按了复位键一样的效果。 比如这个LED亮灭程序,应该是灯灭3秒,亮2秒。通过逻辑分析仪抓取发现,计数 cnt1 只记到 9000 左右就自动清零复位了。内核电压检查过了1.1V正常。请问还有什么原因会导致这种情况的发生?这个FPGA芯片会不会本身存在问题?
module led(
input sys_50M,
input rst_n, //复位信号,低电平有效
input pll_5M,
output reg [3:0] led
);
reg [22:0] cnt1;
reg [12:0] cnt2;
reg [2:0] time_s;
always @(posedge pll_5M or negedge rst_n)
begin
if(!rst_n)
begin
cnt1<=23'd0;
end
else if(cnt1>=23'd5000000)
begin
cnt1<=0;
time_s<=time_s+1'b1;
end
else if(cnt1<23'd5000000)
begin
cnt1<=cnt1+1'b1;
end
else if(time_s>=3'd5)
time_s<=0;
end
always @(posedge pll_5M or negedge rst_n)
begin
if(!rst_n)
begin
led<=4'd0;
end
else if(time_s>=3'd3)
begin
led<=4'b1111;
end
else if(time_s<=3'd3)
begin
led<=4'b0000;
end
end
endmodule
|
最佳答案
查看完整内容[请看2#楼]
问题已解决,板子上有DDR3模块,所以需要给FPGA一个DDR3的参考电源(0.75V).这个电源短路了 ,导致连接进FPGA引脚出问题,所以FPGA跑程序一直奔溃重启
|