1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-07-03 18:33:15 +00:00
gnss-sdr/src/algorithms/data_type_adapter/adapters/ibyte_to_cbyte.h

88 lines
2.3 KiB
C
Raw Normal View History

/*!
* \file ibyte_to_cbyte.h
* \brief \brief Adapts an I/Q interleaved byte (unsigned char) sample stream
* into a std::complex<unsigned char> stream
* \author Carles Fernandez Prades, cfernandez(at)cttc.es
*
2020-07-28 14:57:15 +00:00
* -----------------------------------------------------------------------------
*
* 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
*
2020-07-28 14:57:15 +00:00
* -----------------------------------------------------------------------------
*/
#ifndef GNSS_SDR_IBYTE_TO_CBYTE_H
#define GNSS_SDR_IBYTE_TO_CBYTE_H
2017-11-17 08:21:03 +00:00
#include "conjugate_ic.h"
#include "gnss_block_interface.h"
#include "interleaved_byte_to_complex_byte.h"
#include <gnuradio/blocks/file_sink.h>
2020-07-03 23:06:32 +00:00
#include <cstdint>
#include <string>
/** \addtogroup Data_Type
* \{ */
/** \addtogroup Data_type_adapters
* \{ */
class ConfigurationInterface;
/*!
* \briefAdapts an I/Q interleaved byte (unsigned char) sample stream
* into a std::complex<unsigned char> stream
*/
class IbyteToCbyte : public GNSSBlockInterface
{
public:
IbyteToCbyte(const ConfigurationInterface* configuration,
const std::string& role, unsigned int in_streams,
unsigned int out_streams);
~IbyteToCbyte() = default;
inline std::string role() override
{
return role_;
}
2015-02-17 01:31:22 +00:00
//! Returns "Ibyte_To_Cbyte"
inline std::string implementation() override
{
2015-02-17 01:31:22 +00:00
return "Ibyte_To_Cbyte";
}
inline size_t item_size() override
{
2020-07-03 23:06:32 +00:00
return 2 * sizeof(int8_t);
}
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;
private:
interleaved_byte_to_complex_byte_sptr ibyte_to_cbyte_;
2020-06-25 09:58:01 +00:00
conjugate_ic_sptr conjugate_ic_;
gr::blocks::file_sink::sptr file_sink_;
std::string dump_filename_;
std::string input_item_type_;
std::string output_item_type_;
std::string role_;
unsigned int in_streams_;
unsigned int out_streams_;
2017-11-17 08:21:03 +00:00
bool inverted_spectrum;
2020-06-25 09:58:01 +00:00
bool dump_;
};
/** \} */
/** \} */
#endif // GNSS_SDR_IBYTE_TO_CBYTE_H