Skip to content
Snippets Groups Projects

L2SDP-207, found bug in sdp_statistics_offload.vhd

Merged Pieter Donker requested to merge L2SDP-207 into master
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -225,9 +225,9 @@ BEGIN
-- Use done to start next packets
IF r.block_count < c_nof_packets THEN
IF r.block_count MOD c_nof_data_per_step = 0 THEN
v.start_address := r.start_address + c_data_size; -- step to next packet within block
ELSE
v.start_address := r.block_count / c_nof_data_per_step * c_block_size; -- jump to first packet in next block
ELSE
v.start_address := r.start_address + c_data_size; -- step to next packet within block
END IF;
v.start_pulse := '1';
v.block_count := r.block_count + 1;
Loading