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

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

手机号码,快捷登录

手机号码,快捷登录

找回密码

  登录   注册  

快捷导航
搜帖子
查看: 7211|回复: 21

如何编写不同芯片的复位延时程序

[复制链接]
发表于 2003-9-21 10:33:02 | 显示全部楼层 |阅读模式

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

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

x
我用了一个复位按钮和cpld一个引脚相连,与电平转换芯片的复位引脚相与,控制dsp芯片,flash芯片和TL16C550的复位,由于每一个芯片的复位时间不同,怎么用vhdl语言表达不同的延时?请给予指点!!
 楼主| 发表于 2003-9-21 11:16:54 | 显示全部楼层

如何编写不同芯片的复位延时程序

ndsp_rst <= npower_rst and nreset;
nflash_rst <= npower_rst and nreset after 10ns;
n16c550_rst <= npower_rst and nreset after 20ns;
以上这么设置是否可行?
 楼主| 发表于 2003-9-21 12:05:28 | 显示全部楼层

如何编写不同芯片的复位延时程序

chipselect.vhd (line 38, col 42):  (E436) Only simple waveform supported.  Ignoring assignment.
为什么会出现这个错误?什么意思?是不是一定要有时钟信号输入?
发表于 2003-9-21 12:30:51 | 显示全部楼层

如何编写不同芯片的复位延时程序

after 20ns;
这样的描述事不能被综合的,将会被忽略,要用延时最好用时钟,根据时钟节拍延时。
 楼主| 发表于 2003-9-21 16:27:08 | 显示全部楼层

如何编写不同芯片的复位延时程序

怎么根据时钟节拍延时?能举个例子吗?
发表于 2003-9-21 17:02:08 | 显示全部楼层

如何编写不同芯片的复位延时程序

例如你的clk周期是10ns
那么
process(clk)
begin
  if(clk'event and clk='1')then
         sig_delay<=sig;
  end if;
end process;
sig_delay 就比 sig 延时了一拍,就是10ns。
再比如sig_delay如果定义为 std_logic_vector(7 downto 0)
如果:
process(clk)
begin
  if(clk'event and clk='1')then
         sig_delay(7 downto 0)<=sig_delay(6 downto 0)&sig;
  end if;
end process;
那么sig_delay(7)就比sig延时了80ns。这实际上就是移位寄存器。
 楼主| 发表于 2003-9-21 17:04:50 | 显示全部楼层

如何编写不同芯片的复位延时程序

process
begin
   
ndsp_rst <= npower_rst and nreset;电源芯片复位信号和复位按钮信号相与,为低时使dsp芯片复位
   
   wait for 20ns;
nflash_rst <= npower_rst and nreset ;延迟20ns以后,使flash芯片复位

   wait for 20ns;
n16c550_rst <= npower_rst and nreset ;再延迟20ns以后,使TL16C550芯片复位
   end process;
这样就可以通过编译了,但不知是否按我的想法进行?
发表于 2003-9-21 17:07:02 | 显示全部楼层

如何编写不同芯片的复位延时程序

不行的, wait for 20ns 一样会被忽略。
发表于 2003-9-22 09:29:37 | 显示全部楼层

如何编写不同芯片的复位延时程序

其实你可以用一个计数器
process(clk)
begin
if(clk'event and clk='1')then
   if(counter<100)then
    counter<=counter+1;
   end if;
end if;
end process;
ndsp_rst<=npower_rst and nreset when counter>=20;
nflasf_rst<=npower_rst and nreset when counter>=40;
n16c550_rst<=npower_rst and nreset when counter>=60;
以上计数时间具体由自己来决定
 楼主| 发表于 2003-9-22 10:40:58 | 显示全部楼层

如何编写不同芯片的复位延时程序

那我是否还应该给cpld芯片外接时钟信号?
您需要登录后才可以回帖 登录 | 注册

本版积分规则

关闭

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

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

GMT+8, 2025-4-6 17:44 , Processed in 0.026366 second(s), 8 queries , Gzip On, MemCached On.

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