Skip to content

Commit 4d12c2b

Browse files
packet_filter: Updates and fixes
- Updated the Scoreboard project verbosity for more compact logs for CI - Fixed upack/cpack scoreboard module Signed-off-by: Istvan-Zsolt Szekely <istvan.szekely@analog.com>
1 parent b5b0fd7 commit 4d12c2b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

common/sv/scoreboard_pack.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ package scoreboard_pack_pkg;
6666
for (int j=0; j<inner_loop; j++) begin
6767
for (int k=0; k<this.width/8; k++) begin
6868
source_byte = this.source_byte_stream.pop_back();
69-
if (this.sink_type == CYCLIC)
69+
if (this.transfer_type == CYCLIC)
7070
this.source_byte_stream.push_front(source_byte);
7171
else
7272
this.source_byte_stream_size--;

scoreboard/tests/test_program.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ program test_program;
9898

9999
//=========================================================================
100100

101-
setLoggerVerbosity(250);
101+
setLoggerVerbosity(9);
102102

103103
env.start();
104104
env.sys_reset();

0 commit comments

Comments
 (0)