From be6ffc1e4bd6062c533de8848733cc1ac1641cec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franti=C5=A1ek=20Boh=C3=A1=C4=8Dek?= Date: Wed, 15 Mar 2023 17:18:55 +0100 Subject: [PATCH] fix(ilas): output error if there is more than 3 multiframes --- src/data_link/ilas_parser.vhd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data_link/ilas_parser.vhd b/src/data_link/ilas_parser.vhd index 33b3e03..afdd621 100644 --- a/src/data_link/ilas_parser.vhd +++ b/src/data_link/ilas_parser.vhd @@ -181,7 +181,7 @@ begin -- architecture a1 -- err <= '1'; -- end if; end if; - elsif reg_multiframe_index > ci_K - 1 then + elsif reg_multiframe_index > 3 then err <= '1'; end if; end if; -- 2.48.1