/*! * \file ibyte_to_cshort.cc * \brief Adapts an I/Q interleaved short integer (16 bits) sample stream * to a gr_complex (float) stream * \author Carles Fernandez-Prades, cfernandez(at)cttc.es * * ------------------------------------------------------------------------- * * Copyright (C) 2010-2018 (see AUTHORS file for a list of contributors) * * GNSS-SDR is a software defined Global Navigation * Satellite Systems receiver * * This file is part of GNSS-SDR. * * GNSS-SDR is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * GNSS-SDR is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with GNSS-SDR. If not, see . * * ------------------------------------------------------------------------- */ #include "ibyte_to_cshort.h" #include "configuration_interface.h" #include #include IbyteToCshort::IbyteToCshort(ConfigurationInterface* configuration, const std::string& role, unsigned int in_streams, unsigned int out_streams) : config_(configuration), role_(role), in_streams_(in_streams), out_streams_(out_streams) { std::string default_input_item_type = "byte"; std::string default_output_item_type = "cshort"; std::string default_dump_filename = "../data/input_filter.dat"; DLOG(INFO) << "role " << role_; input_item_type_ = config_->property(role_ + ".input_item_type", default_input_item_type); dump_ = config_->property(role_ + ".dump", false); dump_filename_ = config_->property(role_ + ".dump_filename", default_dump_filename); inverted_spectrum = configuration->property(role + ".inverted_spectrum", false); size_t item_size = sizeof(lv_16sc_t); interleaved_byte_to_complex_short_ = make_interleaved_byte_to_complex_short(); DLOG(INFO) << "data_type_adapter_(" << interleaved_byte_to_complex_short_->unique_id() << ")"; if (dump_) { DLOG(INFO) << "Dumping output into file " << dump_filename_; file_sink_ = gr::blocks::file_sink::make(item_size, dump_filename_.c_str()); } if (inverted_spectrum) { conjugate_sc_ = make_conjugate_sc(); } if (in_streams_ > 1) { LOG(ERROR) << "This implementation only supports one input stream"; } if (out_streams_ > 1) { LOG(ERROR) << "This implementation only supports one output stream"; } } void IbyteToCshort::connect(gr::top_block_sptr top_block) { if (dump_) { if (inverted_spectrum) { top_block->connect(interleaved_byte_to_complex_short_, 0, conjugate_sc_, 0); top_block->connect(conjugate_sc_, 0, file_sink_, 0); } else { top_block->connect(interleaved_byte_to_complex_short_, 0, file_sink_, 0); } } else { if (inverted_spectrum) { top_block->connect(interleaved_byte_to_complex_short_, 0, conjugate_sc_, 0); } } } void IbyteToCshort::disconnect(gr::top_block_sptr top_block) { if (dump_) { if (inverted_spectrum) { top_block->disconnect(interleaved_byte_to_complex_short_, 0, conjugate_sc_, 0); top_block->disconnect(conjugate_sc_, 0, file_sink_, 0); } else { top_block->disconnect(interleaved_byte_to_complex_short_, 0, file_sink_, 0); } } else { if (inverted_spectrum) { top_block->disconnect(interleaved_byte_to_complex_short_, 0, conjugate_sc_, 0); } } } gr::basic_block_sptr IbyteToCshort::get_left_block() { return interleaved_byte_to_complex_short_; } gr::basic_block_sptr IbyteToCshort::get_right_block() { if (inverted_spectrum) { return conjugate_sc_; } return interleaved_byte_to_complex_short_; }