/////////////////////////////////////////////////////////////////////////////////// // Copyright (C) 2018 F4EXB // // written by Edouard Griffiths // // // // See: http://liquidsdr.org/blog/pll-howto/ // // Fixed filter registers saturation // // Added order for PSK locking. This brilliant idea actually comes from this // // post: https://www.dsprelated.com/showthread/comp.dsp/36356-1.php // // // // 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 SDRBASE_DSP_PHASELOCKCOMPLEX_H_ #define SDRBASE_DSP_PHASELOCKCOMPLEX_H_ #include "dsp/dsptypes.h" #include "util/movingaverage.h" #include "export.h" /** General purpose Phase-locked loop using complex analytic signal input. */ class SDRBASE_API PhaseLockComplex { public: PhaseLockComplex(); /** Compute loop filter parameters (active PI design) * \param wn PLL bandwidth relative to Nyquist frequency * \param zeta PLL damping factor * \param K PLL loop gain * */ void computeCoefficients(Real wn, Real zeta, Real K); /** Set the PSK order for the phase comparator * \param order 0,1: no PSK (CW), 2: BPSK, 4: QPSK, 8: 8-PSK, ... use powers of two for real cases */ void setPskOrder(unsigned int order); /** Set sample rate information only for frequency and lock condition calculation */ void setSampleRate(unsigned int sampleRate); void reset(); void feed(float re, float im); const std::complex& getComplex() const { return m_y; } float getReal() const { return m_yRe; } float getImag() const { return m_yIm; } bool locked() const { return m_lockCount > (m_pskOrder > 1 ? 15 : (m_lockTime1-2)); } // 6 float getDeltaPhi() const { return m_deltaPhi; } float getPhiHat() const { return m_phiHat; } private: /** Normalize angle in radians into the [-pi,+pi] region */ static float normalizeAngle(float angle); // a0 = 1 is implied float m_a1; float m_a2; float m_b0; float m_b1; float m_b2; float m_v0; float m_v1; float m_v2; float m_deltaPhi; float m_phiHat; float m_phiHatPrev; float m_phiHat1; float m_phiHat2; float m_dPhiHatAccum; int m_phiHatCount; std::complex m_y; float m_yRe; float m_yIm; float m_freq; float m_freqPrev; float m_lock; int m_lockCount; unsigned int m_pskOrder; int m_lockTime1; int m_lockTime; float m_lockTimef; float m_lockThreshold; MovingAverageUtilVar m_avgPhi; }; #endif /* SDRBASE_DSP_PHASELOCKCOMPLEX_H_ */