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

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

手机号码,快捷登录

手机号码,快捷登录

找回密码

  登录   注册  

快捷导航
搜帖子
芯片精品文章合集(500篇!) 创芯人才网--重磅上线啦!
查看: 3113|回复: 2

关于三态门的错误问题

[复制链接]
发表于 2007-5-9 10:20:28 | 显示全部楼层 |阅读模式

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

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

x
麻烦大家看看一下 的程序,编译没有错误,但是波形图出现了冲突问题,郁闷死了。。。
library ieee;
use ieee.std_logic_1164.all;
entity vhdl1 is
generic(n: positive :=8);
port ( clk_out_data,oe_snr_data:in std_logic;
  snr_d:in std_logic_vector(n-1 downto 0);
  in_d:inout std_logic_vector(n-1 downto 0);
  out_dut std_logic_vector(n-1 downto 0));
end entity;
architecture rt1 of vhdl1 is
signal tamp0:std_logic_vector(n-1 downto 0);
begin
p0:process(clk_out_data)
begin
if rising_edge(clk_out_data) then
  tamp0<=in_d;
end if;
end process p0;
out_d<=tamp0;
p1:process(oe_snr_data,snr_d)
begin
if oe_snr_data='0' then
in_d<=snr_d;
else
in_d<="ZZZZZZZZ";
end if;
end process p1;
end rt1;

in_d 的波形出现了冲突现象,怎么改都不行。。。请问我的三态门设置是不是有问题呢?
谢谢各位拉
发表于 2007-5-9 11:33:17 | 显示全部楼层

高阻态时波形不稳!

当进入高阻态,
时间短时,虚保持上一状态
时间长了,波形一片乱
 楼主| 发表于 2007-5-9 12:35:33 | 显示全部楼层
请问有没有什么比较好的解决方法呢?我的三态门是不是设置有问题?
您需要登录后才可以回帖 登录 | 注册

本版积分规则

关闭

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

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

GMT+8, 2024-11-5 16:26 , Processed in 0.019832 second(s), 8 queries , Gzip On, Redis On.

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