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;
_______________________________________________
Commit-gnuradio mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/commit-gnuradio