From 0732d8bee17444d33e8bab59f05369b82d7224f3 Mon Sep 17 00:00:00 2001 From: Jan Michel Date: Fri, 22 Dec 2023 10:57:01 +0100 Subject: [PATCH] Remove SED from ECP5 --- code/trb3sc_tools.vhd | 7 +++++++ 1 file changed, 7 insertions(+) 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; --------------------------------------------------------------------------- -- 2.43.0