From 2b463e929603bcb30c80cec3288e261f12229606 Mon Sep 17 00:00:00 2001 From: Eric Kooistra <kooistra@astron.nl> Date: Thu, 8 Dec 2022 14:54:39 +0100 Subject: [PATCH] Correct timing of cnt_en_arr. --- libraries/base/dp/src/vhdl/dp_strobe_total_count.vhd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/base/dp/src/vhdl/dp_strobe_total_count.vhd b/libraries/base/dp/src/vhdl/dp_strobe_total_count.vhd index ff6d5e6ebd..2332d5953b 100644 --- a/libraries/base/dp/src/vhdl/dp_strobe_total_count.vhd +++ b/libraries/base/dp/src/vhdl/dp_strobe_total_count.vhd @@ -193,7 +193,7 @@ BEGIN -- strobe counters gen_counters : FOR I IN 0 TO g_nof_counts-1 GENERATE - cnt_en_arr(I) <= cnt_en AND in_strobe_reg_arr(I); + cnt_en_arr(I) <= cnt_en AND in_strobe_reg2_arr(I); u_counter : ENTITY common_lib.common_counter GENERIC MAP ( -- GitLab