commit-gnuradio
[Top][All Lists]
Advanced

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

[Commit-gnuradio] r5823 - gnuradio/branches/developers/matt/u2f/control_


From: matt
Subject: [Commit-gnuradio] r5823 - gnuradio/branches/developers/matt/u2f/control_lib
Date: Sat, 23 Jun 2007 18:43:50 -0600 (MDT)

Author: matt
Date: 2007-06-23 18:43:49 -0600 (Sat, 23 Jun 2007)
New Revision: 5823

Modified:
   gnuradio/branches/developers/matt/u2f/control_lib/serdes_tx.v
Log:
added in new signal for errors, which we shouldn't generate


Modified: gnuradio/branches/developers/matt/u2f/control_lib/serdes_tx.v
===================================================================
--- gnuradio/branches/developers/matt/u2f/control_lib/serdes_tx.v       
2007-06-24 00:40:35 UTC (rev 5822)
+++ gnuradio/branches/developers/matt/u2f/control_lib/serdes_tx.v       
2007-06-24 00:43:49 UTC (rev 5823)
@@ -34,6 +34,7 @@
    input [31:0] fifo_data_i,
    output fifo_read_o,
    output fifo_done_o,
+   output fifo_error_o,
    input fifo_ready_i,
    input fifo_empty_i
    );
@@ -116,7 +117,8 @@
        endcase // case(state)
    
    assign fifo_read_o = ((state == RUN2) & ~fifo_empty_i);
-   assign fifo_done_o = 1'b1;  // Unused -- we always send everything we're 
given
+   assign fifo_done_o = 1'b0;  // Unused -- we always send everything we're 
given
+   assign fifo_error_o = 1'b0; // Unused -- there should never be any errors
    
    reg [15:0] CRC;
    wire [15:0] nextCRC;





reply via email to

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