summaryrefslogtreecommitdiffstats
path: root/firmware
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2010-07-29 16:00:39 -0700
committerJosh Blum <josh@joshknows.com>2010-07-29 16:00:39 -0700
commit23a0454998d8904d4e6f2f3f8bc0a79557043321 (patch)
tree0e41dbbfe13001b23a1cedc12530fd27e0e32ffe /firmware
parentbbe7dd1c8f1bd8f42a0ae3d28f36c0334b0fd3c8 (diff)
downloaduhd-23a0454998d8904d4e6f2f3f8bc0a79557043321.tar.gz
uhd-23a0454998d8904d4e6f2f3f8bc0a79557043321.tar.bz2
uhd-23a0454998d8904d4e6f2f3f8bc0a79557043321.zip
usrp2: added tx policy register and changed fw to not handle error in buffer pool
Diffstat (limited to 'firmware')
-rw-r--r--firmware/microblaze/apps/txrx_uhd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/microblaze/apps/txrx_uhd.c b/firmware/microblaze/apps/txrx_uhd.c
index f7f140121..6b45f8f3b 100644
--- a/firmware/microblaze/apps/txrx_uhd.c
+++ b/firmware/microblaze/apps/txrx_uhd.c
@@ -484,7 +484,7 @@ main(void)
int pending = pic_regs->pending; // poll for under or overrun
if (pending & PIC_UNDERRUN_INT){
- dbsm_handle_tx_underrun(&dsp_tx_sm);
+ //dbsm_handle_tx_underrun(&dsp_tx_sm);
pic_regs->pending = PIC_UNDERRUN_INT; // clear interrupt
putchar('U');
}