laforge
/
openbts-osmo
Archived
1
0
Fork 0

transceiver: remove extraneous comments

These lines are virtually never enabled.

Signed-off-by: Thomas Tsou <ttsou@vt.edu>
This commit is contained in:
Thomas Tsou 2011-10-19 19:59:23 -04:00
parent 86545d1ab9
commit 331755f458
1 changed files with 1 additions and 4 deletions

View File

@ -22,7 +22,6 @@
*/
//#define NDEBUG
#include "radioInterface.h"
#include <Logger.h>
@ -156,8 +155,7 @@ void RadioInterface::unRadioifyVector(short *shortVector, signalVector& newVecto
signalVector::iterator itr = newVector.begin();
short *shortItr = shortVector;
while (itr < newVector.end()) {
*itr++ = Complex<float>(*(shortItr),*(shortItr+1));
//LOG(DEEPDEBUG) << (*(itr-1));
*itr++ = Complex<float>(*shortItr,*(shortItr+1));
shortItr += 2;
}
@ -175,7 +173,6 @@ void RadioInterface::pushBuffer(void) {
INCHUNK,
&underrun,
writeTimestamp);
//LOG(DEEPDEBUG) << "writeTimestamp: " << writeTimestamp << ", samplesWritten: " << samplesWritten;
writeTimestamp += (TIMESTAMP) samplesWritten;