-
Notifications
You must be signed in to change notification settings - Fork 725
Expand file tree
/
Copy pathhybrid_observables.h
More file actions
92 lines (78 loc) · 2.48 KB
/
Copy pathhybrid_observables.h
File metadata and controls
92 lines (78 loc) · 2.48 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/*!
* \file hybrid_observables.h
* \brief Implementation of an adapter of an observables block accepting all kind
* of signals to a ObservablesInterface
* \author Mara Branzanti 2013. mara.branzanti(at)gmail.com
* \author Javier Arribas 2013. jarribas(at)cttc.es
*
* -----------------------------------------------------------------------------
*
* GNSS-SDR is a Global Navigation Satellite System software-defined receiver.
* This file is part of GNSS-SDR.
*
* Copyright (C) 2010-2020 (see AUTHORS file for a list of contributors)
* SPDX-License-Identifier: GPL-3.0-or-later
*
* -----------------------------------------------------------------------------
*/
#ifndef GNSS_SDR_HYBRID_OBSERVABLES_H
#define GNSS_SDR_HYBRID_OBSERVABLES_H
#include "gnss_synchro.h"
#include "hybrid_observables_gs.h"
#include "observables_interface.h"
#include <gnuradio/gr_complex.h> // for gr_complex
#include <gnuradio/runtime_types.h> // for basic_block_sptr, top_block_sptr
#include <cstddef>
#include <string>
/** \addtogroup Observables
* Classes for the computation of GNSS observables
* \{ */
/** \addtogroup Observables_adapters obs_adapters
* Wrap GNU Radio observables blocks with an ObservablesInterface
* \{ */
class ConfigurationInterface;
/*!
* \brief This class implements an ObservablesInterface for observables of all kind of GNSS signals
*/
class HybridObservables : public ObservablesInterface
{
public:
HybridObservables(const ConfigurationInterface* configuration,
const std::string& role,
unsigned int in_streams,
unsigned int out_streams);
~HybridObservables() = default;
inline std::string role() override
{
return role_;
}
//! Returns "Hybrid_Observables"
inline std::string implementation() override
{
return "Hybrid_Observables";
}
void connect(gr::top_block_sptr top_block) override;
void disconnect(gr::top_block_sptr top_block) override;
gr::basic_block_sptr get_left_block() override;
gr::basic_block_sptr get_right_block() override;
inline void reset() override
{
return;
}
//! All blocks must have an item_size() function implementation
inline size_t item_size() override
{
return sizeof(Gnss_Synchro);
}
private:
hybrid_observables_gs_sptr observables_;
std::string dump_filename_;
std::string role_;
unsigned int in_streams_;
unsigned int out_streams_;
bool dump_;
bool dump_mat_;
};
/** \} */
/** \} */
#endif