aboutsummaryrefslogtreecommitdiffstats
path: root/Transceiver52M/sigProcLib.h
diff options
context:
space:
mode:
authorTom Tsou <tom.tsou@ettus.com>2016-03-06 00:58:56 -0800
committerTom Tsou <tom.tsou@ettus.com>2016-03-06 19:10:46 -0800
commit2079a3c66481660317cdc25ef0118ee73a7b7839 (patch)
tree6a082433336bc225fa871f7254d350c003cb8c32 /Transceiver52M/sigProcLib.h
parent99cf930f9a39827d7bd4e5253079fe625a6e0f57 (diff)
sigproc: Remove dynamic SPS configuration
Samples per symbol used by the transceiver is not configurable through the socket interface once running, so stop pretending like it could be. Initialize all tables and midambles at start. Signed-off-by: Tom Tsou <tom.tsou@ettus.com>
Diffstat (limited to 'Transceiver52M/sigProcLib.h')
-rw-r--r--Transceiver52M/sigProcLib.h18
1 files changed, 1 insertions, 17 deletions
diff --git a/Transceiver52M/sigProcLib.h b/Transceiver52M/sigProcLib.h
index 8685f2d..c6dd172 100644
--- a/Transceiver52M/sigProcLib.h
+++ b/Transceiver52M/sigProcLib.h
@@ -49,7 +49,7 @@ float vectorNorm2(const signalVector &x);
float vectorPower(const signalVector &x);
/** Setup the signal processing library */
-bool sigProcLibSetup(int sps);
+bool sigProcLibSetup();
/** Destroy the signal processing library */
void sigProcLibDestroy(void);
@@ -152,22 +152,6 @@ void scaleVector(signalVector &x,
complex scale);
/**
- Generate a modulated GSM midamble, stored within the library.
- @param gsmPulse The GSM pulse used for modulation.
- @param sps The number of samples per GSM symbol.
- @param TSC The training sequence [0..7]
- @return Success.
-*/
-bool generateMidamble(int sps, int tsc);
-/**
- Generate a modulated RACH sequence, stored within the library.
- @param gsmPulse The GSM pulse used for modulation.
- @param sps The number of samples per GSM symbol.
- @return Success.
-*/
-bool generateRACHSequence(int sps);
-
-/**
Energy detector, checks to see if received burst energy is above a threshold.
@param rxBurst The received GSM burst of interest.
@param windowLength The number of burst samples used to compute burst energy