]> jspc29.x-matter.uni-frankfurt.de Git - trb3sc.git/commitdiff
Fix number of inputs in backplanemaster config
authorJan Michel <j.michel@gsi.de>
Wed, 19 Feb 2020 13:31:30 +0000 (14:31 +0100)
committerJan Michel <j.michel@gsi.de>
Wed, 19 Feb 2020 13:32:18 +0000 (14:32 +0100)
backplanemaster/config.vhd

index e47911b9b843320a9275ed9ed7ecf36f9714b7f8..2b0d7b543a1c17b29266d82290cc202ac5df164e 100644 (file)
@@ -33,9 +33,9 @@ package config is
     --input monitor and trigger generation logic
     constant INCLUDE_TRIGGER_LOGIC  : integer  := c_YES;
     constant INCLUDE_STATISTICS     : integer  := c_YES;
-    constant TRIG_GEN_INPUT_NUM     : integer  := 18;
+    constant TRIG_GEN_INPUT_NUM     : integer  := 22+32;
     constant TRIG_GEN_OUTPUT_NUM    : integer  := 4;
-    constant MONITOR_INPUT_NUM      : integer  := 22;
+    constant MONITOR_INPUT_NUM      : integer  := 22+32;
 
     constant INCLUDE_GBE            : integer  := c_YES;
 
@@ -46,18 +46,6 @@ package config is
 
   type data_t is array (0 to 1023) of std_logic_vector(7 downto 0);
   constant LCD_DATA : data_t := (
-      x"36",x"48",x"3A",x"55",x"29",x"2A",x"00",x"00", --config don't touch
-      x"00",x"EF",x"2B",x"00",x"00",x"01",x"3F",x"2C", --config don't touch
-      x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00", --config don't touch
-      x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00", --config don't touch
-      
-      x"54", x"72", x"62", x"33", x"73", x"63", x"0a",
-      x"0a",
-      x"41", x"64", x"64", x"72", x"65", x"73", x"73", x"20", x"20", x"20", x"20", x"20", x"20", x"20", x"20", x"20", x"20", x"80",                     x"0a",                            
-      x"55", x"49", x"44", x"20", x"20", x"89",                      x"88",                      x"87",                      x"86",                     x"0a", 
-      x"43", x"6f", x"6d", x"70", x"69", x"6c", x"65", x"54", x"69", x"6d", x"65", x"20", x"20", x"84",                      x"83",                     x"0a", 
-      x"54", x"69", x"6d", x"65", x"20", x"20", x"20", x"20", x"20", x"20", x"20", x"20", x"20", x"82",                      x"81",                     x"0a",
-      x"54", x"65", x"6d", x"70", x"65", x"72", x"61", x"74", x"75", x"72", x"65", x"20", x"20", x"20", x"20", x"20", x"20", x"85",                     x"0a",
       others => x"00");