diff options
author | Josh Blum <josh@joshknows.com> | 2011-07-19 14:14:27 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-07-19 14:14:27 -0700 |
commit | 64382c4c8626e429f91865ab27c9e0a69da5edf3 (patch) | |
tree | 6bc295ba68c0fc3494b4a1b5e6e1d0214d98d5e3 | |
parent | ade354a29e4d0dab3923462e97410bde6de3eb90 (diff) | |
download | uhd-64382c4c8626e429f91865ab27c9e0a69da5edf3.tar.gz uhd-64382c4c8626e429f91865ab27c9e0a69da5edf3.tar.bz2 uhd-64382c4c8626e429f91865ab27c9e0a69da5edf3.zip |
usrp2: comment out poll + print overflow/underflow in fw
-rw-r--r-- | firmware/zpu/apps/txrx_uhd.c | 2 |
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'); } + */ } } |