码迷,mamicode.com
首页 > 其他好文 > 详细

Altera quartus II遇到的问题

时间:2014-05-08 12:31:59      阅读:698      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   java   tar   

编译时提示:

Warning (13024): Output pins are stuck at VCC or GND
  Warning (13410): Pin "SCLK" is stuck at GND
  Warning (13410): Pin "SYNCn" is stuck at VCC
  Warning (13410): Pin "Dout" is stuck at GND

三个输出端都被固定了在GND或者VCC,程序的本意并非如此,分析了一下部分底层模块代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
always@(negedge CLK or negedge RSTn)
    begin
        if(!RSTn)
            begin
                SCLK <= 1‘b0;
            end
        else
            begin
                SCLK <= ~SCLK;
            end
    end
     
    always@(posedge CLK or negedge RSTn)
    begin
        if(!RSTn)
            begin
                counter <= 8‘d0;
            end
        else
            begin
                counter <= counter + 1‘b1;
                if(counter == 8‘d62)
                    counter <= 8‘d0;
            end
    end

 并没有发现错误,转而分析顶层

bubuko.com,布布扣
 1 module MyDemo(
 2     input CLK,
 3     output  SCLK,
 4     output  SYNCn,
 5     output  Dout
 6     );
 7     wire BUSY;
 8     reg RSTn = 1b1;
 9     reg [20:0] counter;
10     reg [15:0] V_Data;
11     
12     DAC8560 U1(.CLK(CLK),.V_Data(V_Data),.RSTn(RSTn),.SCLK(SCLK),.SYNCn(SYNCn),.Dout(Dout),.BUSY(BUSY));
13     
14     always@(posedge CLK)
15     begin
16         if(counter == 21d2000000)
17             begin
18                 if(V_Data < 16d60000)
19                     V_Data <= V_Data + 16d10000;
20                 else
21                     begin
22                         V_Data <= 16d0;
23                     end
24             end
25         else
26             begin
27                 counter <= counter + 1b1;
28             end
29     end
30 endmodule
bubuko.com,布布扣

发现复位信号由于为了方便调试将RSTn置为1,将RSTn修改为实际引脚输入,编译后问题解决

bubuko.com,布布扣
1 module MyDemo(
2     input CLK,
3     output  SCLK,
4     output  SYNCn,
5     output  Dout,
6     input RSTn
7     );
View Code

发现always所依赖的敏感信号如果为固定电平,很容易出现这种警告,具体原因待查。

Altera quartus II遇到的问题,布布扣,bubuko.com

Altera quartus II遇到的问题

标签:style   blog   class   code   java   tar   

原文地址:http://www.cnblogs.com/ARM-LINUX-WANG/p/3714227.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!