aboutsummaryrefslogtreecommitdiffstats
path: root/Transceiver52M/sigProcLib.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Transceiver52M/sigProcLib.cpp')
-rw-r--r--Transceiver52M/sigProcLib.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/Transceiver52M/sigProcLib.cpp b/Transceiver52M/sigProcLib.cpp
index d57f8b4..467a203 100644
--- a/Transceiver52M/sigProcLib.cpp
+++ b/Transceiver52M/sigProcLib.cpp
@@ -2137,6 +2137,15 @@ SoftVector *demodEdgeBurst(signalVector &burst, int sps,
return bits;
}
+SoftVector *demodAnyBurst(signalVector &burst, int sps, complex amp,
+ float toa, CorrType type)
+{
+ if (type == EDGE)
+ return demodEdgeBurst(burst, sps, amp, toa);
+ else
+ return demodGmskBurst(burst, sps, amp, toa);
+}
+
bool sigProcLibSetup()
{
initTrigTables();