|
數(shù)字頻率計(jì)_DDS
51hei.png (5.6 KB, 下載次數(shù): 26)
下載附件
2020-4-7 15:04 上傳
單片機(jī)源程序如下:
- LIBRARY ieee;
- USE ieee.std_logic_1164.all;
- USE ieee.std_logic_unsigned.all;
- USE ieee.std_logic_arith.all;
- ENTITY dds_dds IS
- port(ftw: in std_logic_vector(23 downto 0); --頻率控制字
- clk: in std_logic; --系統(tǒng)時(shí)鐘
- rec: in std_logic; --接收信號使能
- out_q: out std_logic_vector(9 downto 0); --幅度值輸出
- ack: out std_logic); --接收應(yīng)答信號
- END dds_dds;
- ARCHITECTURE beh of dds_dds is
- signal phase_adder,frq_reg:std_logic_vector(23 downto 0);
- signal rom_address,address:std_logic_vector(9 downto 0);
- signal rom_out:std_logic_vector(9 downto 0);
- signal s_1,s_2,a_1,a_2:std_logic;
- signal a:std_logic;
- component dds_dds_rom --定義ROM元件
- PORT(address : IN STD_LOGIC_VECTOR (9 DOWNTO 0);
- q : OUT STD_LOGIC_VECTOR (9 DOWNTO 0));
- end component;
- begin
- data: dds_dds_rom port map(address,rom_out);
- datain: process(clk) --數(shù)據(jù)輸入部分
- begin
- if(clk'event and clk='1') then --clk上升沿觸發(fā)
- if(rec='1') then --rec為1則讀取ftw數(shù)據(jù)并將應(yīng)答信號ack置1
- frq_reg<=ftw;
- ack<='1';
- a<='1'; --a與ack內(nèi)容相同在判斷時(shí)使用
- end if;
- if(a='1') then --檢測到上一個(gè)周期ack為1,則將其復(fù)位
- ack<='0';
- a<='0';
- end if;
- end if;
- end process;
- phase_add: process(clk) --相位累加部分
- begin
- if(clk'event and clk='1') then --clk上升沿觸發(fā)
- phase_adder<=phase_adder+frq_reg; --進(jìn)行相位累加
- rom_address(0)<=phase_adder(12);
- rom_address(1)<=phase_adder(13);
- rom_address(2)<=phase_adder(14);
- rom_address(3)<=phase_adder(15);
- rom_address(4)<=phase_adder(16);
- rom_address(5)<=phase_adder(17);
- rom_address(6)<=phase_adder(18);
- rom_address(7)<=phase_adder(19);
- rom_address(8)<=phase_adder(20);
- rom_address(9)<=phase_adder(21);
- s_2<=phase_adder(22);
- s_1<=phase_adder(23); --將上一個(gè)累加值的高12位送出
- end if;
- end process;
-
- lookfor_rom: process(clk) --ROM查找部分
- begin
- if(clk'event and clk='1') then --clk上升沿觸發(fā)
- a_1<=s_1; --a_1和a_2比s_1和s_2落后一個(gè)周期
- a_2<=s_2;
- if(s_1='0' and s_2='0') then --將各區(qū)間的地址對應(yīng)到0~π/2的地址
- address<=rom_address;
- elsif(s_1='0' and s_2='1') then
- address<=NOT rom_address;
- elsif(s_1='1' and s_2='0') then
- address<=rom_address;
- elsif(s_1='1' and s_2='1') then
- address<=NOT rom_address;
- end if; -- NOT rom_address=3FF-rom_address
- if(a_1='0' and a_2='0') then --將各區(qū)間的幅度對應(yīng)到0~π/2的幅度
- out_q<=rom_out; --由于幅度比地址輸出慢一個(gè)周期所以用
- -- a_1和a_2進(jìn)行判斷,a_1和a_2比s_1
- --和s_2落后一個(gè)時(shí)鐘周期
- elsif(a_1='0' and a_2='1') then
- out_q<=rom_out;
- elsif(a_1='1' and a_2='0') then
- out_q<=NOT rom_out+"0000000001";
- elsif(a_1='1' and a_2='1') then
- out_q<=NOT rom_out+"0000000001";
- end if; --負(fù)數(shù)通過正數(shù)取反再加1得到
- end if;
- end process;
- end beh;
復(fù)制代碼
所有資料51hei提供下載:
數(shù)字頻率計(jì)_DDS.rar
(3.31 KB, 下載次數(shù): 13)
2020-4-7 14:18 上傳
點(diǎn)擊文件名下載附件
數(shù)字頻率計(jì)_DDS 下載積分: 黑幣 -5
|
|