]> jspc29.x-matter.uni-frankfurt.de Git - trb3sc.git/commitdiff
fix connection of ETM
authorJan Michel <j.michel@gsi.de>
Mon, 16 Dec 2019 19:08:08 +0000 (20:08 +0100)
committerJan Michel <j.michel@gsi.de>
Mon, 16 Dec 2019 19:08:08 +0000 (20:08 +0100)
cts/trb3sc_cts.vhd

index 878f08238c2c38e61c601043b50cf9636d7c99dc..2165cd9426ff715f5bbbf2674cca1b8afea28ae0 100644 (file)
@@ -186,7 +186,7 @@ architecture trb3sc_arch of trb3sc_cts is
   signal cts_ext_status              : std_logic_vector(31 downto 0) := (others => '0');
   signal cts_ext_control             : std_logic_vector(31 downto 0);
   signal cts_ext_debug               : std_logic_vector(31 downto 0);
-  signal cts_ext_header              : std_logic_vector(1 downto 0);
+  signal cts_ext_header              : std_logic_vector(1 downto 0) := "00";
 
   signal cts_rdo_additional_data            : std_logic_vector(32*cts_rdo_additional_ports-1 downto 0);
   signal cts_rdo_additional_write           : std_logic_vector(cts_rdo_additional_ports-1 downto 0) := (others => '0');
@@ -731,9 +731,9 @@ end generate;
         ADDON_GROUP_SELECTED_OUT => open,
 
         EXT_TRIGGER_IN     => cts_ext_trigger,
-        EXT_STATUS_IN      => (others => '0'),
-        EXT_CONTROL_OUT    => open,
-        EXT_HEADER_BITS_IN => (others => '0'),
+        EXT_STATUS_IN      => cts_ext_status,
+        EXT_CONTROL_OUT    => cts_ext_control,
+        EXT_HEADER_BITS_IN => cts_ext_header,
         EXT_FORCE_TRIGGER_INFO_IN => (others => '0'),
 
         PERIPH_TRIGGER_IN => (others => '0'),