2018-03-27 17:35:53 +00:00
|
|
|
/*!
|
|
|
|
* \file ad9361_manager.cc
|
|
|
|
* \brief An Analog Devices AD9361 front-end configuration library wrapper for configure some functions via iiod link.
|
|
|
|
* \author Javier Arribas, jarribas(at)cttc.es
|
|
|
|
*
|
|
|
|
* This file contains information taken from librtlsdr:
|
|
|
|
* http://git.osmocom.org/rtl-sdr/
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*
|
2019-07-26 10:38:20 +00:00
|
|
|
* Copyright (C) 2010-2019 (see AUTHORS file for a list of contributors)
|
2018-03-27 17:35:53 +00:00
|
|
|
*
|
|
|
|
* 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
|
2018-05-13 20:49:11 +00:00
|
|
|
* along with GNSS-SDR. If not, see <https://www.gnu.org/licenses/>.
|
2018-03-27 17:35:53 +00:00
|
|
|
*
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
#include "ad9361_manager.h"
|
|
|
|
#include <glog/logging.h>
|
2018-03-28 06:35:33 +00:00
|
|
|
#include <cmath>
|
2018-03-27 17:35:53 +00:00
|
|
|
#include <iostream>
|
|
|
|
#include <sstream>
|
|
|
|
|
2018-03-27 19:10:31 +00:00
|
|
|
|
2018-03-27 17:35:53 +00:00
|
|
|
/* check return value of attr_write function */
|
2018-03-27 19:10:31 +00:00
|
|
|
void errchk(int v, const char *what)
|
|
|
|
{
|
2018-03-27 17:35:53 +00:00
|
|
|
if (v < 0)
|
2018-03-27 19:10:31 +00:00
|
|
|
{
|
|
|
|
LOG(WARNING) << "Error " << v << " writing to channel " << what << " value may not be supported. ";
|
|
|
|
}
|
2018-03-27 17:35:53 +00:00
|
|
|
}
|
|
|
|
|
2018-03-27 19:10:31 +00:00
|
|
|
|
2018-08-11 12:31:35 +00:00
|
|
|
/* write attribute: int64_t int */
|
|
|
|
void wr_ch_lli(struct iio_channel *chn, const char *what, int64_t val)
|
2018-03-27 17:35:53 +00:00
|
|
|
{
|
|
|
|
errchk(iio_channel_attr_write_longlong(chn, what, val), what);
|
|
|
|
}
|
|
|
|
|
2018-03-27 19:10:31 +00:00
|
|
|
|
2018-03-27 17:35:53 +00:00
|
|
|
/* write attribute: string */
|
2018-03-27 19:10:31 +00:00
|
|
|
void wr_ch_str(struct iio_channel *chn, const char *what, const char *str)
|
2018-03-27 17:35:53 +00:00
|
|
|
{
|
|
|
|
errchk(iio_channel_attr_write(chn, what, str), what);
|
|
|
|
}
|
|
|
|
|
2018-03-27 19:10:31 +00:00
|
|
|
|
2018-03-27 17:35:53 +00:00
|
|
|
/* returns ad9361 phy device */
|
2018-03-27 19:10:31 +00:00
|
|
|
struct iio_device *get_ad9361_phy(struct iio_context *ctx)
|
2018-03-27 17:35:53 +00:00
|
|
|
{
|
2018-03-27 19:10:31 +00:00
|
|
|
struct iio_device *dev = iio_context_find_device(ctx, "ad9361-phy");
|
2018-03-27 17:35:53 +00:00
|
|
|
return dev;
|
|
|
|
}
|
|
|
|
|
2018-03-27 19:10:31 +00:00
|
|
|
|
2018-03-27 17:35:53 +00:00
|
|
|
/* finds AD9361 streaming IIO devices */
|
|
|
|
bool get_ad9361_stream_dev(struct iio_context *ctx, enum iodev d, struct iio_device **dev)
|
|
|
|
{
|
2018-03-27 19:10:31 +00:00
|
|
|
switch (d)
|
|
|
|
{
|
|
|
|
case TX:
|
|
|
|
*dev = iio_context_find_device(ctx, "cf-ad9361-dds-core-lpc");
|
2018-12-10 18:29:00 +00:00
|
|
|
return *dev != nullptr;
|
2018-03-27 19:10:31 +00:00
|
|
|
case RX:
|
|
|
|
*dev = iio_context_find_device(ctx, "cf-ad9361-lpc");
|
2018-12-10 18:29:00 +00:00
|
|
|
return *dev != nullptr;
|
2018-03-27 19:10:31 +00:00
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
2018-03-27 17:35:53 +00:00
|
|
|
}
|
|
|
|
|
2018-03-27 19:10:31 +00:00
|
|
|
|
2018-03-27 17:35:53 +00:00
|
|
|
/* finds AD9361 streaming IIO channels */
|
2018-04-06 07:39:11 +00:00
|
|
|
bool get_ad9361_stream_ch(struct iio_context *ctx __attribute__((unused)), enum iodev d, struct iio_device *dev, int chid, struct iio_channel **chn)
|
2018-03-27 17:35:53 +00:00
|
|
|
{
|
|
|
|
std::stringstream name;
|
|
|
|
name.str("");
|
2018-03-27 19:10:31 +00:00
|
|
|
name << "voltage";
|
|
|
|
name << chid;
|
|
|
|
*chn = iio_device_find_channel(dev, name.str().c_str(), d == TX);
|
2018-03-27 17:35:53 +00:00
|
|
|
if (!*chn)
|
2018-03-27 19:10:31 +00:00
|
|
|
{
|
|
|
|
name.str("");
|
|
|
|
name << "altvoltage";
|
|
|
|
name << chid;
|
|
|
|
*chn = iio_device_find_channel(dev, name.str().c_str(), d == TX);
|
|
|
|
}
|
2018-12-10 18:29:00 +00:00
|
|
|
return *chn != nullptr;
|
2018-03-27 17:35:53 +00:00
|
|
|
}
|
|
|
|
|
2018-03-27 19:10:31 +00:00
|
|
|
|
2018-03-27 17:35:53 +00:00
|
|
|
/* finds AD9361 phy IIO configuration channel with id chid */
|
|
|
|
bool get_phy_chan(struct iio_context *ctx, enum iodev d, int chid, struct iio_channel **chn)
|
|
|
|
{
|
|
|
|
std::stringstream name;
|
2018-03-27 19:10:31 +00:00
|
|
|
switch (d)
|
|
|
|
{
|
2018-03-27 17:35:53 +00:00
|
|
|
case RX:
|
|
|
|
name.str("");
|
2018-03-27 19:10:31 +00:00
|
|
|
name << "voltage";
|
|
|
|
name << chid;
|
|
|
|
*chn = iio_device_find_channel(get_ad9361_phy(ctx), name.str().c_str(), false);
|
2018-12-10 18:29:00 +00:00
|
|
|
return *chn != nullptr;
|
2018-03-27 17:35:53 +00:00
|
|
|
break;
|
|
|
|
case TX:
|
|
|
|
name.str("");
|
2018-03-27 19:10:31 +00:00
|
|
|
name << "voltage";
|
|
|
|
name << chid;
|
2018-03-27 17:35:53 +00:00
|
|
|
*chn = iio_device_find_channel(get_ad9361_phy(ctx), name.str().c_str(), true);
|
2018-12-10 18:29:00 +00:00
|
|
|
return *chn != nullptr;
|
2018-03-27 17:35:53 +00:00
|
|
|
break;
|
2018-03-27 19:10:31 +00:00
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
2018-03-27 17:35:53 +00:00
|
|
|
}
|
|
|
|
|
2018-03-27 19:10:31 +00:00
|
|
|
|
2018-03-27 17:35:53 +00:00
|
|
|
/* finds AD9361 local oscillator IIO configuration channels */
|
|
|
|
bool get_lo_chan(struct iio_context *ctx, enum iodev d, struct iio_channel **chn)
|
|
|
|
{
|
2018-03-27 19:10:31 +00:00
|
|
|
switch (d)
|
|
|
|
{
|
2018-03-27 17:35:53 +00:00
|
|
|
// LO chan is always output, i.e. true
|
|
|
|
case RX:
|
|
|
|
*chn = iio_device_find_channel(get_ad9361_phy(ctx), "altvoltage0", true);
|
2018-12-10 18:29:00 +00:00
|
|
|
return *chn != nullptr;
|
2018-03-27 17:35:53 +00:00
|
|
|
case TX:
|
2018-03-27 19:10:31 +00:00
|
|
|
*chn = iio_device_find_channel(get_ad9361_phy(ctx), "altvoltage1", true);
|
2018-12-10 18:29:00 +00:00
|
|
|
return *chn != nullptr;
|
2018-03-27 17:35:53 +00:00
|
|
|
default:
|
|
|
|
return false;
|
2018-03-27 19:10:31 +00:00
|
|
|
}
|
2018-03-27 17:35:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* applies streaming configuration through IIO */
|
|
|
|
bool cfg_ad9361_streaming_ch(struct iio_context *ctx, struct stream_cfg *cfg, enum iodev type, int chid)
|
|
|
|
{
|
2018-12-10 18:29:00 +00:00
|
|
|
struct iio_channel *chn = nullptr;
|
2018-03-27 17:35:53 +00:00
|
|
|
|
|
|
|
// Configure phy and lo channels
|
|
|
|
//LOG(INFO)<<"* Acquiring AD9361 phy channel"<<chid;
|
2018-03-27 19:10:31 +00:00
|
|
|
std::cout << "* Acquiring AD9361 phy channel" << chid << std::endl;
|
|
|
|
if (!get_phy_chan(ctx, type, chid, &chn))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
wr_ch_str(chn, "rf_port_select", cfg->rfport);
|
|
|
|
wr_ch_lli(chn, "rf_bandwidth", cfg->bw_hz);
|
2018-03-27 17:35:53 +00:00
|
|
|
wr_ch_lli(chn, "sampling_frequency", cfg->fs_hz);
|
|
|
|
|
|
|
|
// Configure LO channel
|
|
|
|
//LOG(INFO)<<"* Acquiring AD9361 "<<type == TX ? "TX" : "RX";
|
2018-03-27 19:10:31 +00:00
|
|
|
std::cout << "* Acquiring AD9361 " << (type == TX ? "TX" : "RX") << std::endl;
|
|
|
|
if (!get_lo_chan(ctx, type, &chn))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2018-03-27 17:35:53 +00:00
|
|
|
wr_ch_lli(chn, "frequency", cfg->lo_hz);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-08-11 12:31:35 +00:00
|
|
|
bool config_ad9361_rx_local(uint64_t bandwidth_,
|
|
|
|
uint64_t sample_rate_,
|
|
|
|
uint64_t freq_,
|
2018-12-11 00:56:25 +00:00
|
|
|
const std::string &rf_port_select_,
|
|
|
|
const std::string &gain_mode_rx1_,
|
|
|
|
const std::string &gain_mode_rx2_,
|
2018-03-27 19:10:31 +00:00
|
|
|
double rf_gain_rx1_,
|
|
|
|
double rf_gain_rx2_)
|
2018-03-27 17:35:53 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
// RX stream config
|
|
|
|
// Stream configurations
|
|
|
|
struct stream_cfg rxcfg;
|
2018-03-27 19:10:31 +00:00
|
|
|
rxcfg.bw_hz = bandwidth_; // 2 MHz rf bandwidth
|
|
|
|
rxcfg.fs_hz = sample_rate_; // 2.5 MS/s rx sample rate
|
|
|
|
rxcfg.lo_hz = freq_; // 2.5 GHz rf frequency
|
|
|
|
rxcfg.rfport = rf_port_select_.c_str(); // port A (select for rf freq.)
|
2018-03-27 17:35:53 +00:00
|
|
|
|
2018-03-27 19:10:31 +00:00
|
|
|
std::cout << "AD9361 Acquiring IIO LOCAL context\n";
|
2018-03-27 17:35:53 +00:00
|
|
|
struct iio_context *ctx;
|
|
|
|
// Streaming devices
|
|
|
|
struct iio_device *rx;
|
|
|
|
struct iio_channel *rx0_i;
|
|
|
|
struct iio_channel *rx0_q;
|
|
|
|
|
|
|
|
ctx = iio_create_default_context();
|
|
|
|
if (!ctx)
|
2018-03-27 19:10:31 +00:00
|
|
|
{
|
|
|
|
std::cout << "No context\n";
|
|
|
|
throw std::runtime_error("AD9361 IIO No context");
|
|
|
|
}
|
2018-03-27 17:35:53 +00:00
|
|
|
|
|
|
|
if (iio_context_get_devices_count(ctx) <= 0)
|
2018-03-27 19:10:31 +00:00
|
|
|
{
|
|
|
|
std::cout << "No devices\n";
|
|
|
|
throw std::runtime_error("AD9361 IIO No devices");
|
|
|
|
}
|
2018-03-27 17:35:53 +00:00
|
|
|
|
2018-03-27 19:10:31 +00:00
|
|
|
std::cout << "* Acquiring AD9361 streaming devices\n";
|
2018-03-27 17:35:53 +00:00
|
|
|
|
2018-03-27 19:10:31 +00:00
|
|
|
if (!get_ad9361_stream_dev(ctx, RX, &rx))
|
|
|
|
{
|
|
|
|
std::cout << "No rx dev found\n";
|
|
|
|
throw std::runtime_error("AD9361 IIO No rx dev found");
|
|
|
|
};
|
2018-03-27 17:35:53 +00:00
|
|
|
|
2018-03-27 19:10:31 +00:00
|
|
|
std::cout << "* Configuring AD9361 for streaming\n";
|
2018-03-27 17:35:53 +00:00
|
|
|
if (!cfg_ad9361_streaming_ch(ctx, &rxcfg, RX, 0))
|
2018-03-27 19:10:31 +00:00
|
|
|
{
|
|
|
|
std::cout << "RX port 0 not found\n";
|
|
|
|
throw std::runtime_error("AD9361 IIO RX port 0 not found");
|
|
|
|
}
|
2018-03-27 17:35:53 +00:00
|
|
|
|
2018-03-27 19:10:31 +00:00
|
|
|
std::cout << "* Initializing AD9361 IIO streaming channels\n";
|
2018-03-27 17:35:53 +00:00
|
|
|
if (!get_ad9361_stream_ch(ctx, RX, rx, 0, &rx0_i))
|
2018-03-27 19:10:31 +00:00
|
|
|
{
|
|
|
|
std::cout << "RX chan i not found\n";
|
|
|
|
throw std::runtime_error("RX chan i not found");
|
|
|
|
}
|
2018-03-27 17:35:53 +00:00
|
|
|
|
|
|
|
if (!get_ad9361_stream_ch(ctx, RX, rx, 1, &rx0_q))
|
2018-03-27 19:10:31 +00:00
|
|
|
{
|
|
|
|
std::cout << "RX chan q not found\n";
|
|
|
|
throw std::runtime_error("RX chan q not found");
|
|
|
|
}
|
2018-03-27 17:35:53 +00:00
|
|
|
|
2018-03-27 19:10:31 +00:00
|
|
|
std::cout << "* Enabling IIO streaming channels\n";
|
2018-03-27 17:35:53 +00:00
|
|
|
iio_channel_enable(rx0_i);
|
|
|
|
iio_channel_enable(rx0_q);
|
|
|
|
|
|
|
|
struct iio_device *ad9361_phy;
|
2018-03-27 19:10:31 +00:00
|
|
|
ad9361_phy = iio_context_find_device(ctx, "ad9361-phy");
|
2018-03-27 17:35:53 +00:00
|
|
|
int ret;
|
2018-03-27 19:10:31 +00:00
|
|
|
ret = iio_device_attr_write(ad9361_phy, "trx_rate_governor", "nominal");
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to set trx_rate_governor: " << ret << std::endl;
|
|
|
|
}
|
|
|
|
ret = iio_device_attr_write(ad9361_phy, "ensm_mode", "fdd");
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to set ensm_mode: " << ret << std::endl;
|
|
|
|
}
|
|
|
|
ret = iio_device_attr_write(ad9361_phy, "calib_mode", "auto");
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to set calib_mode: " << ret << std::endl;
|
|
|
|
}
|
|
|
|
ret = iio_device_attr_write(ad9361_phy, "in_voltage0_gain_control_mode", gain_mode_rx1_.c_str());
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to set in_voltage0_gain_control_mode: " << ret << std::endl;
|
|
|
|
}
|
|
|
|
ret = iio_device_attr_write(ad9361_phy, "in_voltage1_gain_control_mode", gain_mode_rx2_.c_str());
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to set in_voltage1_gain_control_mode: " << ret << std::endl;
|
|
|
|
}
|
|
|
|
ret = iio_device_attr_write_double(ad9361_phy, "in_voltage0_hardwaregain", rf_gain_rx1_);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to set in_voltage0_hardwaregain: " << ret << std::endl;
|
|
|
|
}
|
|
|
|
ret = iio_device_attr_write_double(ad9361_phy, "in_voltage1_hardwaregain", rf_gain_rx2_);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to set in_voltage1_hardwaregain: " << ret << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::cout << "End of AD9361 RX configuration.\n";
|
2018-03-27 17:35:53 +00:00
|
|
|
iio_context_destroy(ctx);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-03-27 19:10:31 +00:00
|
|
|
|
2018-12-11 00:56:25 +00:00
|
|
|
bool config_ad9361_rx_remote(const std::string &remote_host,
|
2018-08-11 12:31:35 +00:00
|
|
|
uint64_t bandwidth_,
|
|
|
|
uint64_t sample_rate_,
|
|
|
|
uint64_t freq_,
|
2018-12-11 00:56:25 +00:00
|
|
|
const std::string &rf_port_select_,
|
|
|
|
const std::string &gain_mode_rx1_,
|
|
|
|
const std::string &gain_mode_rx2_,
|
2018-03-27 19:10:31 +00:00
|
|
|
double rf_gain_rx1_,
|
|
|
|
double rf_gain_rx2_)
|
2018-03-27 17:35:53 +00:00
|
|
|
{
|
|
|
|
// RX stream config
|
|
|
|
// Stream configurations
|
|
|
|
struct stream_cfg rxcfg;
|
2018-03-27 19:10:31 +00:00
|
|
|
rxcfg.bw_hz = bandwidth_; // 2 MHz rf bandwidth
|
|
|
|
rxcfg.fs_hz = sample_rate_; // 2.5 MS/s rx sample rate
|
|
|
|
rxcfg.lo_hz = freq_; // 2.5 GHz rf frequency
|
|
|
|
rxcfg.rfport = rf_port_select_.c_str(); // port A (select for rf freq.)
|
2018-03-27 17:35:53 +00:00
|
|
|
|
2018-03-27 19:10:31 +00:00
|
|
|
std::cout << "AD9361 Acquiring IIO REMOTE context in host " << remote_host << std::endl;
|
2018-03-27 17:35:53 +00:00
|
|
|
struct iio_context *ctx;
|
|
|
|
// Streaming devices
|
|
|
|
struct iio_device *rx;
|
|
|
|
struct iio_channel *rx0_i;
|
|
|
|
struct iio_channel *rx0_q;
|
|
|
|
|
|
|
|
ctx = iio_create_network_context(remote_host.c_str());
|
|
|
|
if (!ctx)
|
2018-03-27 19:10:31 +00:00
|
|
|
{
|
|
|
|
std::cout << "No context\n";
|
|
|
|
throw std::runtime_error("AD9361 IIO No context");
|
|
|
|
}
|
2018-03-27 17:35:53 +00:00
|
|
|
|
|
|
|
if (iio_context_get_devices_count(ctx) <= 0)
|
2018-03-27 19:10:31 +00:00
|
|
|
{
|
|
|
|
std::cout << "No devices\n";
|
|
|
|
throw std::runtime_error("AD9361 IIO No devices");
|
|
|
|
}
|
2018-03-27 17:35:53 +00:00
|
|
|
|
2018-03-27 19:10:31 +00:00
|
|
|
std::cout << "* Acquiring AD9361 streaming devices\n";
|
2018-03-27 17:35:53 +00:00
|
|
|
|
2018-03-27 19:10:31 +00:00
|
|
|
if (!get_ad9361_stream_dev(ctx, RX, &rx))
|
|
|
|
{
|
|
|
|
std::cout << "No rx dev found\n";
|
|
|
|
throw std::runtime_error("AD9361 IIO No rx dev found");
|
|
|
|
};
|
2018-03-27 17:35:53 +00:00
|
|
|
|
2018-03-27 19:10:31 +00:00
|
|
|
std::cout << "* Configuring AD9361 for streaming\n";
|
2018-03-27 17:35:53 +00:00
|
|
|
if (!cfg_ad9361_streaming_ch(ctx, &rxcfg, RX, 0))
|
2018-03-27 19:10:31 +00:00
|
|
|
{
|
|
|
|
std::cout << "RX port 0 not found\n";
|
|
|
|
throw std::runtime_error("AD9361 IIO RX port 0 not found");
|
|
|
|
}
|
2018-03-27 17:35:53 +00:00
|
|
|
|
2018-03-27 19:10:31 +00:00
|
|
|
std::cout << "* Initializing AD9361 IIO streaming channels\n";
|
2018-03-27 17:35:53 +00:00
|
|
|
if (!get_ad9361_stream_ch(ctx, RX, rx, 0, &rx0_i))
|
2018-03-27 19:10:31 +00:00
|
|
|
{
|
|
|
|
std::cout << "RX chan i not found\n";
|
|
|
|
throw std::runtime_error("RX chan i not found");
|
|
|
|
}
|
2018-03-27 17:35:53 +00:00
|
|
|
|
|
|
|
if (!get_ad9361_stream_ch(ctx, RX, rx, 1, &rx0_q))
|
2018-03-27 19:10:31 +00:00
|
|
|
{
|
|
|
|
std::cout << "RX chan q not found\n";
|
|
|
|
throw std::runtime_error("RX chan q not found");
|
|
|
|
}
|
2018-03-27 17:35:53 +00:00
|
|
|
|
2018-03-27 19:10:31 +00:00
|
|
|
std::cout << "* Enabling IIO streaming channels\n";
|
2018-03-27 17:35:53 +00:00
|
|
|
iio_channel_enable(rx0_i);
|
|
|
|
iio_channel_enable(rx0_q);
|
|
|
|
|
|
|
|
struct iio_device *ad9361_phy;
|
2018-03-27 19:10:31 +00:00
|
|
|
ad9361_phy = iio_context_find_device(ctx, "ad9361-phy");
|
2018-03-27 17:35:53 +00:00
|
|
|
int ret;
|
2018-03-27 19:10:31 +00:00
|
|
|
ret = iio_device_attr_write(ad9361_phy, "trx_rate_governor", "nominal");
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to set trx_rate_governor: " << ret << std::endl;
|
|
|
|
}
|
|
|
|
ret = iio_device_attr_write(ad9361_phy, "ensm_mode", "fdd");
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to set ensm_mode: " << ret << std::endl;
|
|
|
|
}
|
|
|
|
ret = iio_device_attr_write(ad9361_phy, "calib_mode", "auto");
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to set calib_mode: " << ret << std::endl;
|
|
|
|
}
|
|
|
|
ret = iio_device_attr_write(ad9361_phy, "in_voltage0_gain_control_mode", gain_mode_rx1_.c_str());
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to set in_voltage0_gain_control_mode: " << ret << std::endl;
|
|
|
|
}
|
|
|
|
ret = iio_device_attr_write(ad9361_phy, "in_voltage1_gain_control_mode", gain_mode_rx2_.c_str());
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to set in_voltage1_gain_control_mode: " << ret << std::endl;
|
|
|
|
}
|
|
|
|
ret = iio_device_attr_write_double(ad9361_phy, "in_voltage0_hardwaregain", rf_gain_rx1_);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to set in_voltage0_hardwaregain: " << ret << std::endl;
|
|
|
|
}
|
|
|
|
ret = iio_device_attr_write_double(ad9361_phy, "in_voltage1_hardwaregain", rf_gain_rx2_);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to set in_voltage1_hardwaregain: " << ret << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::cout << "End of AD9361 RX configuration.\n";
|
2018-03-27 17:35:53 +00:00
|
|
|
|
|
|
|
iio_context_destroy(ctx);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-03-27 19:10:31 +00:00
|
|
|
|
2018-08-11 12:31:35 +00:00
|
|
|
bool config_ad9361_lo_local(uint64_t bandwidth_,
|
|
|
|
uint64_t sample_rate_,
|
|
|
|
uint64_t freq_rf_tx_hz_,
|
2018-03-27 19:10:31 +00:00
|
|
|
double tx_attenuation_db_,
|
2018-08-11 12:31:35 +00:00
|
|
|
int64_t freq_dds_tx_hz_,
|
2018-03-27 19:10:31 +00:00
|
|
|
double scale_dds_dbfs_)
|
2018-03-27 17:35:53 +00:00
|
|
|
{
|
|
|
|
// TX stream config
|
2018-03-27 19:10:31 +00:00
|
|
|
std::cout << "Start of AD9361 TX Local Oscillator DDS configuration\n";
|
2018-03-27 17:35:53 +00:00
|
|
|
struct stream_cfg txcfg;
|
|
|
|
txcfg.bw_hz = bandwidth_;
|
|
|
|
txcfg.fs_hz = sample_rate_;
|
|
|
|
txcfg.lo_hz = freq_rf_tx_hz_;
|
|
|
|
txcfg.rfport = "A";
|
|
|
|
|
2018-03-27 19:10:31 +00:00
|
|
|
std::cout << "AD9361 Acquiring IIO LOCAL context\n";
|
2018-03-27 17:35:53 +00:00
|
|
|
struct iio_context *ctx;
|
|
|
|
ctx = iio_create_default_context();
|
|
|
|
if (!ctx)
|
2018-03-27 19:10:31 +00:00
|
|
|
{
|
|
|
|
std::cout << "No context\n";
|
|
|
|
throw std::runtime_error("AD9361 IIO No context");
|
|
|
|
}
|
2018-03-27 17:35:53 +00:00
|
|
|
|
|
|
|
//find tx device
|
|
|
|
struct iio_device *tx;
|
|
|
|
|
2018-03-27 19:10:31 +00:00
|
|
|
std::cout << "* Acquiring AD9361 TX streaming devices\n";
|
2018-03-27 17:35:53 +00:00
|
|
|
|
2018-03-27 19:10:31 +00:00
|
|
|
if (!get_ad9361_stream_dev(ctx, TX, &tx))
|
|
|
|
{
|
|
|
|
std::cout << "No tx dev found\n";
|
|
|
|
throw std::runtime_error("AD9361 IIO No tx dev found");
|
|
|
|
};
|
2018-03-27 17:35:53 +00:00
|
|
|
|
2018-03-27 19:10:31 +00:00
|
|
|
std::cout << "* Configuring AD9361 for streaming TX\n";
|
2018-03-27 17:35:53 +00:00
|
|
|
if (!cfg_ad9361_streaming_ch(ctx, &txcfg, TX, 0))
|
2018-03-27 19:10:31 +00:00
|
|
|
{
|
|
|
|
std::cout << "TX port 0 not found\n";
|
|
|
|
throw std::runtime_error("AD9361 IIO TX port 0 not found");
|
|
|
|
}
|
2018-03-27 17:35:53 +00:00
|
|
|
|
|
|
|
//ENABLE DDS on TX1
|
|
|
|
struct iio_device *ad9361_phy;
|
2018-03-27 19:10:31 +00:00
|
|
|
ad9361_phy = iio_context_find_device(ctx, "ad9361-phy");
|
2018-03-27 17:35:53 +00:00
|
|
|
int ret;
|
|
|
|
//set output amplifier attenuation
|
|
|
|
ret = iio_device_attr_write_double(ad9361_phy, "out_voltage0_hardwaregain", -tx_attenuation_db_);
|
2018-03-27 19:10:31 +00:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to set out_voltage0_hardwaregain value " << -tx_attenuation_db_ << " error " << ret << std::endl;
|
|
|
|
}
|
2018-03-27 17:35:53 +00:00
|
|
|
|
|
|
|
struct iio_device *dds;
|
2018-03-27 19:10:31 +00:00
|
|
|
dds = iio_context_find_device(ctx, "cf-ad9361-dds-core-lpc");
|
2018-03-27 17:35:53 +00:00
|
|
|
struct iio_channel *dds_channel0_I;
|
|
|
|
dds_channel0_I = iio_device_find_channel(dds, "TX1_I_F1", true);
|
|
|
|
|
|
|
|
struct iio_channel *dds_channel0_Q;
|
|
|
|
dds_channel0_Q = iio_device_find_channel(dds, "TX1_Q_F1", true);
|
|
|
|
|
|
|
|
ret = iio_channel_attr_write_bool(dds_channel0_I, "raw", true);
|
2018-03-27 19:10:31 +00:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to toggle DDS: " << ret << std::endl;
|
|
|
|
}
|
2018-03-27 17:35:53 +00:00
|
|
|
|
|
|
|
//set frequency, scale and phase
|
|
|
|
|
2018-08-11 12:31:35 +00:00
|
|
|
ret = iio_channel_attr_write_longlong(dds_channel0_I, "frequency", static_cast<int64_t>(freq_dds_tx_hz_));
|
2018-03-27 19:10:31 +00:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to set TX DDS frequency I: " << ret << std::endl;
|
|
|
|
}
|
|
|
|
|
2018-08-11 12:31:35 +00:00
|
|
|
ret = iio_channel_attr_write_longlong(dds_channel0_Q, "frequency", static_cast<int64_t>(freq_dds_tx_hz_));
|
2018-03-27 19:10:31 +00:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to set TX DDS frequency Q: " << ret << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = iio_channel_attr_write_double(dds_channel0_I, "phase", 0.0);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to set TX DDS phase I: " << ret << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = iio_channel_attr_write_double(dds_channel0_Q, "phase", 270000.0);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to set TX DDS phase Q: " << ret << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = iio_channel_attr_write_double(dds_channel0_I, "scale", pow(10, scale_dds_dbfs_ / 20.0));
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to set TX DDS scale I: " << ret << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = iio_channel_attr_write_double(dds_channel0_Q, "scale", pow(10, scale_dds_dbfs_ / 20.0));
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to set TX DDS scale Q: " << ret << std::endl;
|
|
|
|
}
|
2018-03-27 17:35:53 +00:00
|
|
|
|
|
|
|
//disable TX2
|
|
|
|
|
|
|
|
ret = iio_device_attr_write_double(ad9361_phy, "out_voltage1_hardwaregain", -89.0);
|
2018-03-27 19:10:31 +00:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to set out_voltage1_hardwaregain value " << -89.0 << " error " << ret << std::endl;
|
|
|
|
}
|
2018-03-27 17:35:53 +00:00
|
|
|
|
|
|
|
struct iio_channel *dds_channel1_I;
|
|
|
|
dds_channel1_I = iio_device_find_channel(dds, "TX2_I_F1", true);
|
|
|
|
|
|
|
|
struct iio_channel *dds_channel1_Q;
|
|
|
|
dds_channel1_Q = iio_device_find_channel(dds, "TX2_Q_F1", true);
|
|
|
|
|
2018-03-27 19:10:31 +00:00
|
|
|
ret = iio_channel_attr_write_double(dds_channel1_I, "scale", 0);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to set TX2 DDS scale I: " << ret << std::endl;
|
|
|
|
}
|
2018-03-27 17:35:53 +00:00
|
|
|
|
2018-03-27 19:10:31 +00:00
|
|
|
ret = iio_channel_attr_write_double(dds_channel1_Q, "scale", 0);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to set TX2 DDS scale Q: " << ret << std::endl;
|
|
|
|
}
|
2018-03-27 17:35:53 +00:00
|
|
|
|
|
|
|
iio_context_destroy(ctx);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-03-27 19:10:31 +00:00
|
|
|
|
2018-12-11 00:56:25 +00:00
|
|
|
bool config_ad9361_lo_remote(const std::string &remote_host,
|
2018-08-11 12:31:35 +00:00
|
|
|
uint64_t bandwidth_,
|
|
|
|
uint64_t sample_rate_,
|
|
|
|
uint64_t freq_rf_tx_hz_,
|
2018-03-27 19:10:31 +00:00
|
|
|
double tx_attenuation_db_,
|
2018-08-11 12:31:35 +00:00
|
|
|
int64_t freq_dds_tx_hz_,
|
2018-03-27 19:10:31 +00:00
|
|
|
double scale_dds_dbfs_)
|
2018-03-27 17:35:53 +00:00
|
|
|
{
|
|
|
|
// TX stream config
|
2018-03-27 19:10:31 +00:00
|
|
|
std::cout << "Start of AD9361 TX Local Oscillator DDS configuration\n";
|
2018-03-27 17:35:53 +00:00
|
|
|
struct stream_cfg txcfg;
|
|
|
|
txcfg.bw_hz = bandwidth_;
|
|
|
|
txcfg.fs_hz = sample_rate_;
|
|
|
|
txcfg.lo_hz = freq_rf_tx_hz_;
|
|
|
|
txcfg.rfport = "A";
|
|
|
|
|
2018-03-27 19:10:31 +00:00
|
|
|
std::cout << "AD9361 Acquiring IIO REMOTE context in host " << remote_host << std::endl;
|
2018-03-27 17:35:53 +00:00
|
|
|
struct iio_context *ctx;
|
|
|
|
ctx = iio_create_network_context(remote_host.c_str());
|
|
|
|
if (!ctx)
|
2018-03-27 19:10:31 +00:00
|
|
|
{
|
|
|
|
std::cout << "No context\n";
|
|
|
|
throw std::runtime_error("AD9361 IIO No context");
|
|
|
|
}
|
2018-03-27 17:35:53 +00:00
|
|
|
|
|
|
|
//find tx device
|
|
|
|
struct iio_device *tx;
|
|
|
|
|
2018-03-27 19:10:31 +00:00
|
|
|
std::cout << "* Acquiring AD9361 TX streaming devices\n";
|
2018-03-27 17:35:53 +00:00
|
|
|
|
2018-03-27 19:10:31 +00:00
|
|
|
if (!get_ad9361_stream_dev(ctx, TX, &tx))
|
|
|
|
{
|
|
|
|
std::cout << "No tx dev found\n";
|
|
|
|
throw std::runtime_error("AD9361 IIO No tx dev found");
|
|
|
|
};
|
2018-03-27 17:35:53 +00:00
|
|
|
|
2018-03-27 19:10:31 +00:00
|
|
|
std::cout << "* Configuring AD9361 for streaming TX\n";
|
2018-03-27 17:35:53 +00:00
|
|
|
if (!cfg_ad9361_streaming_ch(ctx, &txcfg, TX, 0))
|
2018-03-27 19:10:31 +00:00
|
|
|
{
|
|
|
|
std::cout << "TX port 0 not found\n";
|
|
|
|
throw std::runtime_error("AD9361 IIO TX port 0 not found");
|
|
|
|
}
|
2018-03-27 17:35:53 +00:00
|
|
|
|
|
|
|
//ENABLE DDS on TX1
|
|
|
|
struct iio_device *ad9361_phy;
|
2018-03-27 19:10:31 +00:00
|
|
|
ad9361_phy = iio_context_find_device(ctx, "ad9361-phy");
|
2018-03-27 17:35:53 +00:00
|
|
|
int ret;
|
|
|
|
//set output amplifier attenuation
|
|
|
|
ret = iio_device_attr_write_double(ad9361_phy, "out_voltage0_hardwaregain", -tx_attenuation_db_);
|
2018-03-27 19:10:31 +00:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to set out_voltage0_hardwaregain value " << -tx_attenuation_db_ << " error " << ret << std::endl;
|
|
|
|
}
|
2018-03-27 17:35:53 +00:00
|
|
|
|
|
|
|
struct iio_device *dds;
|
2018-03-27 19:10:31 +00:00
|
|
|
dds = iio_context_find_device(ctx, "cf-ad9361-dds-core-lpc");
|
2018-03-27 17:35:53 +00:00
|
|
|
struct iio_channel *dds_channel0_I;
|
|
|
|
dds_channel0_I = iio_device_find_channel(dds, "TX1_I_F1", true);
|
|
|
|
|
|
|
|
struct iio_channel *dds_channel0_Q;
|
|
|
|
dds_channel0_Q = iio_device_find_channel(dds, "TX1_Q_F1", true);
|
|
|
|
|
|
|
|
ret = iio_channel_attr_write_bool(dds_channel0_I, "raw", true);
|
2018-03-27 19:10:31 +00:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to toggle DDS: " << ret << std::endl;
|
|
|
|
}
|
2018-03-27 17:35:53 +00:00
|
|
|
|
|
|
|
//set frequency, scale and phase
|
|
|
|
|
2018-08-11 12:31:35 +00:00
|
|
|
ret = iio_channel_attr_write_longlong(dds_channel0_I, "frequency", static_cast<int64_t>(freq_dds_tx_hz_));
|
2018-03-27 19:10:31 +00:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to set TX DDS frequency I: " << ret << std::endl;
|
|
|
|
}
|
|
|
|
|
2018-08-11 12:31:35 +00:00
|
|
|
ret = iio_channel_attr_write_longlong(dds_channel0_Q, "frequency", static_cast<int64_t>(freq_dds_tx_hz_));
|
2018-03-27 19:10:31 +00:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to set TX DDS frequency Q: " << ret << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = iio_channel_attr_write_double(dds_channel0_I, "phase", 0.0);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to set TX DDS phase I: " << ret << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = iio_channel_attr_write_double(dds_channel0_Q, "phase", 270000.0);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to set TX DDS phase Q: " << ret << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = iio_channel_attr_write_double(dds_channel0_I, "scale", pow(10, scale_dds_dbfs_ / 20.0));
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to set TX DDS scale I: " << ret << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = iio_channel_attr_write_double(dds_channel0_Q, "scale", pow(10, scale_dds_dbfs_ / 20.0));
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to set TX DDS scale Q: " << ret << std::endl;
|
|
|
|
}
|
2018-03-27 17:35:53 +00:00
|
|
|
|
|
|
|
//disable TX2
|
|
|
|
|
|
|
|
ret = iio_device_attr_write_double(ad9361_phy, "out_voltage1_hardwaregain", -89.0);
|
2018-03-27 19:10:31 +00:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to set out_voltage1_hardwaregain value " << -89.0 << " error " << ret << std::endl;
|
|
|
|
}
|
2018-03-27 17:35:53 +00:00
|
|
|
|
|
|
|
struct iio_channel *dds_channel1_I;
|
|
|
|
dds_channel1_I = iio_device_find_channel(dds, "TX2_I_F1", true);
|
|
|
|
|
|
|
|
struct iio_channel *dds_channel1_Q;
|
|
|
|
dds_channel1_Q = iio_device_find_channel(dds, "TX2_Q_F1", true);
|
|
|
|
|
2018-03-27 19:10:31 +00:00
|
|
|
ret = iio_channel_attr_write_double(dds_channel1_I, "scale", 0);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to set TX2 DDS scale I: " << ret << std::endl;
|
|
|
|
}
|
2018-03-27 17:35:53 +00:00
|
|
|
|
2018-03-27 19:10:31 +00:00
|
|
|
ret = iio_channel_attr_write_double(dds_channel1_Q, "scale", 0);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to set TX2 DDS scale Q: " << ret << std::endl;
|
|
|
|
}
|
2018-03-27 17:35:53 +00:00
|
|
|
|
|
|
|
iio_context_destroy(ctx);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-12-11 00:56:25 +00:00
|
|
|
bool ad9361_disable_lo_remote(const std::string &remote_host)
|
2018-03-27 17:35:53 +00:00
|
|
|
{
|
2018-03-27 19:10:31 +00:00
|
|
|
std::cout << "AD9361 Acquiring IIO REMOTE context in host " << remote_host << std::endl;
|
2018-03-27 17:35:53 +00:00
|
|
|
struct iio_context *ctx;
|
|
|
|
ctx = iio_create_network_context(remote_host.c_str());
|
|
|
|
if (!ctx)
|
2018-03-27 19:10:31 +00:00
|
|
|
{
|
|
|
|
std::cout << "No context\n";
|
|
|
|
throw std::runtime_error("AD9361 IIO No context");
|
|
|
|
}
|
2018-03-27 17:35:53 +00:00
|
|
|
struct iio_device *dds;
|
2018-03-27 19:10:31 +00:00
|
|
|
dds = iio_context_find_device(ctx, "cf-ad9361-dds-core-lpc");
|
2018-03-27 17:35:53 +00:00
|
|
|
struct iio_channel *dds_channel0_I;
|
|
|
|
dds_channel0_I = iio_device_find_channel(dds, "TX1_I_F1", true);
|
|
|
|
|
|
|
|
struct iio_channel *dds_channel0_Q;
|
|
|
|
dds_channel0_Q = iio_device_find_channel(dds, "TX1_Q_F1", true);
|
|
|
|
int ret;
|
|
|
|
ret = iio_channel_attr_write_bool(dds_channel0_I, "raw", false);
|
2018-03-27 19:10:31 +00:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to toggle DDS: " << ret << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = iio_channel_attr_write_double(dds_channel0_I, "scale", 0.0);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to set TX DDS scale I: " << ret << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = iio_channel_attr_write_double(dds_channel0_Q, "scale", 0.0);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to set TX DDS scale Q: " << ret << std::endl;
|
|
|
|
}
|
2018-03-27 17:35:53 +00:00
|
|
|
|
|
|
|
iio_context_destroy(ctx);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-03-27 19:10:31 +00:00
|
|
|
|
2018-03-27 17:35:53 +00:00
|
|
|
bool ad9361_disable_lo_local()
|
|
|
|
{
|
2018-03-27 19:10:31 +00:00
|
|
|
std::cout << "AD9361 Acquiring IIO LOCAL context" << std::endl;
|
2018-03-27 17:35:53 +00:00
|
|
|
struct iio_context *ctx;
|
|
|
|
ctx = iio_create_default_context();
|
|
|
|
if (!ctx)
|
2018-03-27 19:10:31 +00:00
|
|
|
{
|
|
|
|
std::cout << "No context\n";
|
|
|
|
throw std::runtime_error("AD9361 IIO No context");
|
|
|
|
}
|
2018-03-27 17:35:53 +00:00
|
|
|
struct iio_device *dds;
|
2018-03-27 19:10:31 +00:00
|
|
|
dds = iio_context_find_device(ctx, "cf-ad9361-dds-core-lpc");
|
2018-03-27 17:35:53 +00:00
|
|
|
struct iio_channel *dds_channel0_I;
|
|
|
|
dds_channel0_I = iio_device_find_channel(dds, "TX1_I_F1", true);
|
|
|
|
|
|
|
|
struct iio_channel *dds_channel0_Q;
|
|
|
|
dds_channel0_Q = iio_device_find_channel(dds, "TX1_Q_F1", true);
|
|
|
|
int ret;
|
|
|
|
ret = iio_channel_attr_write_bool(dds_channel0_I, "raw", false);
|
2018-03-27 19:10:31 +00:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to toggle DDS: " << ret << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = iio_channel_attr_write_double(dds_channel0_I, "scale", 0.0);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to set TX DDS scale I: " << ret << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = iio_channel_attr_write_double(dds_channel0_Q, "scale", 0.0);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
std::cout << "Failed to set TX DDS scale Q: " << ret << std::endl;
|
|
|
|
}
|
2018-03-27 17:35:53 +00:00
|
|
|
|
|
|
|
iio_context_destroy(ctx);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|