diff options
| -rw-r--r-- | host/apps/omap_debug/usrp-e-crc-rw.c | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/host/apps/omap_debug/usrp-e-crc-rw.c b/host/apps/omap_debug/usrp-e-crc-rw.c index 9e3e7eb5d..20ad376c8 100644 --- a/host/apps/omap_debug/usrp-e-crc-rw.c +++ b/host/apps/omap_debug/usrp-e-crc-rw.c @@ -98,10 +98,12 @@ static void *read_thread(void *threadid)  		(*rxi)[rb_read].flags = RB_KERNEL; +#if 0  		if (rx_crc != (crc & 0xFFFFFFFF)) {  			printf("CRC Error, calc crc: %X, rx_crc: %X\n",  				(crc & 0xFFFFFFFF), rx_crc);  		} +#endif  		rb_read++;  		if (rb_read == rb_size.num_rx_frames) @@ -115,7 +117,7 @@ static void *read_thread(void *threadid)  			printf("Bytes transfered = %ld, elapsed seconds = %ld\n", bytes_transfered, elapsed_seconds);  			printf("RX data transfer rate = %f K Samples/second\n", -				(float) bytes_transfered / (float) elapsed_seconds / 250); +				(float) bytes_transfered / (float) elapsed_seconds / 4000);  			start_time = finish_time; | 
