/* -*- c++ -*- */ /* * gr-satnogs: SatNOGS GNU Radio Out-Of-Tree Module * * Copyright (C) 2016, Libre Space Foundation * * 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, either version 3 of the License, or * (at your option) any later version. * * 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 for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #ifndef INCLUDED_SATNOGS_COARSE_DOPPLER_CORRECTION_CC_H #define INCLUDED_SATNOGS_COARSE_DOPPLER_CORRECTION_CC_H #include #include namespace gr { namespace satnogs { /*! * \brief This block corrects the doppler effect between the ground * station and the satellite in a coarse and very simplified way. * Instead of changing the hardware center frequency, we use an NCO * to digitally compensate the doppler effect. * * \ingroup satnogs * */ class SATNOGS_API coarse_doppler_correction_cc : virtual public gr::sync_block { public: typedef boost::shared_ptr sptr; /** * The doppler correction block. The input is the complex signal at * baseband as it comes from the SDR device. * * The message input \p freq receives periodically messages containing * the predicted absolute frequency of the satellite at that specific time. * @param target_freq the absolute frequency of the satellite * @param offset the frequency offset from the actuall target frequency. * This is very common on SDR receivers to avoid DC spikes at the center * frequency. This block can automatically compensate this offset * @param sampling_rate the sampling rate of the signal */ static sptr make(double target_freq, double offset, double sampling_rate); }; } // namespace satnogs } // namespace gr #endif /* INCLUDED_SATNOGS_COARSE_DOPPLER_CORRECTION_CC_H */