blob: 7dbc618ad796c913b6db385153ec0a39c49b93af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
/* -*- c++ -*- */
/*
* Copyright 2014 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#ifndef INCLUDED_DIGITAL_MSK_TIMING_RECOVERY_CC_H
#define INCLUDED_DIGITAL_MSK_TIMING_RECOVERY_CC_H
#include <gnuradio/block.h>
#include <gnuradio/digital/api.h>
namespace gr {
namespace digital {
/*!
* \brief MSK/GMSK timing recovery
* \ingroup synchronizers_blk
*
* This block performs timing synchronization on CPM modulations using a
* fourth-order nonlinearity feedback method which is non-data-aided. The
* block does not require prior phase synchronization but is relatively
* sensitive to frequency offset (keep offset to 0.1x symbol rate).
*
* For details on the algorithm, see:
* A.N. D'Andrea, U. Mengali, R. Reggiannini: A digital approach to clock
* recovery in generalized minimum shift keying. IEEE Transactions on
* Vehicular Technology, Vol. 39, Issue 3.
*/
class DIGITAL_API msk_timing_recovery_cc : virtual public gr::block
{
public:
typedef std::shared_ptr<msk_timing_recovery_cc> sptr;
/*!
* \brief Make an MSK timing recovery block.
*
* \param sps: Samples per symbol
* \param gain: Loop gain of timing error filter (try 0.05)
* \param limit: Relative limit of timing error (try 0.1 for 10% error max)
* \param osps: Output samples per symbol
*
*/
static sptr make(float sps, float gain, float limit, int osps);
virtual void set_gain(float gain) = 0;
virtual float get_gain(void) = 0;
virtual void set_limit(float limit) = 0;
virtual float get_limit(void) = 0;
virtual void set_sps(float sps) = 0;
virtual float get_sps(void) = 0;
};
} // namespace digital
} // namespace gr
#endif /* INCLUDED_DIGITAL_MSK_TIMING_RECOVERY_CC_H */
|