From 92031bce86510b9486a5a8705a6d0b340cf73791 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franti=C5=A1ek=20Boh=C3=A1=C4=8Dek?= Date: Sun, 2 Apr 2023 16:55:40 +0200 Subject: [PATCH] fix: deassert sync on LMFC falling edge to match the standard --- src/data_link/link_controller.vhd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data_link/link_controller.vhd b/src/data_link/link_controller.vhd index bf9b492..49fb794 100644 --- a/src/data_link/link_controller.vhd +++ b/src/data_link/link_controller.vhd @@ -149,7 +149,7 @@ begin -- architecture a1 begin if ci_reset = '0' then co_synced <= '0'; - elsif ci_multiframe_clk'event and ci_multiframe_clk = '1' then + elsif ci_multiframe_clk'event and ci_multiframe_clk = '0' then co_synced <= synced; end if; end process set_synced; -- 2.48.1