From d4e65d04ffdd68a5a043932c7c08eb9081eee7d7 Mon Sep 17 00:00:00 2001 From: Jan Michel Date: Wed, 19 Feb 2020 14:31:30 +0100 Subject: [PATCH] Fix number of inputs in backplanemaster config --- backplanemaster/config.vhd | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/backplanemaster/config.vhd b/backplanemaster/config.vhd index e47911b..2b0d7b5 100644 --- a/backplanemaster/config.vhd +++ b/backplanemaster/config.vhd @@ -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"); -- 2.43.0