commit-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commit-gnuradio] [gnuradio] 130/148: should fix the endless packet bug


From: git
Subject: [Commit-gnuradio] [gnuradio] 130/148: should fix the endless packet bug
Date: Mon, 15 Aug 2016 00:47:34 +0000 (UTC)

This is an automated email from the git hooks/post-receive script.

nwest pushed a commit to annotated tag old_usrp_devel_udp
in repository gnuradio.

commit 99476b294a49901f647a0cd40d25f6f6f92ab5c5
Author: Matt Ettus <address@hidden>
Date:   Mon Jan 18 11:36:14 2010 -0800

    should fix the endless packet bug
---
 usrp2/fpga/control_lib/newfifo/fifo19_to_fifo36.v | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/usrp2/fpga/control_lib/newfifo/fifo19_to_fifo36.v 
b/usrp2/fpga/control_lib/newfifo/fifo19_to_fifo36.v
index 8a65d51..5f9aeff 100644
--- a/usrp2/fpga/control_lib/newfifo/fifo19_to_fifo36.v
+++ b/usrp2/fpga/control_lib/newfifo/fifo19_to_fifo36.v
@@ -51,7 +51,9 @@ module fifo19_to_fifo36
             state <= 2;
           2 : 
             if(xfer_out)
-              state       <= 1;
+              if(~f19_eof)
+                state     <= 1;
+          // remain in state 2 if we are at eof
         endcase // case(state)
        else
         if(xfer_out)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]