1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-07-03 18:42:56 +00:00

Add multiple RF output capability to LabSat 3 Wideband format

This commit is contained in:
Carles Fernandez 2021-03-14 20:00:18 +01:00
parent 60a7a6d51d
commit 9e1ee33cd2
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D
5 changed files with 565 additions and 420 deletions

View File

@ -63,7 +63,8 @@ SPDX-FileCopyrightText: 2011-2021 Carles Fernandez-Prades <carles.fernandez@cttc
- Fix bug that made the Monitor block to always set to 0 the - Fix bug that made the Monitor block to always set to 0 the
`carrier_phase_rads` parameter value. `carrier_phase_rads` parameter value.
- The `Labsat_Signal_Source` implementation of the `SignalSource` block now can - The `Labsat_Signal_Source` implementation of the `SignalSource` block now can
read files in the LabSat 3 Wideband format (`.LS3W`). read files in the LabSat 3 Wideband format (`.LS3W`). When using this format,
this source block can provide multiple RF chain outputs.
- Replace `Receiver.sources_count` configuration parameter name by - Replace `Receiver.sources_count` configuration parameter name by
`GNSS-SDR.num_sources`. The former parameter name is still read to ensure `GNSS-SDR.num_sources`. The former parameter name is still read to ensure
backward compatibility with configuration files using that nomenclature. backward compatibility with configuration files using that nomenclature.

View File

@ -1,6 +1,6 @@
/*! /*!
* \file labsat_signal_source.cc * \file labsat_signal_source.cc
* \brief Labsat 2 and 3 front-end signal sampler driver * \brief LabSat version 2, 3, and 3 Wideband format reader
* \author Javier Arribas, jarribas(at)cttc.es * \author Javier Arribas, jarribas(at)cttc.es
* *
* ----------------------------------------------------------------------------- * -----------------------------------------------------------------------------
@ -8,7 +8,7 @@
* GNSS-SDR is a Global Navigation Satellite System software-defined receiver. * GNSS-SDR is a Global Navigation Satellite System software-defined receiver.
* This file is part of GNSS-SDR. * This file is part of GNSS-SDR.
* *
* Copyright (C) 2010-2020 (see AUTHORS file for a list of contributors) * Copyright (C) 2010-2021 (see AUTHORS file for a list of contributors)
* SPDX-License-Identifier: GPL-3.0-or-later * SPDX-License-Identifier: GPL-3.0-or-later
* *
* ----------------------------------------------------------------------------- * -----------------------------------------------------------------------------
@ -19,6 +19,8 @@
#include "gnss_sdr_string_literals.h" #include "gnss_sdr_string_literals.h"
#include "labsat23_source.h" #include "labsat23_source.h"
#include <glog/logging.h> #include <glog/logging.h>
#include <iostream>
#include <sstream>
using namespace std::string_literals; using namespace std::string_literals;
@ -37,7 +39,25 @@ LabsatSignalSource::LabsatSignalSource(const ConfigurationInterface* configurati
const int64_t sampling_frequency_deprecated = configuration->property(role + ".sampling_frequency", static_cast<int64_t>(16368000)); const int64_t sampling_frequency_deprecated = configuration->property(role + ".sampling_frequency", static_cast<int64_t>(16368000));
const int64_t throttle_frequency_sps = configuration->property(role + ".throttle_frequency_sps", static_cast<int64_t>(sampling_frequency_deprecated)); const int64_t throttle_frequency_sps = configuration->property(role + ".throttle_frequency_sps", static_cast<int64_t>(sampling_frequency_deprecated));
const int channel_selector = configuration->property(role + ".selected_channel", 1); std::string channels_to_read = configuration->property(role + ".selected_channel", default_item_type);
std::stringstream ss(channels_to_read);
int found;
while (ss.good())
{
std::string substr;
getline(ss, substr, ',');
if (std::stringstream(substr) >> found)
{
if (found >= 1 && found <= 3)
{
channels_selector_vec_.push_back(found);
}
}
}
if (channels_selector_vec_.empty())
{
channels_selector_vec_.push_back(1);
}
const std::string default_filename("./example_capture.LS3"); const std::string default_filename("./example_capture.LS3");
filename_ = configuration->property(role + ".filename", default_filename); filename_ = configuration->property(role + ".filename", default_filename);
@ -47,7 +67,7 @@ LabsatSignalSource::LabsatSignalSource(const ConfigurationInterface* configurati
if (item_type_ == "gr_complex") if (item_type_ == "gr_complex")
{ {
item_size_ = sizeof(gr_complex); item_size_ = sizeof(gr_complex);
labsat23_source_ = labsat23_make_source_sptr(filename_.c_str(), channel_selector, queue, digital_io_enabled); labsat23_source_ = labsat23_make_source_sptr(filename_.c_str(), channels_selector_vec_, queue, digital_io_enabled);
DLOG(INFO) << "Item size " << item_size_; DLOG(INFO) << "Item size " << item_size_;
DLOG(INFO) << "labsat23_source_(" << labsat23_source_->unique_id() << ")"; DLOG(INFO) << "labsat23_source_(" << labsat23_source_->unique_id() << ")";
} }
@ -58,50 +78,96 @@ LabsatSignalSource::LabsatSignalSource(const ConfigurationInterface* configurati
} }
if (dump_) if (dump_)
{ {
DLOG(INFO) << "Dumping output into file " << dump_filename_; std::vector<std::string> dump_filename;
DLOG(INFO) << "file_sink(" << file_sink_->unique_id() << ")"; file_sink_.reserve(channels_selector_vec_.size());
file_sink_ = gr::blocks::file_sink::make(item_size_, dump_filename_.c_str()); for (int i : channels_selector_vec_)
{
if (channels_selector_vec_.size() == 1)
{
dump_filename.push_back(dump_filename_);
}
else
{
std::string aux(dump_filename_.substr(0, dump_filename_.length() - 4));
std::string extension(dump_filename_.substr(dump_filename_.length() - 3, dump_filename_.length()));
if (i == 1)
{
aux += "_chA."s;
}
if (i == 2)
{
aux += "_chB."s;
}
if (i == 3)
{
aux += "_chC."s;
}
dump_filename.push_back(aux + extension);
}
std::cout << "Dumping output into file " << dump_filename.back() << '\n';
file_sink_.push_back(gr::blocks::file_sink::make(item_size_, dump_filename.back().c_str()));
DLOG(INFO) << "file_sink(" << file_sink_.back()->unique_id() << ")";
}
} }
if (enable_throttle_control_) if (enable_throttle_control_)
{ {
throttle_ = gr::blocks::throttle::make(item_size_, throttle_frequency_sps); for (auto it = channels_selector_vec_.begin(); it != channels_selector_vec_.end(); ++it)
{
throttle_.push_back(gr::blocks::throttle::make(item_size_, throttle_frequency_sps));
}
} }
if (in_stream_ > 0) if (in_stream_ > 0)
{ {
LOG(ERROR) << "A signal source does not have an input stream"; LOG(ERROR) << "A signal source does not have an input stream";
} }
if (out_stream_ > 1) if (out_stream_ > 3)
{ {
LOG(ERROR) << "This implementation only supports one output stream"; LOG(ERROR) << "This implementation supports up to 3 output streams";
} }
} }
size_t LabsatSignalSource::getRfChannels() const
{
return channels_selector_vec_.size();
}
void LabsatSignalSource::connect(gr::top_block_sptr top_block) void LabsatSignalSource::connect(gr::top_block_sptr top_block)
{ {
if (enable_throttle_control_ == true) if (enable_throttle_control_ == true)
{ {
top_block->connect(labsat23_source_, 0, throttle_, 0); int rf_chan = 0;
for (const auto& th : throttle_)
{
top_block->connect(labsat23_source_, rf_chan, th, 0);
DLOG(INFO) << "connected labsat23_source_ to throttle"; DLOG(INFO) << "connected labsat23_source_ to throttle";
if (dump_) if (dump_)
{ {
top_block->connect(labsat23_source_, 0, file_sink_, 0); top_block->connect(labsat23_source_, rf_chan, file_sink_[rf_chan], 0);
DLOG(INFO) << "connected labsat23_source_to sink"; DLOG(INFO) << "connected labsat23_source_to sink";
} }
rf_chan++;
}
} }
else else
{
int rf_chan = 0;
for (auto it = channels_selector_vec_.begin(); it != channels_selector_vec_.end(); ++it)
{ {
if (dump_) if (dump_)
{ {
top_block->connect(labsat23_source_, 0, file_sink_, 0); top_block->connect(labsat23_source_, 0, file_sink_[rf_chan], 0);
DLOG(INFO) << "connected labsat23_source_ to sink"; DLOG(INFO) << "connected labsat23_source_ to sink";
} }
else else
{ {
DLOG(INFO) << "nothing to connect internally"; DLOG(INFO) << "nothing to connect internally";
} }
rf_chan++;
}
} }
} }
@ -110,21 +176,31 @@ void LabsatSignalSource::disconnect(gr::top_block_sptr top_block)
{ {
if (enable_throttle_control_ == true) if (enable_throttle_control_ == true)
{ {
top_block->disconnect(labsat23_source_, 0, throttle_, 0); int rf_chan = 0;
for (const auto& th : throttle_)
{
top_block->disconnect(labsat23_source_, rf_chan, th, 0);
DLOG(INFO) << "disconnected labsat23_source_ to throttle"; DLOG(INFO) << "disconnected labsat23_source_ to throttle";
if (dump_) if (dump_)
{ {
top_block->disconnect(labsat23_source_, 0, file_sink_, 0); top_block->disconnect(labsat23_source_, rf_chan, file_sink_[rf_chan], 0);
DLOG(INFO) << "disconnected labsat23_source_ to sink"; DLOG(INFO) << "disconnected labsat23_source_ to sink";
} }
rf_chan++;
}
} }
else else
{
int rf_chan = 0;
for (auto it = channels_selector_vec_.begin(); it != channels_selector_vec_.end(); ++it)
{ {
if (dump_) if (dump_)
{ {
top_block->disconnect(labsat23_source_, 0, file_sink_, 0); top_block->disconnect(labsat23_source_, rf_chan, file_sink_[rf_chan], 0);
DLOG(INFO) << "disconnected labsat23_source_ to sink"; DLOG(INFO) << "disconnected labsat23_source_ to sink";
} }
rf_chan++;
}
} }
} }
@ -140,7 +216,17 @@ gr::basic_block_sptr LabsatSignalSource::get_right_block()
{ {
if (enable_throttle_control_ == true) if (enable_throttle_control_ == true)
{ {
return throttle_; return throttle_[0];
}
return labsat23_source_;
}
gr::basic_block_sptr LabsatSignalSource::get_right_block(int i)
{
if (enable_throttle_control_ == true)
{
return throttle_[i];
} }
return labsat23_source_; return labsat23_source_;
} }

View File

@ -1,6 +1,6 @@
/*! /*!
* \file labsat_signal_source.h * \file labsat_signal_source.h
* \brief Labsat 2 and 3 front-end signal sampler driver * \brief LabSat version 2, 3, and 3 Wideband format reader
* \author Javier Arribas, jarribas(at)cttc.es * \author Javier Arribas, jarribas(at)cttc.es
* *
* ----------------------------------------------------------------------------- * -----------------------------------------------------------------------------
@ -8,7 +8,7 @@
* GNSS-SDR is a Global Navigation Satellite System software-defined receiver. * GNSS-SDR is a Global Navigation Satellite System software-defined receiver.
* This file is part of GNSS-SDR. * This file is part of GNSS-SDR.
* *
* Copyright (C) 2010-2020 (see AUTHORS file for a list of contributors) * Copyright (C) 2010-2021 (see AUTHORS file for a list of contributors)
* SPDX-License-Identifier: GPL-3.0-or-later * SPDX-License-Identifier: GPL-3.0-or-later
* *
* ----------------------------------------------------------------------------- * -----------------------------------------------------------------------------
@ -27,6 +27,7 @@
#include <pmt/pmt.h> #include <pmt/pmt.h>
#include <memory> #include <memory>
#include <string> #include <string>
#include <vector>
/** \addtogroup Signal_Source /** \addtogroup Signal_Source
* \{ */ * \{ */
@ -37,7 +38,8 @@
class ConfigurationInterface; class ConfigurationInterface;
/*! /*!
* \brief This class reads samples stored by a LabSat 2 or LabSat 3 device * \brief This class reads samples stored in LabSat version 2, 3, and 3 Wideband
* format.
*/ */
class LabsatSignalSource : public SignalSourceBase class LabsatSignalSource : public SignalSourceBase
{ {
@ -53,15 +55,18 @@ public:
return item_size_; return item_size_;
} }
size_t getRfChannels() const override;
void connect(gr::top_block_sptr top_block) override; void connect(gr::top_block_sptr top_block) override;
void disconnect(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_left_block() override;
gr::basic_block_sptr get_right_block() override; gr::basic_block_sptr get_right_block() override;
gr::basic_block_sptr get_right_block(int i) override;
private: private:
gr::block_sptr labsat23_source_; gr::block_sptr labsat23_source_;
gr::blocks::file_sink::sptr file_sink_; std::vector<gr::blocks::file_sink::sptr> file_sink_;
gr::blocks::throttle::sptr throttle_; std::vector<gr::blocks::throttle::sptr> throttle_;
std::vector<int> channels_selector_vec_;
std::string item_type_; std::string item_type_;
std::string filename_; std::string filename_;

View File

@ -1,7 +1,7 @@
/*! /*!
* \file labsat23_source.cc * \file labsat23_source.cc
* *
* \brief Unpacks capture files in the Labsat 2 (ls2), Labsat 3 (ls3), or Labsat * \brief Unpacks capture files in the LabSat 2 (ls2), LabSat 3 (ls3), or LabSat
* 3 Wideband (LS3W) formats. * 3 Wideband (LS3W) formats.
* \author Javier Arribas jarribas (at) cttc.es * \author Javier Arribas jarribas (at) cttc.es
* *
@ -23,35 +23,29 @@
#include "gnss_sdr_make_unique.h" #include "gnss_sdr_make_unique.h"
#include <boost/any.hpp> #include <boost/any.hpp>
#include <gnuradio/io_signature.h> #include <gnuradio/io_signature.h>
#include <algorithm>
#include <array> #include <array>
#include <bitset> #include <bitset>
#include <cstddef>
#include <exception> #include <exception>
#include <iostream> #include <iostream>
#include <sstream> #include <sstream>
#include <utility> #include <utility>
#include <vector>
labsat23_source_sptr labsat23_make_source_sptr(const char *signal_file_basename, int channel_selector, Concurrent_Queue<pmt::pmt_t> *queue, bool digital_io_enabled) labsat23_source_sptr labsat23_make_source_sptr(const char *signal_file_basename, const std::vector<int> &channel_selector, Concurrent_Queue<pmt::pmt_t> *queue, bool digital_io_enabled)
{ {
return labsat23_source_sptr(new labsat23_source(signal_file_basename, channel_selector, queue, digital_io_enabled)); return labsat23_source_sptr(new labsat23_source(signal_file_basename, channel_selector, queue, digital_io_enabled));
} }
labsat23_source::labsat23_source(const char *signal_file_basename, labsat23_source::labsat23_source(const char *signal_file_basename,
int channel_selector, const std::vector<int> &channel_selector,
Concurrent_Queue<pmt::pmt_t> *queue, Concurrent_Queue<pmt::pmt_t> *queue,
bool digital_io_enabled) : gr::block("labsat23_source", bool digital_io_enabled) : gr::block("labsat23_source",
gr::io_signature::make(0, 0, 0), gr::io_signature::make(0, 0, 0),
gr::io_signature::make(1, 1, sizeof(gr_complex))), gr::io_signature::make(1, 3, sizeof(gr_complex))),
d_queue(queue) d_queue(queue)
{ {
if (channel_selector < 1 or channel_selector > 2)
{
std::cout << "Labsat source config error: channel selection out of bounds, check gnss-sdr config file\n";
exit(1);
}
d_channel_selector_config = channel_selector; d_channel_selector_config = channel_selector;
d_header_parsed = false; d_header_parsed = false;
d_bits_per_sample = 0; d_bits_per_sample = 0;
@ -69,7 +63,7 @@ labsat23_source::labsat23_source(const char *signal_file_basename,
if (d_is_ls3w) if (d_is_ls3w)
{ {
d_labsat_version = 3; d_labsat_version = 3;
std::cout << "Labsat file version 3 wideband detected.\n"; std::cout << "LabSat file version 3 Wideband detected.\n";
// Read ini file // Read ini file
std::string ini_file = signal_file.substr(0, signal_file.length() - 4) + std::string("ini"); std::string ini_file = signal_file.substr(0, signal_file.length() - 4) + std::string("ini");
if (read_ls3w_ini(ini_file) != 0) if (read_ls3w_ini(ini_file) != 0)
@ -82,11 +76,11 @@ labsat23_source::labsat23_source(const char *signal_file_basename,
if (binary_input_file.is_open()) if (binary_input_file.is_open())
{ {
std::cout << "Labsat file source is reading samples from " << signal_file << '\n'; std::cout << "LabSat file source is reading samples from " << signal_file << '\n';
} }
else else
{ {
std::cout << "Labsat file " << signal_file << " could not be opened!\n"; std::cout << "LabSat file " << signal_file << " could not be opened!\n";
exit(1); exit(1);
} }
} }
@ -140,6 +134,229 @@ int labsat23_source::getBit(uint8_t byte, int position)
} }
int labsat23_source::parse_header()
{
if (binary_input_file.eof() == false)
{
std::array<char, 1024> memblock{};
binary_input_file.read(memblock.data(), 1024);
// parse Labsat header
// check preamble
int byte_counter = 0;
bool preamble_ok = true;
for (int i = 0; i < 8; i++)
{
if (memblock[byte_counter] != 0x00)
{
preamble_ok = false;
}
byte_counter++;
}
if (preamble_ok == false)
{
std::cout << "LabSat source do not detect the preamble in the selected file\n";
return -1;
}
// check Labsat version
if (memblock[byte_counter] == 0x4C and memblock[byte_counter + 1] == 0x53 and memblock[byte_counter + 2] == 0x32)
{
d_labsat_version = 2;
std::cout << "LabSat file version 2 detected\n";
}
if (memblock[byte_counter] == 0x4C and memblock[byte_counter + 1] == 0x53 and memblock[byte_counter + 2] == 0x33)
{
d_labsat_version = 3;
std::cout << "LabSat file version 3 detected\n";
}
if (d_labsat_version == 0)
{
std::cout << "LabSat source do not detect the version number in the file header\n";
return -1;
}
byte_counter += 3;
int sub_version = static_cast<int>(memblock[byte_counter]);
std::cout << "LabSat file sub version " << sub_version << '\n';
byte_counter++;
int header_bytes = 0;
header_bytes += memblock[byte_counter] | (memblock[byte_counter + 1] << 8) | (memblock[byte_counter + 2] << 16) | (memblock[byte_counter + 3] << 24);
byte_counter += 4;
// read first section
// section ID (little-endian)
uint8_t section_id = static_cast<int>(memblock[byte_counter]) + static_cast<int>(memblock[byte_counter + 1]) * 256;
byte_counter += 2;
// uint8_t section_lenght_bytes = 0;
// section_lenght_bytes += memblock[byte_counter] | (memblock[byte_counter + 1] << 8) | (memblock[byte_counter + 2] << 16) | (memblock[byte_counter + 3] << 24);
byte_counter += 4;
if (section_id == 2)
{
d_ref_clock = static_cast<uint8_t>(memblock[byte_counter]);
switch (d_ref_clock)
{
case 0:
std::cout << "LabSat reference clock: internal OCXO\n";
break;
case 1:
std::cout << "LabSat reference clock: internal TCXO\n";
break;
case 2:
std::cout << "LabSat reference clock: external 10 MHz\n";
break;
case 3:
std::cout << "LabSat reference clock: external 16.386 MHz\n";
break;
default:
std::cout << "LabSat Unknown reference clock ID " << static_cast<int>(d_ref_clock) << '\n';
}
byte_counter++;
d_bits_per_sample = static_cast<uint8_t>(memblock[byte_counter]);
switch (d_bits_per_sample)
{
case 2:
std::cout << "LabSat is using 2 bits per sample\n";
break;
case 4:
std::cout << "LabSat is using 4 bits per sample\n";
break;
default:
std::cout << "LabSat Unknown bits per sample ID " << static_cast<int>(d_bits_per_sample) << '\n';
return -1;
}
byte_counter++;
d_channel_selector = static_cast<uint8_t>(memblock[byte_counter]);
switch (d_channel_selector)
{
case 0:
std::cout << "Available channels: Channel A + B, 1 bit quantisation (I & Q)\n";
break;
case 1:
std::cout << "Available channels: Channel A, 1 bit quantisation (I & Q)\n";
break;
case 2:
std::cout << "Available channels: Channel B, 1 bit quantisation (I & Q)\n";
break;
case 3:
std::cout << "Available channels: Channel A, 2 bit quantisation (I & Q)\n";
break;
case 4:
std::cout << "Available channels: Channel B, 2 bit quantisation (I & Q)\n";
break;
default:
std::cout << "Unknown channel selection ID " << static_cast<int>(d_channel_selector) << '\n';
return -1;
}
// check if the selected channel in config file match the file encoding
if (d_channel_selector_config[0] == 2 and d_channel_selector != 0)
{
std::cout << "LabSat source channel config inconsistency: channel 2 is selected but the file has only one channel.\n";
return -1;
}
// todo: Add support for dual channel files
if (d_channel_selector == 0)
{
std::cout << "ERROR: LabSat file contains more than one channel and this is not currently supported for LabSat version " << d_labsat_version << ".\n";
return -1;
}
byte_counter++;
auto quantization = static_cast<uint8_t>(memblock[byte_counter]);
switch (quantization)
{
case 0:
break;
case 1:
std::cout << "1 bit per sample\n";
break;
case 2:
std::cout << "2 bit per sample\n";
break;
default:
std::cout << "Unknown quantization ID " << static_cast<int>(quantization) << '\n';
}
byte_counter++;
auto channel_a_constellation = static_cast<uint8_t>(memblock[byte_counter]);
switch (channel_a_constellation)
{
case 0:
std::cout << "LabSat Channel A is GPS\n";
break;
case 1:
std::cout << "LabSat Channel A is GLONASS\n";
break;
case 2:
std::cout << "LabSat Channel A is BDS\n";
break;
default:
std::cout << "Unknown channel A constellation ID " << static_cast<int>(channel_a_constellation) << '\n';
}
byte_counter++;
auto channel_b_constellation = static_cast<uint8_t>(memblock[byte_counter]);
switch (channel_b_constellation)
{
case 0:
std::cout << "LabSat Channel B is GPS\n";
break;
case 1:
std::cout << "LabSat Channel B is GLONASS\n";
break;
case 2:
std::cout << "LabSat Channel B is BDS\n";
break;
case 255:
// No channel B
break;
default:
std::cout << "Unknown channel B constellation ID " << static_cast<int>(channel_b_constellation) << '\n';
}
// end of header
d_header_parsed = true;
// seek file to the first signal sample
binary_input_file.clear();
binary_input_file.seekg(header_bytes, binary_input_file.beg);
if (d_channel_selector_config.size() > 1)
{
std::cerr << "Multiple RF source is not implemented for LabSat version " << d_labsat_version << "files.\n";
std::cerr << "The Multiple RF source feature is only available for LabSat 3 Wideband format files.\n";
std::cerr << "Selecting channel";
if (d_channel_selector_config[0] == 1)
{
std::cerr << " A.";
}
if (d_channel_selector_config[0] == 2)
{
std::cerr << " B.";
}
if (d_channel_selector_config[0] == 3)
{
std::cerr << " C.";
}
std::cerr << '\n';
}
return 0;
}
std::cout << "LabSat file header error: section 2 is not available.\n";
return -1;
}
std::cout << "LabSat file read error: file is empty.\n";
return -1;
}
void labsat23_source::decode_samples_one_channel(int16_t input_short, gr_complex *out, int type) void labsat23_source::decode_samples_one_channel(int16_t input_short, gr_complex *out, int type)
{ {
std::bitset<16> bs(input_short); std::bitset<16> bs(input_short);
@ -223,12 +440,12 @@ int labsat23_source::read_ls3w_ini(const std::string &filename)
if (error_ > 0) if (error_ > 0)
{ {
std::cerr << "Warning: Labsat ini file " << filename std::cerr << "Warning: LabSat ini file " << filename
<< " contains a syntax error in line " << error_ << ", continuing anyway.\n"; << " contains a syntax error in line " << error_ << ", continuing anyway.\n";
} }
if (error_ < 0) if (error_ < 0)
{ {
std::cerr << "Error: Labsat ini file " << filename << " cannot be opened.\n"; std::cerr << "Error: LabSat ini file " << filename << " cannot be opened.\n";
return 1; return 1;
} }
const std::string empty_string(""); const std::string empty_string("");
@ -238,18 +455,18 @@ int labsat23_source::read_ls3w_ini(const std::string &filename)
d_ls3w_OSC = ini_reader->Get("config", "OSC", empty_string); d_ls3w_OSC = ini_reader->Get("config", "OSC", empty_string);
if (d_ls3w_OSC.empty()) if (d_ls3w_OSC.empty())
{ {
std::cerr << "Labsat reference clock: not found.\n"; std::cerr << "LabSat reference clock: not found.\n";
} }
else else
{ {
// Sanity check // Sanity check
if ((d_ls3w_OSC != "OCXO") and (d_ls3w_OSC != "TCXO") and (d_ls3w_OSC != "EXT")) if ((d_ls3w_OSC != "OCXO") and (d_ls3w_OSC != "TCXO") and (d_ls3w_OSC != "EXT"))
{ {
std::cerr << "Labsat reference clock is unknown.\n"; std::cerr << "LabSat reference clock is unknown.\n";
} }
else else
{ {
std::cout << "Labsat reference clock: " << d_ls3w_OSC << '\n'; std::cout << "LabSat reference clock: " << d_ls3w_OSC << '\n';
} }
} }
@ -259,7 +476,7 @@ int labsat23_source::read_ls3w_ini(const std::string &filename)
{ {
std::stringstream smp_ss(ls3w_SMP_aux); std::stringstream smp_ss(ls3w_SMP_aux);
smp_ss >> d_ls3w_SMP; smp_ss >> d_ls3w_SMP;
std::cout << "Labsat sample rate: " << d_ls3w_SMP << " Sps\n"; std::cout << "LabSat sample rate: " << d_ls3w_SMP << " Sps\n";
} }
// Quantization // Quantization
@ -272,12 +489,12 @@ int labsat23_source::read_ls3w_ini(const std::string &filename)
// Sanity check // Sanity check
if (d_ls3w_QUA > 3) if (d_ls3w_QUA > 3)
{ {
std::cerr << "Labsat sample quantization of " << d_ls3w_QUA << " bits is not supported.\n"; std::cerr << "LabSat sample quantization of " << d_ls3w_QUA << " bits is not supported.\n";
d_ls3w_QUA = 0; d_ls3w_QUA = 0;
} }
else else
{ {
std::cout << "Labsat sample quantization: " << d_ls3w_QUA << " bits for I + " << d_ls3w_QUA << " bits for Q.\n"; std::cout << "LabSat sample quantization: " << d_ls3w_QUA << " bits for I + " << d_ls3w_QUA << " bits for Q.\n";
} }
} }
@ -291,12 +508,12 @@ int labsat23_source::read_ls3w_ini(const std::string &filename)
// Sanity check // Sanity check
if (d_ls3w_CHN > 3) if (d_ls3w_CHN > 3)
{ {
std::cerr << "Labsat files with " << d_ls3w_CHN << " RF channels are not supported.\n"; std::cerr << "LabSat files with " << d_ls3w_CHN << " RF channels are not supported.\n";
d_ls3w_CHN = 0; d_ls3w_CHN = 0;
} }
else else
{ {
std::cout << "Labsat data file contains " << d_ls3w_CHN << " RF channels.\n"; std::cout << "LabSat data file contains " << d_ls3w_CHN << " RF channels.\n";
} }
} }
@ -324,7 +541,7 @@ int labsat23_source::read_ls3w_ini(const std::string &filename)
{ {
std::stringstream cfa_ss(ls3w_CFA_aux); std::stringstream cfa_ss(ls3w_CFA_aux);
cfa_ss >> d_ls3w_CFA; cfa_ss >> d_ls3w_CFA;
std::cout << "Labsat center frequency for RF channel A: " << d_ls3w_CFA << " Hz\n"; std::cout << "LabSat center frequency for RF channel A: " << d_ls3w_CFA << " Hz\n";
} }
std::string ls3w_BWA_aux = ini_reader->Get("channel A", "BWA", empty_string); std::string ls3w_BWA_aux = ini_reader->Get("channel A", "BWA", empty_string);
@ -332,7 +549,7 @@ int labsat23_source::read_ls3w_ini(const std::string &filename)
{ {
std::stringstream bwa_ss(ls3w_BWA_aux); std::stringstream bwa_ss(ls3w_BWA_aux);
bwa_ss >> d_ls3w_BWA; bwa_ss >> d_ls3w_BWA;
std::cout << "Labsat RF filter bandwidth for RF channel A: " << d_ls3w_BWA << " Hz\n"; std::cout << "LabSat RF filter bandwidth for RF channel A: " << d_ls3w_BWA << " Hz\n";
} }
} }
@ -344,7 +561,7 @@ int labsat23_source::read_ls3w_ini(const std::string &filename)
{ {
std::stringstream cfb_ss(ls3w_CFB_aux); std::stringstream cfb_ss(ls3w_CFB_aux);
cfb_ss >> d_ls3w_CFB; cfb_ss >> d_ls3w_CFB;
std::cout << "Labsat center frequency for RF channel B: " << d_ls3w_CFB << " Hz\n"; std::cout << "LabSat center frequency for RF channel B: " << d_ls3w_CFB << " Hz\n";
} }
std::string ls3w_BWB_aux = ini_reader->Get("channel B", "BWB", empty_string); std::string ls3w_BWB_aux = ini_reader->Get("channel B", "BWB", empty_string);
@ -352,7 +569,7 @@ int labsat23_source::read_ls3w_ini(const std::string &filename)
{ {
std::stringstream bwb_ss(ls3w_BWB_aux); std::stringstream bwb_ss(ls3w_BWB_aux);
bwb_ss >> d_ls3w_BWB; bwb_ss >> d_ls3w_BWB;
std::cout << "Labsat RF filter bandwidth for RF channel B: " << d_ls3w_BWB << " Hz\n"; std::cout << "LabSat RF filter bandwidth for RF channel B: " << d_ls3w_BWB << " Hz\n";
} }
} }
@ -364,7 +581,7 @@ int labsat23_source::read_ls3w_ini(const std::string &filename)
{ {
std::stringstream cfc_ss(ls3w_CFC_aux); std::stringstream cfc_ss(ls3w_CFC_aux);
cfc_ss >> d_ls3w_CFC; cfc_ss >> d_ls3w_CFC;
std::cout << "Labsat center frequency for RF channel C: " << d_ls3w_CFC << " Hz\n"; std::cout << "LabSat center frequency for RF channel C: " << d_ls3w_CFC << " Hz\n";
} }
std::string ls3w_BWC_aux = ini_reader->Get("channel C", "BWC", empty_string); std::string ls3w_BWC_aux = ini_reader->Get("channel C", "BWC", empty_string);
@ -372,42 +589,63 @@ int labsat23_source::read_ls3w_ini(const std::string &filename)
{ {
std::stringstream bwc_ss(ls3w_BWC_aux); std::stringstream bwc_ss(ls3w_BWC_aux);
bwc_ss >> d_ls3w_BWC; bwc_ss >> d_ls3w_BWC;
std::cout << "Labsat RF filter bandwidth for RF channel C: " << d_ls3w_BWC << " Hz\n"; std::cout << "LabSat RF filter bandwidth for RF channel C: " << d_ls3w_BWC << " Hz\n";
} }
} }
std::cout << "Labsat selected channel"; std::cout << "LabSat selected channel" << ((d_channel_selector_config.size() > 1) ? "s" : "") << ": ";
if (d_channel_selector_config == 1) if (std::find(d_channel_selector_config.begin(), d_channel_selector_config.end(), 1) != d_channel_selector_config.end())
{ {
std::cout << ": A\n"; std::cout << "A";
} }
if (d_channel_selector_config == 2) if (std::find(d_channel_selector_config.begin(), d_channel_selector_config.end(), 2) != d_channel_selector_config.end())
{ {
if (d_ls3w_CHN > 1) if (d_ls3w_CHN > 1)
{ {
std::cout << ": B\n"; if (d_channel_selector_config.size() == 1)
{
std::cout << "B";
} }
else else
{ {
std::cout << " is not found.\n"; std::cout << ", B";
} }
} }
if (d_channel_selector_config == 3) else
{
std::cerr << "\nConfiguration error: RF channel B is selected but not found in data file.\n";
std::cerr << "Exiting the program.\n";
return -1;
}
}
if (std::find(d_channel_selector_config.begin(), d_channel_selector_config.end(), 3) != d_channel_selector_config.end())
{ {
if (d_ls3w_CHN > 2) if (d_ls3w_CHN > 2)
{ {
std::cout << ": C\n"; if (d_channel_selector_config.size() == 1)
{
std::cout << "C";
} }
else else
{ {
std::cout << " is not found.\n"; std::cout << ", C";
} }
} }
else
{
std::cerr << "\nConfiguration error: RF channel C is selected but not found in data file.\n";
std::cerr << "Exiting the program.\n";
return -1;
}
}
std::cout << '\n';
d_ls3w_samples_per_register = this->number_of_samples_per_ls3w_register(); d_ls3w_samples_per_register = this->number_of_samples_per_ls3w_register();
d_ls3w_spare_bits = 64 - d_ls3w_samples_per_register * d_ls3w_QUA * 2; d_ls3w_spare_bits = 64 - d_ls3w_samples_per_register * d_ls3w_QUA * 2;
d_ls3w_selected_channel_offset = (d_channel_selector_config - 1) * d_ls3w_QUA * 2; for (auto ch_select : d_channel_selector_config)
{
d_ls3w_selected_channel_offset.push_back((ch_select - 1) * d_ls3w_QUA * 2);
}
return 0; return 0;
} }
@ -495,7 +733,7 @@ int labsat23_source::number_of_samples_per_ls3w_register() const
} }
void labsat23_source::decode_ls3w_register_one_channel(uint64_t input, gr_complex *out) const void labsat23_source::decode_ls3w_register(uint64_t input, std::vector<gr_complex *> &out, size_t output_pointer) const
{ {
std::bitset<64> bs(input); std::bitset<64> bs(input);
@ -507,12 +745,15 @@ void labsat23_source::decode_ls3w_register_one_channel(uint64_t input, gr_comple
bs[64 - i - 1] = t; bs[64 - i - 1] = t;
} }
int output_chan = 0;
for (auto channel_offset : d_ls3w_selected_channel_offset)
{
for (int i = 0; i < d_ls3w_samples_per_register; i++) for (int i = 0; i < d_ls3w_samples_per_register; i++)
{ {
float sampleI = 0.0; float sampleI = 0.0;
float sampleQ = 0.0; float sampleQ = 0.0;
const int bit_offset = d_ls3w_spare_bits + i * d_ls3w_SFT + d_ls3w_selected_channel_offset; const int bit_offset = d_ls3w_spare_bits + i * d_ls3w_SFT + channel_offset;
switch (d_ls3w_QUA) switch (d_ls3w_QUA)
{ {
case 1: case 1:
@ -673,7 +914,10 @@ void labsat23_source::decode_ls3w_register_one_channel(uint64_t input, gr_comple
default: default:
break; break;
} }
out[i] = gr_complex(sampleI, sampleQ); gr_complex *aux = out[output_chan];
aux[output_pointer + i] = gr_complex(sampleI, sampleQ);
}
output_chan++;
} }
} }
@ -683,211 +927,16 @@ int labsat23_source::general_work(int noutput_items,
__attribute__((unused)) gr_vector_const_void_star &input_items, __attribute__((unused)) gr_vector_const_void_star &input_items,
gr_vector_void_star &output_items) gr_vector_void_star &output_items)
{ {
auto *out = reinterpret_cast<gr_complex *>(output_items[0]); std::vector<gr_complex *> out;
for (auto & output_item : output_items)
{
out.push_back(reinterpret_cast<gr_complex *>(output_item));
}
if (!d_is_ls3w) if (!d_is_ls3w)
{ {
if (d_header_parsed == false) if (d_header_parsed == false)
{ {
if (binary_input_file.eof() == false) return parse_header();
{
std::array<char, 1024> memblock{};
binary_input_file.read(memblock.data(), 1024);
// parse Labsat header
// check preamble
int byte_counter = 0;
bool preamble_ok = true;
for (int i = 0; i < 8; i++)
{
if (memblock[byte_counter] != 0x00)
{
preamble_ok = false;
}
byte_counter++;
}
if (preamble_ok == false)
{
std::cout << "Labsat source do not detect the preamble in the selected file\n";
return -1;
}
// check Labsat version
if (memblock[byte_counter] == 0x4C and memblock[byte_counter + 1] == 0x53 and memblock[byte_counter + 2] == 0x32)
{
d_labsat_version = 2;
std::cout << "Labsat file version 2 detected\n";
}
if (memblock[byte_counter] == 0x4C and memblock[byte_counter + 1] == 0x53 and memblock[byte_counter + 2] == 0x33)
{
d_labsat_version = 3;
std::cout << "Labsat file version 3 detected\n";
}
if (d_labsat_version == 0)
{
std::cout << "Labsat source do not detect the labsat version in file header\n";
return -1;
}
byte_counter += 3;
int sub_version = static_cast<int>(memblock[byte_counter]);
std::cout << "Labsat file sub version " << sub_version << '\n';
byte_counter++;
int header_bytes = 0;
header_bytes += memblock[byte_counter] | (memblock[byte_counter + 1] << 8) | (memblock[byte_counter + 2] << 16) | (memblock[byte_counter + 3] << 24);
byte_counter += 4;
// read first section
// section ID (little-endian)
uint8_t section_id = static_cast<int>(memblock[byte_counter]) + static_cast<int>(memblock[byte_counter + 1]) * 256;
byte_counter += 2;
// uint8_t section_lenght_bytes = 0;
// section_lenght_bytes += memblock[byte_counter] | (memblock[byte_counter + 1] << 8) | (memblock[byte_counter + 2] << 16) | (memblock[byte_counter + 3] << 24);
byte_counter += 4;
if (section_id == 2)
{
d_ref_clock = static_cast<uint8_t>(memblock[byte_counter]);
switch (d_ref_clock)
{
case 0:
std::cout << "Labsat reference clock: internal OCXO\n";
break;
case 1:
std::cout << "Labsat reference clock: internal TCXO\n";
break;
case 2:
std::cout << "Labsat reference clock: external 10 MHz\n";
break;
case 3:
std::cout << "Labsat reference clock: external 16.386 MHz\n";
break;
default:
std::cout << "Labsat Unknown reference clock ID " << static_cast<int>(d_ref_clock) << '\n';
}
byte_counter++;
d_bits_per_sample = static_cast<uint8_t>(memblock[byte_counter]);
switch (d_bits_per_sample)
{
case 2:
std::cout << "Labsat is using 2 bits per sample\n";
break;
case 4:
std::cout << "Labsat is using 4 bits per sample\n";
break;
default:
std::cout << "Labsat Unknown bits per sample ID " << static_cast<int>(d_bits_per_sample) << '\n';
return -1;
}
byte_counter++;
d_channel_selector = static_cast<uint8_t>(memblock[byte_counter]);
switch (d_channel_selector)
{
case 0:
std::cout << "Available channels: Channel A + B, 1 bit quantisation (I & Q)\n";
break;
case 1:
std::cout << "Available channels: Channel A, 1 bit quantisation (I & Q)\n";
break;
case 2:
std::cout << "Available channels: Channel B, 1 bit quantisation (I & Q)\n";
break;
case 3:
std::cout << "Available channels: Channel A, 2 bit quantisation (I & Q)\n";
break;
case 4:
std::cout << "Available channels: Channel B, 2 bit quantisation (I & Q)\n";
break;
default:
std::cout << "Unknown channel selection ID " << static_cast<int>(d_channel_selector) << '\n';
return -1;
}
// check if the selected channel in config file match the file encoding
if (d_channel_selector_config == 2 and d_channel_selector != 0)
{
std::cout << "Labsat source channel config inconsistency: channel 2 is selected but the file has only one channel\n";
return -1;
}
// todo: Add support for dual channel files
if (d_channel_selector == 0)
{
std::cout << "ERROR: Labsat file contains more than one channel and it is not currently supported by Labsat signal source.\n";
return -1;
}
byte_counter++;
auto quantization = static_cast<uint8_t>(memblock[byte_counter]);
switch (quantization)
{
case 0:
break;
case 1:
std::cout << "1 bit per sample\n";
break;
case 2:
std::cout << "2 bit per sample\n";
break;
default:
std::cout << "Unknown quantization ID " << static_cast<int>(quantization) << '\n';
}
byte_counter++;
auto channel_a_constellation = static_cast<uint8_t>(memblock[byte_counter]);
switch (channel_a_constellation)
{
case 0:
std::cout << "Labsat Channel A is GPS\n";
break;
case 1:
std::cout << "Labsat Channel A is GLONASS\n";
break;
case 2:
std::cout << "Labsat Channel A is BDS\n";
break;
default:
std::cout << "Unknown channel A constellation ID " << static_cast<int>(channel_a_constellation) << '\n';
}
byte_counter++;
auto channel_b_constellation = static_cast<uint8_t>(memblock[byte_counter]);
switch (channel_b_constellation)
{
case 0:
std::cout << "Labsat Channel B is GPS\n";
break;
case 1:
std::cout << "Labsat Channel B is GLONASS\n";
break;
case 2:
std::cout << "Labsat Channel B is BDS\n";
break;
case 255:
// No channel B
break;
default:
std::cout << "Unknown channel B constellation ID " << static_cast<int>(channel_b_constellation) << '\n';
}
// end of header
d_header_parsed = true;
// seek file to the first signal sample
binary_input_file.clear();
binary_input_file.seekg(header_bytes, binary_input_file.beg);
return 0;
}
std::cout << "Labsat file header error: section 2 is not available.\n";
return -1;
}
std::cout << "Labsat file read error: file is empty.\n";
return -1;
} }
// ready to start reading samples // ready to start reading samples
@ -913,7 +962,7 @@ int labsat23_source::general_work(int noutput_items,
int output_pointer = 0; int output_pointer = 0;
for (int i = 0; i < n_int16_to_read; i++) for (int i = 0; i < n_int16_to_read; i++)
{ {
decode_samples_one_channel(memblock[i], &out[output_pointer], d_bits_per_sample); decode_samples_one_channel(memblock[i], out[0] + output_pointer, d_bits_per_sample);
output_pointer += 8; output_pointer += 8;
} }
return output_pointer; return output_pointer;
@ -923,13 +972,13 @@ int labsat23_source::general_work(int noutput_items,
d_current_file_number++; d_current_file_number++;
if (d_labsat_version == 3) if (d_labsat_version == 3)
{ {
std::cout << "End of current file, reading the next Labsat file in sequence: " << generate_filename() << '\n'; std::cout << "End of current file, reading the next LabSat file in sequence: " << generate_filename() << '\n';
} }
binary_input_file.close(); binary_input_file.close();
binary_input_file.open(generate_filename().c_str(), std::ios::in | std::ios::binary); binary_input_file.open(generate_filename().c_str(), std::ios::in | std::ios::binary);
if (binary_input_file.is_open()) if (binary_input_file.is_open())
{ {
std::cout << "Labsat file source is reading samples from " << generate_filename() << '\n'; std::cout << "LabSat file source is reading samples from " << generate_filename() << '\n';
return 0; return 0;
} }
@ -971,7 +1020,7 @@ int labsat23_source::general_work(int noutput_items,
int output_pointer = 0; int output_pointer = 0;
for (int i = 0; i < n_int16_to_read; i++) for (int i = 0; i < n_int16_to_read; i++)
{ {
decode_samples_one_channel(memblock[i], &out[output_pointer], d_bits_per_sample); decode_samples_one_channel(memblock[i], out[0] + output_pointer, d_bits_per_sample);
output_pointer += 4; output_pointer += 4;
} }
return output_pointer; return output_pointer;
@ -1022,7 +1071,7 @@ int labsat23_source::general_work(int noutput_items,
{ {
return 0; return 0;
} }
int output_pointer = 0; std::size_t output_pointer = 0;
for (int i = 0; i < registers_to_read; i++) for (int i = 0; i < registers_to_read; i++)
{ {
std::array<char, 8> memory_block{}; std::array<char, 8> memory_block{};
@ -1036,7 +1085,7 @@ int labsat23_source::general_work(int noutput_items,
if (binary_input_file.gcount() == 8) if (binary_input_file.gcount() == 8)
{ {
decode_ls3w_register_one_channel(read_register, &out[output_pointer]); decode_ls3w_register(read_register, out, output_pointer);
output_pointer += d_ls3w_samples_per_register; output_pointer += d_ls3w_samples_per_register;
} }
else else

View File

@ -1,7 +1,7 @@
/*! /*!
* \file labsat23_source.h * \file labsat23_source.h
* *
* \brief Unpacks capture files in the Labsat 2 (ls2), Labsat 3 (ls3), or Labsat * \brief Unpacks capture files in the LabSat 2 (ls2), LabSat 3 (ls3), or LabSat
* 3 Wideband (LS3W) formats. * 3 Wideband (LS3W) formats.
* \author Javier Arribas jarribas (at) cttc.es * \author Javier Arribas jarribas (at) cttc.es
* *
@ -23,9 +23,11 @@
#include "gnss_block_interface.h" #include "gnss_block_interface.h"
#include <gnuradio/block.h> #include <gnuradio/block.h>
#include <pmt/pmt.h> #include <pmt/pmt.h>
#include <cstddef>
#include <cstdint> #include <cstdint>
#include <fstream> #include <fstream>
#include <string> #include <string>
#include <vector>
/** \addtogroup Signal_Source /** \addtogroup Signal_Source
* \{ */ * \{ */
@ -39,12 +41,13 @@ using labsat23_source_sptr = gnss_shared_ptr<labsat23_source>;
labsat23_source_sptr labsat23_make_source_sptr( labsat23_source_sptr labsat23_make_source_sptr(
const char *signal_file_basename, const char *signal_file_basename,
int channel_selector, const std::vector<int> &channel_selector,
Concurrent_Queue<pmt::pmt_t> *queue, Concurrent_Queue<pmt::pmt_t> *queue,
bool digital_io_enabled); bool digital_io_enabled);
/*! /*!
* \brief This class implements conversion between Labsat2 and 3 format byte packet samples to gr_complex * \brief This class implements conversion between Labsat 2, 3 and 3 Wideband
* formats to gr_complex
*/ */
class labsat23_source : public gr::block class labsat23_source : public gr::block
{ {
@ -59,28 +62,29 @@ public:
private: private:
friend labsat23_source_sptr labsat23_make_source_sptr( friend labsat23_source_sptr labsat23_make_source_sptr(
const char *signal_file_basename, const char *signal_file_basename,
int channel_selector, const std::vector<int> &channel_selector,
Concurrent_Queue<pmt::pmt_t> *queue, Concurrent_Queue<pmt::pmt_t> *queue,
bool digital_io_enabled); bool digital_io_enabled);
labsat23_source(const char *signal_file_basename, labsat23_source(const char *signal_file_basename,
int channel_selector, const std::vector<int> &channel_selector,
Concurrent_Queue<pmt::pmt_t> *queue, Concurrent_Queue<pmt::pmt_t> *queue,
bool digital_io_enabled); bool digital_io_enabled);
std::string generate_filename(); std::string generate_filename();
int parse_header();
int getBit(uint8_t byte, int position); int getBit(uint8_t byte, int position);
int read_ls3w_ini(const std::string &filename); int read_ls3w_ini(const std::string &filename);
int number_of_samples_per_ls3w_register() const; int number_of_samples_per_ls3w_register() const;
void decode_samples_one_channel(int16_t input_short, gr_complex *out, int type); void decode_samples_one_channel(int16_t input_short, gr_complex *out, int type);
void decode_ls3w_register_one_channel(uint64_t input, gr_complex *out) const; void decode_ls3w_register(uint64_t input, std::vector<gr_complex *> &out, std::size_t output_pointer) const;
std::ifstream binary_input_file; std::ifstream binary_input_file;
std::string d_signal_file_basename; std::string d_signal_file_basename;
Concurrent_Queue<pmt::pmt_t> *d_queue; Concurrent_Queue<pmt::pmt_t> *d_queue;
int d_channel_selector_config; std::vector<int> d_channel_selector_config;
int d_current_file_number; int d_current_file_number;
uint8_t d_labsat_version; uint8_t d_labsat_version;
uint8_t d_channel_selector; uint8_t d_channel_selector;
@ -90,6 +94,7 @@ private:
// Data members for Labsat 3 Wideband // Data members for Labsat 3 Wideband
std::string d_ls3w_OSC; std::string d_ls3w_OSC;
std::vector<int> d_ls3w_selected_channel_offset;
int64_t d_ls3w_SMP{}; int64_t d_ls3w_SMP{};
int32_t d_ls3w_QUA{}; int32_t d_ls3w_QUA{};
int32_t d_ls3w_CHN{}; int32_t d_ls3w_CHN{};
@ -101,7 +106,6 @@ private:
int32_t d_ls3w_BWB{}; int32_t d_ls3w_BWB{};
int32_t d_ls3w_BWC{}; int32_t d_ls3w_BWC{};
int d_ls3w_spare_bits{}; int d_ls3w_spare_bits{};
int d_ls3w_selected_channel_offset{};
int d_ls3w_samples_per_register{}; int d_ls3w_samples_per_register{};
bool d_is_ls3w = false; bool d_is_ls3w = false;
bool d_ls3w_digital_io_enabled = false; bool d_ls3w_digital_io_enabled = false;