diff --git a/applications/lofar2/designs/lofar2_unb2c_sdp_station/revisions/lofar2_unb2c_sdp_station_bf_ring/tb_lofar2_unb2c_sdp_station_bf_ring.vhd b/applications/lofar2/designs/lofar2_unb2c_sdp_station/revisions/lofar2_unb2c_sdp_station_bf_ring/tb_lofar2_unb2c_sdp_station_bf_ring.vhd index d0a62d8144b818506eb4e684e8149d3f0e8d9892..1589cc2a863c5bd1e308d07910e8cb8b86c7b337 100644 --- a/applications/lofar2/designs/lofar2_unb2c_sdp_station/revisions/lofar2_unb2c_sdp_station_bf_ring/tb_lofar2_unb2c_sdp_station_bf_ring.vhd +++ b/applications/lofar2/designs/lofar2_unb2c_sdp_station/revisions/lofar2_unb2c_sdp_station_bf_ring/tb_lofar2_unb2c_sdp_station_bf_ring.vhd @@ -111,7 +111,9 @@ -- * Default beamlet 102 also contains g_subband = 102. On HW the BF weights -- are default 0, but in sim the BF weights in node_sdp_beamformer.vhd -- are default unit weights. Therefore also write the BF weight for default --- beamlet 102 to define it value, in case g_beamlet /= 102. +-- beamlet 102 to define it value, in case g_beamlet /= 102. In this tb +-- the BF weigth for beamlet = g_subband = 102 is set to 0, so that the +-- g_subband = 102 will only show up in g_beamlet. -- * A simulation only section in sdp_beamformer_output.vhd disturbs the BSN, -- to cause a merged payload error, so that sdp_source_info_payload_error -- can be verified here. @@ -375,7 +377,7 @@ architecture tb of tb_lofar2_unb2c_sdp_station_bf_ring is constant c_mm_file_reg_hdr_dat : string := mmf_unb_file_prefix(c_last_unb_nr, c_last_node_nr) & "REG_HDR_DAT"; -- control beamlet output -- Tb BSN moments - constant c_stimuli_done_bsn : natural := c_init_bsn + c_bsn_latency + c_nof_block_per_sync * 3; + constant c_stimuli_done_bsn : natural := c_init_bsn + c_nof_block_per_sync * 3; constant c_verify_rx_beamlet_list_bsn : natural := c_stimuli_done_bsn - c_nof_block_per_sync; -- Tb @@ -1456,8 +1458,8 @@ begin rx_beamlet_valid <= '0'; -- Wait until start of a beamlet packet proc_common_wait_until_high(ext_clk, rx_beamlet_sosi.sop); - -- c_sdp_cep_nof_beamlets_per_longword = 2 dual pol beamlets (= XY, XY) per 64b data word - for I in 0 to (c_sdp_cep_nof_beamlets_per_packet / c_sdp_cep_nof_beamlets_per_longword) - 1 loop + -- c_sdp_nof_beamlets_per_longword = 2 dual pol beamlets (= XY, XY) per 64b data word + for I in 0 to (c_sdp_cep_nof_beamlets_per_packet / c_sdp_nof_beamlets_per_longword) - 1 loop proc_common_wait_until_high(ext_clk, rx_beamlet_sosi.valid); rx_beamlet_valid <= '1'; -- Capture rx beamlets per longword in rx_beamlet_arr, for time series view in Wave window @@ -1484,7 +1486,7 @@ begin -- contains no WAIT statement. wait until rising_edge(ext_clk); rx_beamlet_valid <= '0'; - rx_beamlet_cnt <= (rx_beamlet_cnt + c_sdp_cep_nof_beamlets_per_longword) mod c_sdp_cep_nof_beamlets_per_block; -- 4 blocks/packet + rx_beamlet_cnt <= (rx_beamlet_cnt + c_sdp_nof_beamlets_per_longword) mod c_sdp_cep_nof_beamlets_per_block; -- 4 blocks/packet end loop; end process;