如何在VHDL中以8MHz时钟数4us?

发布于 2024-11-09 22:10:26 字数 727 浏览 0 评论 0原文

我需要检查 4us 之前的总线活动。所以我需要算一下。时钟为8MHz。请帮助我。

下面的代码可以工作吗?

process(sync_dw_reg,data_edge) 
begin 
 if(rst_n='1' or data_edge='1' )then 
    gapen<='0'; 
 elsif(falling_edge(sync_dw_reg))then 
    gapen<='1'; 
 end if; 
 end process; 

 process(dec_clk,sync_dw_reg,rst_n,gapen) 
 begin 
 if(rst_n='1')then 
    gapcnt<="000000"; 
 elsif(gapen='1')then 
  if(dec_clk'event and dec_clk='1')then
     if(gapcnt="111111")then 
        gaperr_bit<='1'; 
     elsif(data_edge='1')then --if this condition comes within 4us then no setting of error 
        gaperr_bit<='0'; 
        gapcnt<="000000"; 
     else gapcnt<=gapcnt+'1';
     end if; 
  end if; 
 end if;

结束进程;

I need to check the bus activity till 4us. So I need to count it. And clock is 8MHz. Please help me in this.

Will the following code work?

process(sync_dw_reg,data_edge) 
begin 
 if(rst_n='1' or data_edge='1' )then 
    gapen<='0'; 
 elsif(falling_edge(sync_dw_reg))then 
    gapen<='1'; 
 end if; 
 end process; 

 process(dec_clk,sync_dw_reg,rst_n,gapen) 
 begin 
 if(rst_n='1')then 
    gapcnt<="000000"; 
 elsif(gapen='1')then 
  if(dec_clk'event and dec_clk='1')then
     if(gapcnt="111111")then 
        gaperr_bit<='1'; 
     elsif(data_edge='1')then --if this condition comes within 4us then no setting of error 
        gaperr_bit<='0'; 
        gapcnt<="000000"; 
     else gapcnt<=gapcnt+'1';
     end if; 
  end if; 
 end if;

end process;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

痕至 2024-11-16 22:10:26

一般来说,计算出 4us 在您的时钟速率下有多少个时钟周期。

更好的是,让 VHDL 为您完成这项工作。如果您的设计有一个全局包,其中包含一个常量(即时钟周期):

constant clock_period : time := 125 ns;

那么您可以执行以下操作:

constant bus_timeout_for_example : natural := 4 us / clock_period;

然后,在进程中创建一个整数变量。每个时钟周期递增它。当它达到你上面计算的数字时,你的 4 我们就结束了。

编辑:
现在您已经发布了一些代码和一些评论:

  • 不要使用 std_logic_vectors 进行算术 - http://parallelpoints.com/node /3
  • 使整个事情与一个 clk 信号同步(即 dec_clk 是敏感度列表中的全部) - 如果您需要检测其他信号上的“边缘”,请将它们存储起来并在下一个时钟周期将它们进行比较看看他们是否改变了。在整个设计中让 *_edge 调用多个信号是自找麻烦(作为新手)。那么gapen就可以是一个进程内的一个变量。并检查“时钟”部分内的gapen
  • 使用按照我描述的方式计算的整数类型的变量 - 然后您可以与数字进行比较:if gearcnt = bus_timeout then

In general, figure out how many clock cycles 4us is at your clock rate.

Even better, get VHDL to do the work for you. If you have a global package for your design with a constant in it which is the clock period:

constant clock_period : time := 125 ns;

you can then do:

constant bus_timeout_for_example : natural := 4 us / clock_period;

Then, create an integer variable in your process. Increment it every clock cycle. When it reaches the figure you calculated above, that's the end of your 4 us.

EDIT:
Now you've posted some code some comments:

  • Don't use std_logic_vectors for arithmetic - http://parallelpoints.com/node/3
  • Make the whole thing synchronous to one clk signal (ie dec_clk is all you have in the sensitivity list) - if you need to detect "edges" on other signals, store them and comapre them the next clock cycle to see if they've changed. Having *_edge called on more than one signal in your whole design is asking for trouble (as a novice). Then gapen can be a variable within the one process. And check gapen inside the "clocked" part.
  • Use a variable calculated as I describe and of an integer type - then you can compare with numbers : if gapcnt = bus_timeout then
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文