summaryrefslogtreecommitdiffstats
path: root/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
commitc459c56ac7993b28e87e94bae21d152b4ff7799b (patch)
treedb8107c2809cee88164a0a140068e29b029098c1 /inband_lib/channel_ram.v
parent3872941ae16eab596f48429057b3490b256bce6d (diff)
downloaduhd-c459c56ac7993b28e87e94bae21d152b4ff7799b.tar.gz
uhd-c459c56ac7993b28e87e94bae21d152b4ff7799b.tar.bz2
uhd-c459c56ac7993b28e87e94bae21d152b4ff7799b.zip
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 'inband_lib/channel_ram.v')
-rwxr-xr-xinband_lib/channel_ram.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/inband_lib/channel_ram.v b/inband_lib/channel_ram.v
index 40e0efc01..60450f02d 100755
--- a/inband_lib/channel_ram.v
+++ b/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;