mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-01-20 22:17:03 +00:00
154 lines
4.7 KiB
C++
154 lines
4.7 KiB
C++
/*!
|
|
* \file ad9361_manager.h
|
|
* \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:
|
|
* https://git.osmocom.org/rtl-sdr
|
|
*
|
|
* -----------------------------------------------------------------------------
|
|
*
|
|
* 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
|
|
*
|
|
* -----------------------------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef GNSS_SDR_AD9361_MANAGER_H
|
|
#define GNSS_SDR_AD9361_MANAGER_H
|
|
|
|
#include <iio.h>
|
|
#include <cstdint>
|
|
#include <string>
|
|
|
|
/** \addtogroup Signal_Source
|
|
* \{ */
|
|
/** \addtogroup Signal_Source_libs signal_source_libs
|
|
* Library with utilities for signal sources.
|
|
* \{ */
|
|
|
|
#define FIR_BUF_SIZE 8192
|
|
|
|
static const std::string RX_DEV_A = "ad9361-phy"; // one or two AD9361s are present
|
|
static const std::string RX_DEV_B = "ad9361-phy-B"; // one or two AD9361s are present
|
|
static const std::string RX_STREAM_DEV = "cf-ad9361-lpc"; // one AD9361 is present
|
|
static const std::string RX_STREAM_DEV_A = "cf-ad9361-A"; // two AD9361s are present
|
|
static const std::string RX_STREAM_DEV_B = "cf-ad9361-B"; // two AD9361s are present
|
|
static const std::string TX_STREAM_DEV = "cf-ad9361-dds-core-lpc";
|
|
|
|
/* RX is input, TX is output */
|
|
enum iodev
|
|
{
|
|
RX,
|
|
TX
|
|
};
|
|
|
|
/* common RX and TX streaming params */
|
|
struct stream_cfg
|
|
{
|
|
int64_t bw_hz; // Analog bandwidth in Hz
|
|
int64_t fs_hz; // Baseband sample rate in Hz
|
|
int64_t lo_hz; // Local oscillator frequency in Hz
|
|
const char *rfport; // Port name
|
|
};
|
|
|
|
/* check return value of attr_write function */
|
|
void errchk(int v, const char *what);
|
|
|
|
/* write attribute: int64_t int */
|
|
void wr_ch_lli(struct iio_channel *chn, const char *what, int64_t val);
|
|
|
|
/* write attribute: string */
|
|
void wr_ch_str(struct iio_channel *chn, const char *what, const char *str);
|
|
|
|
/* returns ad9361 phy device */
|
|
struct iio_device *get_ad9361_phy(struct iio_context *ctx);
|
|
|
|
/* finds AD9361 streaming IIO devices */
|
|
bool get_ad9361_stream_dev(struct iio_context *ctx, enum iodev d, struct iio_device **dev);
|
|
|
|
/* finds AD9361 streaming IIO channels */
|
|
bool get_ad9361_stream_ch(struct iio_context *ctx, enum iodev d, struct iio_device *dev, int chid, struct iio_channel **chn);
|
|
|
|
/* 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);
|
|
|
|
/* finds AD9361 local oscillator IIO configuration channels */
|
|
bool get_lo_chan(struct iio_context *ctx, enum iodev d, struct iio_channel **chn);
|
|
|
|
/* applies streaming configuration through IIO */
|
|
bool cfg_ad9361_streaming_ch(struct iio_context *ctx, struct stream_cfg *cfg, enum iodev type, int chid);
|
|
|
|
bool config_ad9361_rx_local(uint64_t bandwidth_,
|
|
uint64_t sample_rate_,
|
|
uint64_t freq0_,
|
|
uint64_t freq1_,
|
|
const std::string &rf_port_select_,
|
|
bool rx1_enable_,
|
|
bool rx2_enable_,
|
|
const std::string &gain_mode_rx1_,
|
|
const std::string &gain_mode_rx2_,
|
|
double rf_gain_rx1_,
|
|
double rf_gain_rx2_,
|
|
bool quadrature_,
|
|
bool rfdc_,
|
|
bool bbdc_,
|
|
std::string filter_source_,
|
|
std::string filter_filename_,
|
|
float Fpass_,
|
|
float Fstop_);
|
|
|
|
bool config_ad9361_rx_remote(const std::string &remote_host,
|
|
uint64_t bandwidth_,
|
|
uint64_t sample_rate_,
|
|
uint64_t freq_,
|
|
const std::string &rf_port_select_,
|
|
bool rx1_enable_,
|
|
bool rx2_enable_,
|
|
const std::string &gain_mode_rx1_,
|
|
const std::string &gain_mode_rx2_,
|
|
double rf_gain_rx1_,
|
|
double rf_gain_rx2_,
|
|
bool quadrature_,
|
|
bool rfdc_,
|
|
bool bbdc_,
|
|
std::string filter_source_,
|
|
std::string filter_filename_,
|
|
float Fpass_,
|
|
float Fstop_);
|
|
|
|
bool config_ad9361_lo_local(uint64_t bandwidth_,
|
|
uint64_t sample_rate_,
|
|
uint64_t freq_rf_tx_hz_,
|
|
double tx_attenuation_db_,
|
|
int64_t freq_dds_tx_hz_,
|
|
double scale_dds_dbfs_,
|
|
double phase_dds_deg_);
|
|
|
|
bool config_ad9361_lo_remote(const std::string &remote_host,
|
|
uint64_t bandwidth_,
|
|
uint64_t sample_rate_,
|
|
uint64_t freq_rf_tx_hz_,
|
|
double tx_attenuation_db_,
|
|
int64_t freq_dds_tx_hz_,
|
|
double scale_dds_dbfs_,
|
|
double phase_dds_deg_);
|
|
|
|
bool ad9361_disable_lo_remote(const std::string &remote_host);
|
|
|
|
bool ad9361_disable_lo_local();
|
|
|
|
bool load_fir_filter(std::string &filter, struct iio_device *phy);
|
|
|
|
bool disable_ad9361_rx_local();
|
|
|
|
bool disable_ad9361_rx_remote(const std::string &remote_host);
|
|
|
|
|
|
/** \} */
|
|
/** \} */
|
|
#endif // GNSS_SDR_AD9361_MANAGER_H
|