基于fpga的等精度频率测量
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
基于fpga的等精度频率测量,其基本是,利用两个计数器计数,一个对晶振计数,一个对被测时钟计数,这两个计数器有一个公共的使能端,即是闸门信号,当闸门信号到来时使能计数器计数
Clr模块程序如下
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity clr is
port
(
clk,notq : in std_logic;
clr :buffer std_logic
);
end ;
architecture df of clr is
signal jishu1 :std_logic_vector(31 downto 0);
begin
process(clk,notq) is
begin
if clk'event and clk='0' then
if notq='1' then
if jishu1=x"00000002" then
jishu1<=x"00000000";clr<='1' ;
else
jishu1<=jishu1+1;
clr<='0' ;
end if ;
else
jishu1<=x"00000000";
clr<='0' ;
end if ;
end if ;
end process;
end df ;
jishu模块程序如下
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity jishu is
port
(
clk : in std_logic;
q,clr :buffer std_logic
);
end ;
architecture df of jishu is
signal jishu1 :std_logic_vector(31 downto 0); begin
process(clk) is
begin
if clk'event and clk='1' then
if jishu1=x"05F5E0ff" then
jishu1<=x"00000000";clr<='1' ;
q<=not q;
else
jishu1<=jishu1+1;
clr<='0' ;
end if ;
end if ;
end process;
end df ;