aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2018-08-30 20:47:20 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2018-09-10 10:30:06 +0200
commit21ce05c54f16f44c70dfc32ea445589502ea7d89 (patch)
tree630e1638ad009a5444c7958c294c04ab6377f174
parent5e68cde779dc6ef4f84f32422c25c558dea650d3 (diff)
cosmetic: Fix trailing whitespace in several files
-rw-r--r--CommonLibs/Vector.h2
-rw-r--r--Transceiver52M/sigProcLib.cpp18
2 files changed, 10 insertions, 10 deletions
diff --git a/CommonLibs/Vector.h b/CommonLibs/Vector.h
index 0ba1b9e..51a9fb1 100644
--- a/CommonLibs/Vector.h
+++ b/CommonLibs/Vector.h
@@ -282,7 +282,7 @@ template <class T> class Vector {
T* end() { return mEnd; }
bool isOwner() { return !!mData; } // Do we own any memory ourselves?
//@}
-
+
};
diff --git a/Transceiver52M/sigProcLib.cpp b/Transceiver52M/sigProcLib.cpp
index 2040b36..692fbe0 100644
--- a/Transceiver52M/sigProcLib.cpp
+++ b/Transceiver52M/sigProcLib.cpp
@@ -1102,17 +1102,17 @@ static complex interpolatePoint(const signalVector &inSig, float ix)
if (start < 0) start = 0;
int end = (int) (floor(ix) + 11);
if ((unsigned) end > inSig.size()-1) end = inSig.size()-1;
-
+
complex pVal = 0.0;
if (!inSig.isReal()) {
- for (int i = start; i < end; i++)
+ for (int i = start; i < end; i++)
pVal += inSig[i] * sinc(M_PI_F*(i-ix));
}
else {
- for (int i = start; i < end; i++)
+ for (int i = start; i < end; i++)
pVal += inSig[i].real() * sinc(M_PI_F*(i-ix));
}
-
+
return pVal;
}
@@ -1157,12 +1157,12 @@ static complex peakDetect(const signalVector &rxBurst,
// to save computation, we'll use early-late balancing
float earlyIndex = maxIndex-1;
float lateIndex = maxIndex+1;
-
+
float incr = 0.5;
while (incr > 1.0/1024.0) {
complex earlyP = interpolatePoint(rxBurst,earlyIndex);
complex lateP = interpolatePoint(rxBurst,lateIndex);
- if (earlyP < lateP)
+ if (earlyP < lateP)
earlyIndex += incr;
else if (earlyP > lateP)
earlyIndex -= incr;
@@ -1250,7 +1250,7 @@ static bool generateMidamble(int sps, int tsc)
// NOTE: Because ideal TSC 16-bit midamble is 66 symbols into burst,
// the ideal TSC has an + 180 degree phase shift,
- // due to the pi/2 frequency shift, that
+ // due to the pi/2 frequency shift, that
// needs to be accounted for.
// 26-midamble is 61 symbols into burst, has +90 degree phase shift.
scaleVector(*midMidamble, complex(-1.0, 0.0));
@@ -1589,7 +1589,7 @@ static int detectGeneralBurst(const signalVector &rxBurst,
}
-/*
+/*
* RACH burst detection
*
* Correlation window parameters:
@@ -1614,7 +1614,7 @@ static int detectRACHBurst(const signalVector &burst, float threshold, int sps,
return rc;
}
-/*
+/*
* Normal burst detection
*
* Correlation window parameters: