commit-gnuradio
[Top][All Lists]
Advanced

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

[Commit-gnuradio] r5860 - gnuradio/branches/developers/matt/u2f/sdr_lib


From: matt
Subject: [Commit-gnuradio] r5860 - gnuradio/branches/developers/matt/u2f/sdr_lib
Date: Thu, 28 Jun 2007 00:57:10 -0600 (MDT)

Author: matt
Date: 2007-06-28 00:57:09 -0600 (Thu, 28 Jun 2007)
New Revision: 5860

Modified:
   gnuradio/branches/developers/matt/u2f/sdr_lib/dsp_core_rx.v
   gnuradio/branches/developers/matt/u2f/sdr_lib/dsp_core_tx.v
Log:
add port for fifo errors


Modified: gnuradio/branches/developers/matt/u2f/sdr_lib/dsp_core_rx.v
===================================================================
--- gnuradio/branches/developers/matt/u2f/sdr_lib/dsp_core_rx.v 2007-06-28 
06:56:38 UTC (rev 5859)
+++ gnuradio/branches/developers/matt/u2f/sdr_lib/dsp_core_rx.v 2007-06-28 
06:57:09 UTC (rev 5860)
@@ -9,11 +9,14 @@
    output [31:0] rx_dat_o,
    output rx_write_o,
    output rx_done_o,
+   output rx_error_o,
    input rx_ready_i,
    input rx_full_i,
    output overrun
    );
 
+   assign rx_error_o = 0;
+   
    wire [15:0] scale_i, scale_q;
    wire [31:0] phase_inc;
    reg [31:0]  phase;

Modified: gnuradio/branches/developers/matt/u2f/sdr_lib/dsp_core_tx.v
===================================================================
--- gnuradio/branches/developers/matt/u2f/sdr_lib/dsp_core_tx.v 2007-06-28 
06:56:38 UTC (rev 5859)
+++ gnuradio/branches/developers/matt/u2f/sdr_lib/dsp_core_tx.v 2007-06-28 
06:57:09 UTC (rev 5860)
@@ -9,11 +9,13 @@
    input [31:0] tx_dat_i,
    output tx_read_o,
    output tx_done_o,
+   output tx_error_o,
    input tx_ready_i,
    input tx_empty_i,
    output underrun
    );
 
+   assign tx_error_o = 0;
    wire [15:0] i, q, scale_i, scale_q;
    wire [31:0] phase_inc;
    reg [31:0]  phase;





reply via email to

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