GNSS-SDR  0.0.21
An Open Source GNSS Software Defined Receiver
galileo_e1_pcps_quicksync_ambiguous_acquisition.h
Go to the documentation of this file.
1 /*!
2  * \file galileo_e1_pcps_quicksync_ambiguous_acquisition.h
3  * \brief Adapts a PCPS acquisition block to an AcquisitionInterface for Galileo E1 Signals
4  * \date June, 2014
5  * \author Damian Miralles Sanchez. dmiralles2009@gmail.com
6  *
7  * -----------------------------------------------------------------------------
8  *
9  * GNSS-SDR is a Global Navigation Satellite System software-defined receiver.
10  * This file is part of GNSS-SDR.
11  *
12  * Copyright (C) 2010-2020 (see AUTHORS file for a list of contributors)
13  * SPDX-License-Identifier: GPL-3.0-or-later
14  *
15  * -----------------------------------------------------------------------------
16  */
17 
18 #ifndef GNSS_SDR_GALILEO_E1_PCPS_QUICKSYNC_AMBIGUOUS_ACQUISITION_H
19 #define GNSS_SDR_GALILEO_E1_PCPS_QUICKSYNC_AMBIGUOUS_ACQUISITION_H
20 
21 #include "base_pcps_acquisition_custom.h"
22 
23 /** \addtogroup Acquisition
24  * \{ */
25 /** \addtogroup Acq_adapters
26  * \{ */
27 
28 /*!
29  * \brief This class adapts a PCPS acquisition block to an
30  * AcquisitionInterface for Galileo E1 Signals
31  */
33 {
34 public:
36  const ConfigurationInterface* configuration,
37  const std::string& role,
38  unsigned int in_streams,
39  unsigned int out_streams);
40 
42 
43  /*!
44  * \brief Returns "Galileo_E1_PCPS_Ambiguous_Acquisition"
45  */
46  inline std::string implementation() override
47  {
48  return "Galileo_E1_PCPS_QuickSync_Ambiguous_Acquisition";
49  }
50 
51 private:
53  const ConfigurationInterface* configuration,
54  const std::string& role,
55  unsigned int in_streams,
56  unsigned int out_streams,
57  uint32_t folding_factor);
58 
59  void code_gen_complex_sampled(own::span<std::complex<float>> dest, uint32_t prn, int32_t sampling_freq) override;
60 
61  const bool cboc_;
62 };
63 
64 
65 /** \} */
66 /** \} */
67 #endif // GNSS_SDR_GALILEO_E1_PCPS_QUICKSYNC_AMBIGUOUS_ACQUISITION_H
This class adapts a PCPS acquisition block to an AcquisitionInterface.
std::string implementation() override
Returns "Galileo_E1_PCPS_Ambiguous_Acquisition".
This abstract class represents an interface to configuration parameters.
This class adapts a PCPS acquisition block to an AcquisitionInterface for Galileo E1 Signals...