Skip to content

Commit a7ba94c

Browse files
committed
Merge branch 'kondys_fix_axis_concatenator' into 'devel'
Kondys fix axis concatenator See merge request ndk/ndk-fpga!385
2 parents 8d0f236 + af3d268 commit a7ba94c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

comp/axis_tools/edit/packet_concatenator/axis_packet_concatenator.vhd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ begin
222222
-- A packet's last word is arriving on RX0 and not all of its bytes are valid.
223223
rx0_packet_end_pending <= RX0_AXIS_TVALID and RX0_AXIS_TLAST and not rx0_all_valid;
224224
-- A one-word-long packet is preloaded in rx0_reg.
225-
rx0_short_in_reg <= not rx0_all_valid_reg and rx0_last_reg;
225+
rx0_short_in_reg <= not rx0_all_valid_reg and rx0_last_reg and rx0_valid_reg;
226226

227227
fsm_state_reg_p : process (CLK)
228228
begin

comp/axis_tools/edit/packet_concatenator/cocotb/cocotb_test_sig.fdo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
view wave
88
delete wave *
99

10-
add_wave -group {Top} -noupdate -hex /axis_frame_concatenator/*
10+
add_wave -group {Top} -noupdate -hex /axis_packet_concatenator/*
1111

1212
config wave -signalnamewidth 1

0 commit comments

Comments
 (0)