summaryrefslogtreecommitdiffstats
path: root/firmware/zpu/apps
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2011-07-19 14:14:27 -0700
committerJosh Blum <josh@joshknows.com>2011-07-19 14:14:27 -0700
commit64382c4c8626e429f91865ab27c9e0a69da5edf3 (patch)
tree6bc295ba68c0fc3494b4a1b5e6e1d0214d98d5e3 /firmware/zpu/apps
parentade354a29e4d0dab3923462e97410bde6de3eb90 (diff)
downloaduhd-64382c4c8626e429f91865ab27c9e0a69da5edf3.tar.gz
uhd-64382c4c8626e429f91865ab27c9e0a69da5edf3.tar.bz2
uhd-64382c4c8626e429f91865ab27c9e0a69da5edf3.zip
usrp2: comment out poll + print overflow/underflow in fw
Diffstat (limited to 'firmware/zpu/apps')
-rw-r--r--firmware/zpu/apps/txrx_uhd.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/firmware/zpu/apps/txrx_uhd.c b/firmware/zpu/apps/txrx_uhd.c
index 5bf8ca725..0d05b58db 100644
--- a/firmware/zpu/apps/txrx_uhd.c
+++ b/firmware/zpu/apps/txrx_uhd.c
@@ -357,6 +357,7 @@ main(void)
}
pic_interrupt_handler();
+ /*
int pending = pic_regs->pending; // poll for under or overrun
if (pending & PIC_UNDERRUN_INT){
@@ -368,5 +369,6 @@ main(void)
pic_regs->pending = PIC_OVERRUN_INT; // clear interrupt
putchar('O');
}
+ */
}
}