summaryrefslogtreecommitdiff
path: root/usrp/fpga/inband_lib/channel_ram.v
diff options
context:
space:
mode:
authoreb <eb@221aa14e-8319-0410-a670-987f0aec2ac5>2007-09-13 23:21:41 +0000
committereb <eb@221aa14e-8319-0410-a670-987f0aec2ac5>2007-09-13 23:21:41 +0000
commit4e7d048aeb80f95b19cebed9d76b79e6cbe64a9a (patch)
tree71eb3edd8fe57d5701ccf3aa7bf624a76e8d1ec9 /usrp/fpga/inband_lib/channel_ram.v
parent6006b92a287fa5a23bcb7905f6f854d9c9dd4462 (diff)
Merged r6329:6428 of features/inband-usb + distcheck fixes into trunk.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@6429 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'usrp/fpga/inband_lib/channel_ram.v')
-rwxr-xr-xusrp/fpga/inband_lib/channel_ram.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/usrp/fpga/inband_lib/channel_ram.v b/usrp/fpga/inband_lib/channel_ram.v
index 40e0efc01c..60450f02dd 100755
--- a/usrp/fpga/inband_lib/channel_ram.v
+++ b/usrp/fpga/inband_lib/channel_ram.v
@@ -101,8 +101,8 @@ module channel_ram
//packet_waiting is set to zero if rd_done_int is high
//because there is no guarantee that nb_packets will be pos.
- assign packet_waiting = (nb_packets != 0) & (~rd_done_int);
-
+ //assign packet_waiting = (nb_packets != 0) & (~rd_done_int);
+ assign packet_waiting = (nb_packets > 1) | ((nb_packets == 1)&(~rd_done_int));
always @(posedge txclk)
if (reset)
nb_packets <= 0;