Skip to content

Commit

Permalink
Remove sql
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy committed Jan 19, 2025
1 parent 9c0999f commit 277e838
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 8 deletions.
1 change: 0 additions & 1 deletion decode/burstmskdemodulator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ BurstMskDemodulator::BurstMskDemodulator(QObject *parent) : QObject(parent) {

void BurstMskDemodulator::setAFC(bool state) { afc = state; }

void BurstMskDemodulator::setSQL(bool state) { sql = state; }
void BurstMskDemodulator::setCPUReduce(bool state) { cpuReduce = state; }
void BurstMskDemodulator::setScatterPointType(ScatterPointType type) {
scatterpointtype = type;
Expand Down
3 changes: 0 additions & 3 deletions decode/burstmskdemodulator.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ class BurstMskDemodulator : public QObject {
void setSettings(Settings settings);
void invalidatesettings();
void setAFC(bool state);
void setSQL(bool state);
void setCPUReduce(bool state);
void setScatterPointType(ScatterPointType type);
double getCurrentFreq();
Expand All @@ -63,8 +62,6 @@ class BurstMskDemodulator : public QObject {
WaveTable mixer_center;
WaveTable mixer2;

bool sql;

int spectrumnfft, bbnfft;

QVector<double> spectrumcycbuff;
Expand Down
2 changes: 0 additions & 2 deletions decode/burstoqpskdemodulator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,6 @@ BurstOqpskDemodulator::~BurstOqpskDemodulator() {

void BurstOqpskDemodulator::setAFC(bool state) { afc = state; }

void BurstOqpskDemodulator::setSQL(bool state) { sql = state; }

void BurstOqpskDemodulator::setCPUReduce(bool state) { cpuReduce = state; }

void BurstOqpskDemodulator::setScatterPointType(ScatterPointType type) {
Expand Down
2 changes: 0 additions & 2 deletions decode/burstoqpskdemodulator.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ class BurstOqpskDemodulator : public QObject {
explicit BurstOqpskDemodulator(QObject *parent);
~BurstOqpskDemodulator();
void setAFC(bool state);
void setSQL(bool state);
void setCPUReduce(bool state);
void setSettings(Settings settings);
void invalidatesettings();
Expand Down Expand Up @@ -77,7 +76,6 @@ class BurstOqpskDemodulator : public QObject {

QPointer<QIODevice> pdatasinkdevice;
bool afc;
bool sql;
int scatterpointtype;

double Fs;
Expand Down

0 comments on commit 277e838

Please sign in to comment.