From 40ed1f628f74acc615cae9107c69a3e2db643f00 Mon Sep 17 00:00:00 2001
From: Erik Kooistra <kooistra@astron.nl>
Date: Thu, 27 Jul 2017 14:20:56 +0000
Subject: [PATCH] Corrected missing force_en signal in sensitivity list.

---
 .../base/dp/src/vhdl/dp_force_data_parallel.vhd      | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/libraries/base/dp/src/vhdl/dp_force_data_parallel.vhd b/libraries/base/dp/src/vhdl/dp_force_data_parallel.vhd
index 06235aec2c..2157b6c045 100644
--- a/libraries/base/dp/src/vhdl/dp_force_data_parallel.vhd
+++ b/libraries/base/dp/src/vhdl/dp_force_data_parallel.vhd
@@ -29,11 +29,11 @@
 --   made to automatically increment for every valid and restart at sync or
 --   sop.
 -- Usage:
--- . DSP tests: Constant (zero) data is useful for DSP tests to be able to
---   recognize a particular data stream in an array of streams.
--- . Data move test: Incrementing data or a combination of constant re and
---   incrementing im is useful for data move test when the data gets
---   reordered.
+-- . DSP tests: The amplitude of constant data is useful to verify scaling and
+--   requantization.
+-- . Data move test: Forcing constant (zero) data is useful for to trace data
+--   when the data gets reordered. A combination of constant re and
+--   incrementing im can also be useful to trace data.
 -- Remarks:
 -- . Ready latency = 1
 -- . When force_en='0' then this dp_force_data_parallel is equivalent to
@@ -83,7 +83,7 @@ ARCHITECTURE str OF dp_force_data_parallel IS
   
 BEGIN
 
-  p_comb : PROCESS(snk_in, force_data, force_re, force_im, data_out)
+  p_comb : PROCESS(snk_in, force_en, force_data, force_re, force_im, data_out)
   BEGIN
     data_in <= snk_in;
     IF force_en='1' THEN
-- 
GitLab