///////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2015 F4EXB //
// written by Edouard Griffiths //
// //
// This program is free software; you can redistribute it and/or modify //
// it under the terms of the GNU General Public License as published by //
// the Free Software Foundation as version 3 of the License, or //
// //
// This program is distributed in the hope that it will be useful, //
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
// GNU General Public License V3 for more details. //
// //
// You should have received a copy of the GNU General Public License //
// along with this program. If not, see . //
///////////////////////////////////////////////////////////////////////////////////
#ifndef PLUGINS_CHANNEL_BFM_RDSDEMOD_H_
#define PLUGINS_CHANNEL_BFM_RDSDEMOD_H_
#include
#include
#include
#include "dsp/dsptypes.h"
class RDSDemod : public QObject
{
Q_OBJECT
public:
RDSDemod();
~RDSDemod();
void setSampleRate(int srate);
void process(Real rdsSample, Real pilotSample);
protected:
void biphase(Real acc, Real d_cphi);
Real filter_lp_2400_iq(Real in, int iqIndex);
Real filter_lp_pll(Real input);
int sign(Real a);
private:
struct
{
double subcarr_phi;
double subcarr_bb[2];
double clock_offset;
double clock_phi;
double prev_clock_phi;
double lo_clock;
double prevclock;
double prev_bb;
double d_phi_sc;
double d_cphi;
double acc;
double subcarr_sample;
int c;
int fmfreq;
int bytesread;
int numsamples;
double loop_out;
double prev_loop;
double prev_acc;
int counter;
int reading_frame;
int tot_errs[2];
} m_parms;
Real m_xv[2][2+1];
Real m_yv[2][2+1];
Real m_xw[1+1];
Real m_yw[1+1];
Real m_prev;
Real m_pilotPrev;
int m_srate;
QUdpSocket *m_socket;
Real m_sampleBuffer[1<<12];
int m_sampleBufferIndex;
static const int m_udpSize;
static const Real m_pllBeta;
};
#endif /* PLUGINS_CHANNEL_BFM_RDSDEMOD_H_ */