aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Transceiver52M/sigProcLib.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/Transceiver52M/sigProcLib.cpp b/Transceiver52M/sigProcLib.cpp
index cb03b0c..6a64396 100644
--- a/Transceiver52M/sigProcLib.cpp
+++ b/Transceiver52M/sigProcLib.cpp
@@ -704,7 +704,7 @@ static signalVector *modulateBurstLaurent(const BitVector &bits,
{
int burst_len;
float phase;
- signalVector *c0_pulse, *c1_pulse, *c0_burst, *c2_burst;
+ signalVector *c0_pulse, *c1_pulse, *c0_burst;
signalVector *c1_burst, *c0_shaped, *c1_shaped, *c2_shaped;
signalVector::iterator c0_itr, c1_itr;
@@ -738,9 +738,6 @@ static signalVector *modulateBurstLaurent(const BitVector &bits,
c1_burst->isReal(true);
c1_itr = c1_burst->begin();
- c2_burst = new signalVector(625, c0_pulse->size());
- c2_burst->isReal(false);
-
/* Padded differential start bits */
*c0_itr = 2.0 * (0x00 & 0x01) - 1.0;
c0_itr += sps;
@@ -831,7 +828,6 @@ static signalVector *modulateBurstLaurent(const BitVector &bits,
delete c0_burst;
delete c1_burst;
- delete c2_burst;
delete c0_shaped;
delete c1_shaped;