Skip to content
Snippets Groups Projects
Commit 050f5a61 authored by Alvaro Dosil's avatar Alvaro Dosil
Browse files

fix bug in ipbus connection

parent ba2473c0
Branches
Tags
No related merge requests found
......@@ -181,6 +181,7 @@ BEGIN
ipbus_o.ipb_ack <= s_ipbus_ack;
ipbus_o.ipb_err <= '0';
-----------------------------------------------------------------------------
-- IPBUS read
......
......@@ -128,7 +128,6 @@ ARCHITECTURE struct OF top_extphy IS
SIGNAL event_number_o : std_logic_vector(g_IPBUS_WIDTH-1 DOWNTO 0); -- starts at one. Increments for each post_veto_trigger
SIGNAL ipbr : ipb_rbus_array(g_NUM_EXT_SLAVES-1 DOWNTO 0); --! IPBus read signals
SIGNAL ipbus_clk : std_logic;
SIGNAL ipbus_clk_i : std_logic;
SIGNAL ipbus_reset : std_logic;
SIGNAL ipbus_rst : std_logic; -- ! IPBus reset to slaves
SIGNAL ipbw : ipb_wbus_array(g_NUM_EXT_SLAVES-1 DOWNTO 0); --! IBus write signals
......@@ -469,7 +468,7 @@ BEGIN
)
PORT MAP (
clk_4x_logic_i => clk_4x_logic,
ipbus_clk_i => ipbus_clk_i,
ipbus_clk_i => ipbus_clk,
logic_strobe_i => strobe_4x_logic,
logic_reset_i => logic_reset,
trigger_i => overall_trigger,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment