From: Jan Michel Date: Fri, 22 Dec 2023 09:57:01 +0000 (+0100) Subject: Remove SED from ECP5 X-Git-Url: https://jspc29.x-matter.uni-frankfurt.de/git/?a=commitdiff_plain;h=0732d8bee17444d33e8bab59f05369b82d7224f3;p=trb3sc.git Remove SED from ECP5 --- diff --git a/code/trb3sc_tools.vhd b/code/trb3sc_tools.vhd index 9ac4aeb..386d005 100644 --- a/code/trb3sc_tools.vhd +++ b/code/trb3sc_tools.vhd @@ -216,6 +216,7 @@ THE_FLASH_REGS : entity work.load_settings --------------------------------------------------------------------------- -- SED Detection --------------------------------------------------------------------------- +gen_sed : if FPGA_TYPE = 3 generate THE_SED : entity work.sedcheck port map( CLK => CLK, @@ -224,6 +225,12 @@ THE_FLASH_REGS : entity work.load_settings BUS_TX => bussed_tx, DEBUG => open ); +else generate + bussed_tx.unknown <= bussed_rx.write or bussed_rx.read; + bussed_tx.ack <= '0'; bussed_tx.nack <= '0'; + bussed_tx.data <= (others => '0'); + SED_ERROR_OUT <= '0'; +end generate; ---------------------------------------------------------------------------