Skip to content
Snippets Groups Projects
Commit bad5d1ca authored by Eric Kooistra's avatar Eric Kooistra
Browse files

Added tb_tb_diag_rx_seq.vhd.

parent 66a5e187
No related branches found
No related tags found
No related merge requests found
......@@ -34,6 +34,7 @@ test_bench_files =
$UNB/Firmware/modules/Lofar/diag/tb/vhdl/tb_diag_wg_wideband.vhd
$UNB/Firmware/modules/Lofar/diag/tb/vhdl/tb_diag_tx_seq.vhd
tb/vhdl/tb_diag_rx_seq.vhd
tb/vhdl/tb_tb_diag_rx_seq.vhd
tb/vhdl/tb_diag_tx_frm.vhd
$UNB/Firmware/modules/Lofar/diag/tb/vhdl/tb_diag_frm_generator.vhd
$UNB/Firmware/modules/Lofar/diag/tb/vhdl/tb_diag_frm_monitor.vhd
......
......@@ -42,11 +42,11 @@ BEGIN
u_tb_diag_block_gen : ENTITY work.tb_diag_block_gen;
--u_tb_diag_tx_seq : ENTITY work.tb_diag_tx_seq; -- not self-checking yet
u_tb_diag_rx_seq : ENTITY work.tb_diag_rx_seq;
u_tb_diag_frm_generator : ENTITY work.tb_diag_frm_generator;
u_tb_diag_frm_monitor : ENTITY work.tb_diag_frm_monitor;
-- Multi tb
u_tb_tb_diag_rx_seq : ENTITY work.tb_tb_diag_rx_seq;
u_tb_tb_mms_diag_seq : ENTITY work.tb_tb_mms_diag_seq;
u_tb_tb_mms_diag_block_gen : ENTITY work.tb_tb_mms_diag_block_gen;
END tb;
-------------------------------------------------------------------------------
--
-- Copyright (C) 2015
-- ASTRON (Netherlands Institute for Radio Astronomy) <http://www.astron.nl/>
-- P.O.Box 2, 7990 AA Dwingeloo, The Netherlands
--
-- This program is free software: you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation, either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
--
-------------------------------------------------------------------------------
LIBRARY IEEE, dp_lib;
USE IEEE.std_logic_1164.ALL;
USE dp_lib.tb_dp_pkg.ALL;
ENTITY tb_tb_diag_rx_seq IS
END tb_tb_diag_rx_seq;
ARCHITECTURE tb OF tb_tb_diag_rx_seq IS
BEGIN
-- g_use_steps : BOOLEAN := TRUE;
-- g_steps_arr : t_integer_arr(c_diag_seq_rx_reg_nof_steps-1 DOWNTO 0) := (OTHERS=>1);
-- g_seq_dat_w : NATURAL := 16 -- = 12b for Lofar RCU test data, 16b for Lofar TBBI test data
u_diag_sel : ENTITY work.tb_diag_rx_seq GENERIC MAP (FALSE, (1, 1, 1, 1), 16);
u_diag_steps : ENTITY work.tb_diag_rx_seq GENERIC MAP ( TRUE, (1, 1, 1, 1), 16);
END tb;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment