GNSS-SDR  0.0.21
An Open Source GNSS Software Defined Receiver
gps_l1_ca_pcps_assisted_acquisition.h
Go to the documentation of this file.
1 /*!
2  * \file gps_l1_ca_pcps_assisted_acquisition.h
3  * \brief Adapts a PCPS Assisted acquisition block to an AcquisitionInterface for
4  * GPS L1 C/A signals
5  * \authors <ul>
6  * <li> Javier Arribas, 2011. jarribas(at)cttc.es
7  * </ul>
8  *
9  * -----------------------------------------------------------------------------
10  *
11  * GNSS-SDR is a Global Navigation Satellite System software-defined receiver.
12  * This file is part of GNSS-SDR.
13  *
14  * Copyright (C) 2010-2020 (see AUTHORS file for a list of contributors)
15  * SPDX-License-Identifier: GPL-3.0-or-later
16  *
17  * -----------------------------------------------------------------------------
18  */
19 
20 #ifndef GNSS_SDR_GPS_L1_CA_PCPS_ASSISTED_ACQUISITION_H
21 #define GNSS_SDR_GPS_L1_CA_PCPS_ASSISTED_ACQUISITION_H
22 
23 #include "base_pcps_acquisition_custom.h"
24 
25 /** \addtogroup Acquisition
26  * \{ */
27 /** \addtogroup Acq_adapters
28  * \{ */
29 
30 
31 /*!
32  * \brief This class adapts a PCPS acquisition block to an AcquisitionInterface
33  * for GPS L1 C/A signals
34  */
36 {
37 public:
39  const ConfigurationInterface* configuration,
40  const std::string& role,
41  unsigned int in_streams,
42  unsigned int out_streams);
43 
44  ~GpsL1CaPcpsAssistedAcquisition() = default;
45 
46  /*!
47  * \brief Returns "GPS_L1_CA_PCPS_Assisted_Acquisition"
48  */
49  inline std::string implementation() override
50  {
51  return "GPS_L1_CA_PCPS_Assisted_Acquisition";
52  }
53 
54 private:
55  void code_gen_complex_sampled(own::span<std::complex<float>> dest, uint32_t prn, int32_t sampling_freq) override;
56 };
57 
58 
59 /** \} */
60 /** \} */
61 #endif // GNSS_SDR_GPS_L1_CA_PCPS_ASSISTED_ACQUISITION_H
This class adapts a PCPS acquisition block to an AcquisitionInterface.
This class adapts a PCPS acquisition block to an AcquisitionInterface for GPS L1 C/A signals...
This abstract class represents an interface to configuration parameters.
std::string implementation() override
Returns "GPS_L1_CA_PCPS_Assisted_Acquisition".