mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-trx.git
synced 2025-10-29 19:23:34 +00:00
Compare commits
24 Commits
1.2.0
...
whytek/ocs
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3629017b0d | ||
|
|
6d496c8e15 | ||
|
|
dfc6e5ffc7 | ||
|
|
f8c0c464b8 | ||
|
|
93707d0227 | ||
|
|
5291e8a654 | ||
|
|
7a07de1efd | ||
|
|
fd67262df8 | ||
|
|
0569845a08 | ||
|
|
c69b87f9bd | ||
|
|
a7bf6cd8a4 | ||
|
|
e7f6a27ab6 | ||
|
|
a979f5f32b | ||
|
|
b0e54265ad | ||
|
|
62c9280590 | ||
|
|
1421adbc61 | ||
|
|
dccc82491c | ||
|
|
bf58370675 | ||
|
|
7c84925ea4 | ||
|
|
fd99c6ce05 | ||
|
|
e947db8d98 | ||
|
|
9279e0e123 | ||
|
|
84231bd8b7 | ||
|
|
aebbfe0ee7 |
2
COPYING
2
COPYING
@@ -666,7 +666,7 @@ For more information on this, and how to apply and follow the GNU AGPL, see
|
||||
=========================================================================
|
||||
|
||||
This marks the end of the AGPLv3 text. The following text is appended to the
|
||||
same file for convience but constituting a distinct document, not part of the
|
||||
same file for convenience but constituting a distinct document, not part of the
|
||||
actual AGPL text and not part of an attempt to create a deriviative work based
|
||||
on the AGPLv3 text.
|
||||
|
||||
|
||||
@@ -58,6 +58,9 @@ extern "C" {
|
||||
#define LOGLV(category, level) \
|
||||
Log(category, level, __BASE_FILE__, __LINE__).get() << "[tid=" << pthread_self() << "] "
|
||||
|
||||
#define LOGSRC(category, level, file, line) \
|
||||
Log(category, level, file, line).get() << "[tid=" << pthread_self() << "] "
|
||||
|
||||
#define LOGCHAN(chan, category, level) \
|
||||
Log(category, LOGL_##level, __BASE_FILE__, __LINE__).get() << "[tid=" << pthread_self() << "][chan=" << chan << "] "
|
||||
|
||||
|
||||
@@ -232,7 +232,7 @@ template <class T> class Vector {
|
||||
assert(mStart+span<=mEnd);
|
||||
for (i = 0; i < span; i++, src++, dst++)
|
||||
*dst = *src;
|
||||
/*TODO if not non-trivially copyable type class, optimize:
|
||||
/*TODO if not non-trivially copiable type class, optimize:
|
||||
memcpy(dst,mStart,span*sizeof(T)); */
|
||||
}
|
||||
|
||||
|
||||
@@ -21,7 +21,17 @@
|
||||
* See the COPYING file in the main directory for details.
|
||||
*/
|
||||
|
||||
#include <pthread.h>
|
||||
#include "config.h"
|
||||
|
||||
/* If HAVE_GETTID, then "_GNU_SOURCE" may need to be defined to use gettid() */
|
||||
#if HAVE_GETTID
|
||||
#define _GNU_SOURCE
|
||||
#endif
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <unistd.h>
|
||||
#include <sys/syscall.h>
|
||||
#include "config.h"
|
||||
|
||||
#include <osmocom/core/logging.h>
|
||||
#include <osmocom/core/utils.h>
|
||||
@@ -65,9 +75,9 @@ static const struct log_info_cat default_categories[] = {
|
||||
.color = NULL,
|
||||
.enabled = 1, .loglevel = LOGL_INFO,
|
||||
},
|
||||
[DLMS] = {
|
||||
.name = "DLMS",
|
||||
.description = "Logging from within LimeSuite itself",
|
||||
[DDEVDRV] = {
|
||||
.name = "DDEVDRV",
|
||||
.description = "Logging from external device driver library implementing lower level specifics",
|
||||
.color = NULL,
|
||||
.enabled = 1, .loglevel = LOGL_NOTICE,
|
||||
},
|
||||
@@ -77,3 +87,15 @@ const struct log_info log_info = {
|
||||
.cat = default_categories,
|
||||
.num_cat = ARRAY_SIZE(default_categories),
|
||||
};
|
||||
|
||||
pid_t my_gettid(void)
|
||||
{
|
||||
#if HAVE_GETTID
|
||||
return gettid();
|
||||
#elif defined(LINUX) && defined(__NR_gettid)
|
||||
return (pid_t) syscall(__NR_gettid);
|
||||
#else
|
||||
#pragma message ("use pid as tid")
|
||||
return getpid();
|
||||
#endif
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#pragma once
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <pthread.h>
|
||||
#include <sys/types.h>
|
||||
|
||||
#include <osmocom/core/logging.h>
|
||||
|
||||
@@ -15,13 +15,15 @@ enum {
|
||||
DTRXDDL,
|
||||
DTRXDUL,
|
||||
DDEV,
|
||||
DLMS,
|
||||
DDEVDRV,
|
||||
};
|
||||
|
||||
pid_t my_gettid(void);
|
||||
|
||||
#define CLOGC(category, level, fmt, args...) do { \
|
||||
LOGP(category, level, "[tid=%lu] " fmt, pthread_self(), ##args); \
|
||||
LOGP(category, level, "[tid=%ld] " fmt, (long int) my_gettid(), ##args); \
|
||||
} while(0)
|
||||
|
||||
#define CLOGCHAN(chan, category, level, fmt, args...) do { \
|
||||
LOGP(category, level, "[tid=%lu][chan=%lu] " fmt, pthread_self(), chan, ##args); \
|
||||
LOGP(category, level, "[tid=%ld][chan=%zu] " fmt, (long int) my_gettid(), chan, ##args); \
|
||||
} while(0)
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
#include <osmocom/core/rate_ctr.h>
|
||||
|
||||
#include <osmocom/vty/command.h>
|
||||
#include <osmocom/vty/logging.h>
|
||||
#include <osmocom/vty/vty.h>
|
||||
#include <osmocom/vty/misc.h>
|
||||
|
||||
@@ -41,7 +42,7 @@
|
||||
|
||||
static struct trx_ctx* g_trx_ctx;
|
||||
|
||||
static const struct value_string clock_ref_names[] = {
|
||||
const struct value_string clock_ref_names[] = {
|
||||
{ REF_INTERNAL, "internal" },
|
||||
{ REF_EXTERNAL, "external" },
|
||||
{ REF_GPS, "gpsdo" },
|
||||
@@ -731,5 +732,7 @@ int trx_vty_init(struct trx_ctx* trx)
|
||||
install_element(CHAN_NODE, &cfg_chan_rx_path_cmd);
|
||||
install_element(CHAN_NODE, &cfg_chan_tx_path_cmd);
|
||||
|
||||
logging_vty_add_deprecated_subsys(g_trx_ctx, "lms");
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
#include "config_defs.h"
|
||||
|
||||
extern struct vty_app_info g_vty_info;
|
||||
extern const struct value_string clock_ref_names[];
|
||||
extern const struct value_string filler_names[];
|
||||
|
||||
/* Maximum number of physical RF channels */
|
||||
|
||||
@@ -77,23 +77,20 @@ class RadioDevice {
|
||||
@param overrun Set if read buffer has been overrun, e.g. data not being read fast enough
|
||||
@param timestamp The timestamp of the first samples to be read
|
||||
@param underrun Set if radio does not have data to transmit, e.g. data not being sent fast enough
|
||||
@param RSSI The received signal strength of the read result
|
||||
@return The number of samples actually read
|
||||
*/
|
||||
virtual int readSamples(std::vector<short *> &bufs, int len, bool *overrun,
|
||||
TIMESTAMP timestamp = 0xffffffff, bool *underrun = 0,
|
||||
unsigned *RSSI = 0) = 0;
|
||||
TIMESTAMP timestamp = 0xffffffff, bool *underrun = 0) = 0;
|
||||
/**
|
||||
Write samples to the radio.
|
||||
@param buf Contains the data to be written.
|
||||
@param len number of samples to write.
|
||||
@param underrun Set if radio does not have data to transmit, e.g. data not being sent fast enough
|
||||
@param timestamp The timestamp of the first sample of the data buffer.
|
||||
@param isControl Set if data is a control packet, e.g. a ping command
|
||||
@return The number of samples actually written
|
||||
*/
|
||||
virtual int writeSamples(std::vector<short *> &bufs, int len, bool *underrun,
|
||||
TIMESTAMP timestamp, bool isControl = false) = 0;
|
||||
TIMESTAMP timestamp) = 0;
|
||||
|
||||
/** Update the alignment between the read and write timestamps */
|
||||
virtual bool updateAlignment(TIMESTAMP timestamp)=0;
|
||||
|
||||
@@ -154,7 +154,7 @@ std::string smpl_buf::str_status(TIMESTAMP timestamp) const
|
||||
return ost.str();
|
||||
}
|
||||
|
||||
std::string smpl_buf::str_code(ssize_t code)
|
||||
std::string smpl_buf::str_code(int code)
|
||||
{
|
||||
switch (code) {
|
||||
case ERROR_TIMESTAMP:
|
||||
@@ -166,6 +166,8 @@ std::string smpl_buf::str_code(ssize_t code)
|
||||
case ERROR_OVERFLOW:
|
||||
return "Sample buffer: Overrun";
|
||||
default:
|
||||
return "Sample buffer: Unknown error";
|
||||
std::stringstream ss;
|
||||
ss << "Sample buffer: Unknown error " << code;
|
||||
return ss.str();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -68,7 +68,7 @@ public:
|
||||
@param code an error code
|
||||
@return a formatted error string
|
||||
*/
|
||||
static std::string str_code(ssize_t code);
|
||||
static std::string str_code(int code);
|
||||
|
||||
enum err_code {
|
||||
ERROR_TIMESTAMP = -1,
|
||||
|
||||
@@ -20,6 +20,10 @@
|
||||
#include <stdint.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include <map>
|
||||
|
||||
#include "trx_vty.h"
|
||||
#include "Logger.h"
|
||||
#include "Threads.h"
|
||||
#include "LMSDevice.h"
|
||||
@@ -39,17 +43,74 @@ extern "C" {
|
||||
using namespace std;
|
||||
|
||||
#define MAX_ANTENNA_LIST_SIZE 10
|
||||
#define LMS_SAMPLE_RATE GSMRATE*32
|
||||
#define GSM_CARRIER_BW 270000.0 /* 270kHz */
|
||||
#define LMS_MIN_BW_SUPPORTED 2.5e6 /* 2.5mHz, minimum supported by LMS */
|
||||
#define LMS_CALIBRATE_BW_HZ OSMO_MAX(GSM_CARRIER_BW, LMS_MIN_BW_SUPPORTED)
|
||||
#define SAMPLE_BUF_SZ (1 << 20) /* Size of Rx timestamp based Ring buffer, in bytes */
|
||||
|
||||
LMSDevice::LMSDevice(size_t tx_sps, size_t rx_sps, InterfaceType iface, size_t chans, double lo_offset,
|
||||
|
||||
/* Device Name Prefixes as presented by LimeSuite API LMS_GetDeviceInfo(): */
|
||||
#define LMS_DEV_SDR_USB_PREFIX_NAME "LimeSDR-USB"
|
||||
#define LMS_DEV_SDR_MINI_PREFIX_NAME "LimeSDR-Mini"
|
||||
#define LMS_DEV_NET_MICRO_PREFIX_NAME "LimeNET-Micro"
|
||||
|
||||
/* Device parameter descriptor */
|
||||
struct dev_desc {
|
||||
/* Does LimeSuite allow switching the clock source for this device?
|
||||
* LimeSDR-Mini does not have switches but needs soldering to select
|
||||
* external/internal clock. Any call to LMS_SetClockFreq() will fail.
|
||||
*/
|
||||
bool clock_src_switchable;
|
||||
/* Does LimeSuite allow using REF_INTERNAL for this device?
|
||||
* LimeNET-Micro does not like selecting internal clock
|
||||
*/
|
||||
bool clock_src_int_usable;
|
||||
/* Device specific maximum tx levels selected by phasenoise measurements, in dB */
|
||||
double max_tx_gain;
|
||||
/* Sample rate coef (without having TX/RX samples per symbol into account) */
|
||||
double rate;
|
||||
/* Sample rate coef (without having TX/RX samples per symbol into account), if multi-arfcn is enabled */
|
||||
double rate_multiarfcn;
|
||||
/* Coefficient multiplied by TX sample rate in order to shift Tx time */
|
||||
double ts_offset_coef;
|
||||
/* Coefficient multiplied by TX sample rate in order to shift Tx time, if multi-arfcn is enabled */
|
||||
double ts_offset_coef_multiarfcn;
|
||||
/* Device Name Prefix as presented by LimeSuite API LMS_GetDeviceInfo() */
|
||||
std::string name_prefix;
|
||||
};
|
||||
|
||||
static const std::map<enum lms_dev_type, struct dev_desc> dev_param_map {
|
||||
{ LMS_DEV_SDR_USB, { true, true, 73.0, GSMRATE, MCBTS_SPACING, 8.9e-5, 7.9e-5, LMS_DEV_SDR_USB_PREFIX_NAME } },
|
||||
{ LMS_DEV_SDR_MINI, { false, true, 66.0, GSMRATE, MCBTS_SPACING, 8.9e-5, 8.2e-5, LMS_DEV_SDR_MINI_PREFIX_NAME } },
|
||||
{ LMS_DEV_NET_MICRO, { true, false, 71.0, GSMRATE, MCBTS_SPACING, 8.9e-5, 7.9e-5, LMS_DEV_NET_MICRO_PREFIX_NAME } },
|
||||
{ LMS_DEV_UNKNOWN, { true, true, 73.0, GSMRATE, MCBTS_SPACING, 8.9e-5, 7.9e-5, "UNKNOWN" } },
|
||||
};
|
||||
|
||||
static enum lms_dev_type parse_dev_type(lms_device_t *m_lms_dev)
|
||||
{
|
||||
std::map<enum lms_dev_type, struct dev_desc>::const_iterator it = dev_param_map.begin();
|
||||
|
||||
const lms_dev_info_t* device_info = LMS_GetDeviceInfo(m_lms_dev);
|
||||
|
||||
while (it != dev_param_map.end())
|
||||
{
|
||||
enum lms_dev_type dev_type = it->first;
|
||||
struct dev_desc desc = it->second;
|
||||
|
||||
if (strncmp(device_info->deviceName, desc.name_prefix.c_str(), desc.name_prefix.length()) == 0) {
|
||||
LOGC(DDEV, INFO) << "Device identified as " << desc.name_prefix;
|
||||
return dev_type;
|
||||
}
|
||||
it++;
|
||||
}
|
||||
return LMS_DEV_UNKNOWN;
|
||||
}
|
||||
|
||||
LMSDevice::LMSDevice(size_t tx_sps, size_t rx_sps, InterfaceType iface, size_t chan_num, double lo_offset,
|
||||
const std::vector<std::string>& tx_paths,
|
||||
const std::vector<std::string>& rx_paths):
|
||||
RadioDevice(tx_sps, rx_sps, iface, chans, lo_offset, tx_paths, rx_paths),
|
||||
m_lms_dev(NULL)
|
||||
RadioDevice(tx_sps, rx_sps, iface, chan_num, lo_offset, tx_paths, rx_paths),
|
||||
m_lms_dev(NULL), started(false), m_dev_type(LMS_DEV_UNKNOWN)
|
||||
{
|
||||
LOGC(DDEV, INFO) << "creating LMS device...";
|
||||
|
||||
@@ -59,6 +120,11 @@ LMSDevice::LMSDevice(size_t tx_sps, size_t rx_sps, InterfaceType iface, size_t c
|
||||
tx_gains.resize(chans);
|
||||
|
||||
rx_buffers.resize(chans);
|
||||
|
||||
/* Set up per-channel Rx timestamp based Ring buffers */
|
||||
for (size_t i = 0; i < rx_buffers.size(); i++)
|
||||
rx_buffers[i] = new smpl_buf(SAMPLE_BUF_SZ / sizeof(uint32_t));
|
||||
|
||||
}
|
||||
|
||||
LMSDevice::~LMSDevice()
|
||||
@@ -93,7 +159,7 @@ static void lms_log_callback(int lvl, const char *msg)
|
||||
if ((unsigned int) lvl >= ARRAY_SIZE(lvl_map))
|
||||
lvl = ARRAY_SIZE(lvl_map)-1;
|
||||
|
||||
LOGLV(DLMS, lvl_map[lvl]) << msg;
|
||||
LOGLV(DDEVDRV, lvl_map[lvl]) << msg;
|
||||
}
|
||||
|
||||
static void print_range(const char* name, lms_range_t *range)
|
||||
@@ -110,7 +176,7 @@ static void print_range(const char* name, lms_range_t *range)
|
||||
int info_list_find(lms_info_str_t* info_list, unsigned int count, const std::string &args)
|
||||
{
|
||||
unsigned int i, j;
|
||||
vector<string> filters;
|
||||
std::vector<string> filters;
|
||||
|
||||
filters = comma_delimited_to_vector(args.c_str());
|
||||
|
||||
@@ -134,11 +200,11 @@ int info_list_find(lms_info_str_t* info_list, unsigned int count, const std::str
|
||||
int LMSDevice::open(const std::string &args, int ref, bool swap_channels)
|
||||
{
|
||||
lms_info_str_t* info_list;
|
||||
const lms_dev_info_t* device_info;
|
||||
lms_range_t range_sr;
|
||||
float_type sr_host, sr_rf;
|
||||
unsigned int i, n;
|
||||
int rc, dev_id;
|
||||
struct dev_desc dev_desc;
|
||||
|
||||
LOGC(DDEV, INFO) << "Opening LMS device..";
|
||||
|
||||
@@ -175,19 +241,20 @@ int LMSDevice::open(const std::string &args, int ref, bool swap_channels)
|
||||
|
||||
delete [] info_list;
|
||||
|
||||
device_info = LMS_GetDeviceInfo(m_lms_dev);
|
||||
m_dev_type = parse_dev_type(m_lms_dev);
|
||||
dev_desc = dev_param_map.at(m_dev_type);
|
||||
|
||||
if ((ref != REF_EXTERNAL) && (ref != REF_INTERNAL)){
|
||||
LOGC(DDEV, ERROR) << "Invalid reference type";
|
||||
goto out_close;
|
||||
}
|
||||
|
||||
/* if reference clock is external setup must happen _before_ calling LMS_Init */
|
||||
/* FIXME make external reference frequency configurable */
|
||||
/* if reference clock is external, setup must happen _before_ calling LMS_Init */
|
||||
if (ref == REF_EXTERNAL) {
|
||||
LOGC(DDEV, INFO) << "Setting External clock reference to 10MHz";
|
||||
/* Assume an external 10 MHz reference clock */
|
||||
if (LMS_SetClockFreq(m_lms_dev, LMS_CLOCK_EXTREF, 10000000.0) < 0)
|
||||
/* FIXME: Assume an external 10 MHz reference clock. make
|
||||
external reference frequency configurable */
|
||||
if (!do_clock_src_freq(REF_EXTERNAL, 10000000.0))
|
||||
goto out_close;
|
||||
}
|
||||
|
||||
@@ -197,22 +264,13 @@ int LMSDevice::open(const std::string &args, int ref, bool swap_channels)
|
||||
goto out_close;
|
||||
}
|
||||
|
||||
/* LimeSDR-Mini does not have switches but needs soldering to select external/internal clock */
|
||||
/* LimeNET-Micro also does not like selecting internal clock*/
|
||||
/* also set device specific maximum tx levels selected by phasenoise measurements*/
|
||||
if (strncmp(device_info->deviceName,"LimeSDR-USB",11) == 0){
|
||||
/* if reference clock is internal setup must happen _after_ calling LMS_Init */
|
||||
/* according to lms using LMS_CLOCK_EXTREF with a frequency <= 0 is the correct way to set clock to internal reference*/
|
||||
if (ref == REF_INTERNAL) {
|
||||
LOGC(DDEV, INFO) << "Setting Internal clock reference";
|
||||
if (LMS_SetClockFreq(m_lms_dev, LMS_CLOCK_EXTREF, -1) < 0)
|
||||
goto out_close;
|
||||
}
|
||||
maxTxGainClamp = 73.0;
|
||||
} else if (strncmp(device_info->deviceName,"LimeSDR-Mini",12) == 0)
|
||||
maxTxGainClamp = 66.0;
|
||||
else
|
||||
maxTxGainClamp = 71.0; /* "LimeNET-Micro", etc FIXME pciE based LMS boards?*/
|
||||
/* if reference clock is internal, setup must happen _after_ calling LMS_Init */
|
||||
if (ref == REF_INTERNAL) {
|
||||
LOGC(DDEV, INFO) << "Setting Internal clock reference";
|
||||
/* Internal freq param is not used */
|
||||
if (!do_clock_src_freq(REF_INTERNAL, 0))
|
||||
goto out_close;
|
||||
}
|
||||
|
||||
/* enable all used channels */
|
||||
for (i=0; i<chans; i++) {
|
||||
@@ -227,16 +285,22 @@ int LMSDevice::open(const std::string &args, int ref, bool swap_channels)
|
||||
goto out_close;
|
||||
print_range("Sample Rate", &range_sr);
|
||||
|
||||
LOGC(DDEV, INFO) << "Setting sample rate to " << GSMRATE*tx_sps << " " << tx_sps;
|
||||
if (LMS_SetSampleRate(m_lms_dev, GSMRATE*tx_sps, 32) < 0)
|
||||
if (iface == MULTI_ARFCN)
|
||||
sr_host = dev_desc.rate_multiarfcn * tx_sps;
|
||||
else
|
||||
sr_host = dev_desc.rate * tx_sps;
|
||||
LOGC(DDEV, INFO) << "Setting sample rate to " << sr_host << " " << tx_sps;
|
||||
if (LMS_SetSampleRate(m_lms_dev, sr_host, 32) < 0)
|
||||
goto out_close;
|
||||
|
||||
if (LMS_GetSampleRate(m_lms_dev, LMS_CH_RX, 0, &sr_host, &sr_rf))
|
||||
goto out_close;
|
||||
LOGC(DDEV, INFO) << "Sample Rate: Host=" << sr_host << " RF=" << sr_rf;
|
||||
|
||||
/* FIXME: make this device/model dependent, like UHDDevice:dev_param_map! */
|
||||
ts_offset = static_cast<TIMESTAMP>(8.9e-5 * GSMRATE * tx_sps); /* time * sample_rate */
|
||||
if (iface == MULTI_ARFCN)
|
||||
ts_offset = static_cast<TIMESTAMP>(dev_desc.ts_offset_coef_multiarfcn * sr_host);
|
||||
else
|
||||
ts_offset = static_cast<TIMESTAMP>(dev_desc.ts_offset_coef * sr_host);
|
||||
|
||||
/* configure antennas */
|
||||
if (!set_antennas()) {
|
||||
@@ -244,13 +308,7 @@ int LMSDevice::open(const std::string &args, int ref, bool swap_channels)
|
||||
goto out_close;
|
||||
}
|
||||
|
||||
/* Set up per-channel Rx timestamp based Ring buffers */
|
||||
for (size_t i = 0; i < rx_buffers.size(); i++)
|
||||
rx_buffers[i] = new smpl_buf(SAMPLE_BUF_SZ / sizeof(uint32_t));
|
||||
|
||||
started = false;
|
||||
|
||||
return NORMAL;
|
||||
return iface == MULTI_ARFCN ? MULTI_ARFCN : NORMAL;
|
||||
|
||||
out_close:
|
||||
LOGC(DDEV, FATAL) << "Error in LMS open, closing: " << LMS_GetLastErrorMessage();
|
||||
@@ -344,6 +402,43 @@ bool LMSDevice::stop()
|
||||
return true;
|
||||
}
|
||||
|
||||
bool LMSDevice::do_clock_src_freq(enum ReferenceType ref, double freq)
|
||||
{
|
||||
struct dev_desc dev_desc = dev_param_map.at(m_dev_type);
|
||||
size_t lms_clk_id;
|
||||
|
||||
switch (ref) {
|
||||
case REF_EXTERNAL:
|
||||
lms_clk_id = LMS_CLOCK_EXTREF;
|
||||
break;
|
||||
case REF_INTERNAL:
|
||||
if (!dev_desc.clock_src_int_usable) {
|
||||
LOGC(DDEV, ERROR) << "Device type " << dev_desc.name_prefix
|
||||
<< " doesn't support internal reference clock";
|
||||
return false;
|
||||
}
|
||||
/* According to lms using LMS_CLOCK_EXTREF with a
|
||||
frequency <= 0 is the correct way to set clock to
|
||||
internal reference */
|
||||
lms_clk_id = LMS_CLOCK_EXTREF;
|
||||
freq = -1;
|
||||
break;
|
||||
default:
|
||||
LOGC(DDEV, ERROR) << "Invalid reference type " << get_value_string(clock_ref_names, ref);
|
||||
return false;
|
||||
}
|
||||
|
||||
if (dev_desc.clock_src_switchable) {
|
||||
if (LMS_SetClockFreq(m_lms_dev, lms_clk_id, freq) < 0)
|
||||
return false;
|
||||
} else {
|
||||
LOGC(DDEV, INFO) << "Device type " << dev_desc.name_prefix
|
||||
<< " doesn't support switching clock source through SW";
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/* do rx/tx calibration - depends on gain, freq and bw */
|
||||
bool LMSDevice::do_calib(size_t chan)
|
||||
{
|
||||
@@ -385,7 +480,7 @@ bool LMSDevice::do_filters(size_t chan)
|
||||
|
||||
double LMSDevice::maxTxGain()
|
||||
{
|
||||
return maxTxGainClamp;
|
||||
return dev_param_map.at(m_dev_type).max_tx_gain;
|
||||
}
|
||||
|
||||
double LMSDevice::minTxGain()
|
||||
@@ -644,7 +739,7 @@ void LMSDevice::update_stream_stats_rx(size_t chan, bool *overrun)
|
||||
|
||||
// NOTE: Assumes sequential reads
|
||||
int LMSDevice::readSamples(std::vector < short *>&bufs, int len, bool * overrun,
|
||||
TIMESTAMP timestamp, bool * underrun, unsigned *RSSI)
|
||||
TIMESTAMP timestamp, bool * underrun)
|
||||
{
|
||||
int rc, num_smpls, expect_smpls;
|
||||
ssize_t avail_smpls;
|
||||
@@ -711,8 +806,9 @@ int LMSDevice::readSamples(std::vector < short *>&bufs, int len, bool * overrun,
|
||||
for (size_t i = 0; i < rx_buffers.size(); i++) {
|
||||
rc = rx_buffers[i]->read(bufs[i], len, timestamp);
|
||||
if ((rc < 0) || (rc != len)) {
|
||||
LOGC(DDEV, ERROR) << rx_buffers[i]->str_code(rc);
|
||||
LOGC(DDEV, ERROR) << rx_buffers[i]->str_status(timestamp);
|
||||
LOGCHAN(i, DDEV, ERROR) << rx_buffers[i]->str_code(rc) << ". "
|
||||
<< rx_buffers[i]->str_status(timestamp)
|
||||
<< ", (len=" << len << ")";
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
@@ -762,8 +858,7 @@ void LMSDevice::update_stream_stats_tx(size_t chan, bool *underrun)
|
||||
}
|
||||
|
||||
int LMSDevice::writeSamples(std::vector < short *>&bufs, int len,
|
||||
bool * underrun, unsigned long long timestamp,
|
||||
bool isControl)
|
||||
bool * underrun, unsigned long long timestamp)
|
||||
{
|
||||
int rc = 0;
|
||||
unsigned int i;
|
||||
@@ -772,11 +867,6 @@ int LMSDevice::writeSamples(std::vector < short *>&bufs, int len,
|
||||
tx_metadata.waitForTimestamp = true;
|
||||
tx_metadata.timestamp = timestamp - ts_offset; /* Shift Tx time by offset */
|
||||
|
||||
if (isControl) {
|
||||
LOGC(DDEV, ERROR) << "Control packets not supported";
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (bufs.size() != chans) {
|
||||
LOGC(DDEV, ERROR) << "Invalid channel combination " << bufs.size();
|
||||
return -1;
|
||||
|
||||
@@ -41,6 +41,13 @@
|
||||
* A^2 = 1 */
|
||||
#define LIMESDR_TX_AMPL 0.707
|
||||
|
||||
enum lms_dev_type {
|
||||
LMS_DEV_SDR_USB, /* LimeSDR-USB */
|
||||
LMS_DEV_SDR_MINI, /* LimeSDR-Mini */
|
||||
LMS_DEV_NET_MICRO, /* LimeNet-micro */
|
||||
LMS_DEV_UNKNOWN,
|
||||
};
|
||||
|
||||
/** A class to handle a LimeSuite supported device */
|
||||
class LMSDevice:public RadioDevice {
|
||||
|
||||
@@ -59,7 +66,8 @@ private:
|
||||
TIMESTAMP ts_initial, ts_offset;
|
||||
|
||||
std::vector<double> tx_gains, rx_gains;
|
||||
double maxTxGainClamp;
|
||||
|
||||
enum lms_dev_type m_dev_type;
|
||||
|
||||
bool do_calib(size_t chan);
|
||||
bool do_filters(size_t chan);
|
||||
@@ -68,11 +76,12 @@ private:
|
||||
bool flush_recv(size_t num_pkts);
|
||||
void update_stream_stats_rx(size_t chan, bool *overrun);
|
||||
void update_stream_stats_tx(size_t chan, bool *underrun);
|
||||
bool do_clock_src_freq(enum ReferenceType ref, double freq);
|
||||
|
||||
public:
|
||||
|
||||
/** Object constructor */
|
||||
LMSDevice(size_t tx_sps, size_t rx_sps, InterfaceType iface, size_t chans, double lo_offset,
|
||||
LMSDevice(size_t tx_sps, size_t rx_sps, InterfaceType iface, size_t chan_num, double lo_offset,
|
||||
const std::vector<std::string>& tx_paths,
|
||||
const std::vector<std::string>& rx_paths);
|
||||
~LMSDevice();
|
||||
@@ -97,24 +106,21 @@ public:
|
||||
@param overrun Set if read buffer has been overrun, e.g. data not being read fast enough
|
||||
@param timestamp The timestamp of the first samples to be read
|
||||
@param underrun Set if LMS does not have data to transmit, e.g. data not being sent fast enough
|
||||
@param RSSI The received signal strength of the read result
|
||||
@return The number of samples actually read
|
||||
*/
|
||||
int readSamples(std::vector < short *>&buf, int len, bool * overrun,
|
||||
TIMESTAMP timestamp = 0xffffffff, bool * underrun =
|
||||
NULL, unsigned *RSSI = NULL);
|
||||
NULL);
|
||||
/**
|
||||
Write samples to the LMS.
|
||||
@param buf Contains the data to be written.
|
||||
@param len number of samples to write.
|
||||
@param underrun Set if LMS does not have data to transmit, e.g. data not being sent fast enough
|
||||
@param timestamp The timestamp of the first sample of the data buffer.
|
||||
@param isControl Set if data is a control packet, e.g. a ping command
|
||||
@return The number of samples actually written
|
||||
*/
|
||||
int writeSamples(std::vector < short *>&bufs, int len, bool * underrun,
|
||||
TIMESTAMP timestamp = 0xffffffff, bool isControl =
|
||||
false);
|
||||
TIMESTAMP timestamp = 0xffffffff);
|
||||
|
||||
/** Update the alignment between the read and write timestamps */
|
||||
bool updateAlignment(TIMESTAMP timestamp);
|
||||
|
||||
@@ -33,11 +33,12 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#ifndef USE_UHD_3_11
|
||||
#ifdef USE_UHD_3_11
|
||||
#include <uhd/utils/log_add.hpp>
|
||||
#include <uhd/utils/thread.hpp>
|
||||
#else
|
||||
#include <uhd/utils/msg.hpp>
|
||||
#include <uhd/utils/thread_priority.hpp>
|
||||
#else
|
||||
#include <uhd/utils/thread.hpp>
|
||||
#endif
|
||||
|
||||
#define USRP_TX_AMPL 0.3
|
||||
@@ -120,6 +121,8 @@ static const std::map<dev_key, dev_desc> dev_param_map {
|
||||
{ std::make_tuple(UMTRX, 4, 4), { 2, 0.0, GSMRATE, 5.1503e-5, "UmTRX 4 SPS" } },
|
||||
{ std::make_tuple(LIMESDR, 4, 4), { 1, GSMRATE*32, GSMRATE, 8.9e-5, "LimeSDR 4 SPS" } },
|
||||
{ std::make_tuple(B2XX_MCBTS, 4, 4), { 1, 51.2e6, MCBTS_SPACING*4, B2XX_TIMING_MCBTS, "B200/B210 4 SPS Multi-ARFCN" } },
|
||||
{ std::make_tuple(OCR01, 4, 1), { 2, 26e6, GSMRATE, B2XX_TIMING_4SPS, "OCR01 4/1 Tx/Rx SPS"} },
|
||||
{ std::make_tuple(OCR01, 4, 4), { 2, 26e6, GSMRATE, B2XX_TIMING_4_4SPS, "OCR01 4/4 Tx/Rx SPS"} },
|
||||
};
|
||||
|
||||
void *async_event_loop(uhd_device *dev)
|
||||
@@ -134,23 +137,52 @@ void *async_event_loop(uhd_device *dev)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
#ifndef USE_UHD_3_11
|
||||
#ifdef USE_UHD_3_11
|
||||
static void uhd_log_handler(const uhd::log::logging_info &info)
|
||||
{
|
||||
int level;
|
||||
|
||||
switch (info.verbosity)
|
||||
{
|
||||
case uhd::log::trace:
|
||||
case uhd::log::debug:
|
||||
level = LOGL_DEBUG;
|
||||
break;
|
||||
case uhd::log::info:
|
||||
level = LOGL_INFO;
|
||||
break;
|
||||
case uhd::log::warning:
|
||||
level = LOGL_NOTICE;
|
||||
break;
|
||||
case uhd::log::error:
|
||||
level = LOGL_ERROR;
|
||||
break;
|
||||
case uhd::log::fatal:
|
||||
level = LOGL_FATAL;
|
||||
break;
|
||||
default:
|
||||
level = LOGL_NOTICE;
|
||||
}
|
||||
|
||||
LOGSRC(DDEVDRV, level, info.file.c_str(), info.line) << "[" << info.component << "] " << info.message;
|
||||
}
|
||||
#else
|
||||
/*
|
||||
Catch and drop underrun 'U' and overrun 'O' messages from stdout
|
||||
since we already report using the logging facility. Direct
|
||||
everything else appropriately.
|
||||
*/
|
||||
void uhd_msg_handler(uhd::msg::type_t type, const std::string &msg)
|
||||
static void uhd_msg_handler(uhd::msg::type_t type, const std::string &msg)
|
||||
{
|
||||
switch (type) {
|
||||
case uhd::msg::status:
|
||||
LOGC(DDEV, INFO) << msg;
|
||||
LOGC(DDEVDRV, INFO) << msg;
|
||||
break;
|
||||
case uhd::msg::warning:
|
||||
LOGC(DDEV, WARNING) << msg;
|
||||
LOGC(DDEVDRV, NOTICE) << msg;
|
||||
break;
|
||||
case uhd::msg::error:
|
||||
LOGC(DDEV, ERROR) << msg;
|
||||
LOGC(DDEVDRV, ERROR) << msg;
|
||||
break;
|
||||
case uhd::msg::fastpath:
|
||||
break;
|
||||
@@ -159,10 +191,10 @@ void uhd_msg_handler(uhd::msg::type_t type, const std::string &msg)
|
||||
#endif
|
||||
|
||||
uhd_device::uhd_device(size_t tx_sps, size_t rx_sps,
|
||||
InterfaceType iface, size_t chans, double lo_offset,
|
||||
InterfaceType iface, size_t chan_num, double lo_offset,
|
||||
const std::vector<std::string>& tx_paths,
|
||||
const std::vector<std::string>& rx_paths)
|
||||
: RadioDevice(tx_sps, rx_sps, iface, chans, lo_offset, tx_paths, rx_paths),
|
||||
: RadioDevice(tx_sps, rx_sps, iface, chan_num, lo_offset, tx_paths, rx_paths),
|
||||
tx_gain_min(0.0), tx_gain_max(0.0),
|
||||
rx_gain_min(0.0), rx_gain_max(0.0),
|
||||
tx_spp(0), rx_spp(0),
|
||||
@@ -338,6 +370,7 @@ bool uhd_device::parse_dev_type()
|
||||
{ "USRP2", { USRP2, TX_WINDOW_FIXED } },
|
||||
{ "UmTRX", { UMTRX, TX_WINDOW_FIXED } },
|
||||
{ "LimeSDR", { LIMESDR, TX_WINDOW_FIXED } },
|
||||
{ "OCR01", { OCR01, TX_WINDOW_USRP1 } },
|
||||
};
|
||||
|
||||
// Compare UHD motherboard and device strings */
|
||||
@@ -379,7 +412,7 @@ static bool uhd_e3xx_version_chk()
|
||||
void uhd_device::set_channels(bool swap)
|
||||
{
|
||||
if (iface == MULTI_ARFCN) {
|
||||
if (dev_type != B200 && dev_type != B210)
|
||||
if (dev_type != B200 && dev_type != B210 && dev_type != OCR01)
|
||||
throw std::invalid_argument("Device does not support MCBTS");
|
||||
dev_type = B2XX_MCBTS;
|
||||
}
|
||||
@@ -391,6 +424,7 @@ void uhd_device::set_channels(bool swap)
|
||||
switch (dev_type) {
|
||||
case B210:
|
||||
case E3XX:
|
||||
case OCR01:
|
||||
if (chans == 1)
|
||||
subdev_string = swap ? "A:B" : "A:A";
|
||||
else if (chans == 2)
|
||||
@@ -418,6 +452,16 @@ int uhd_device::open(const std::string &args, int ref, bool swap_channels)
|
||||
{
|
||||
const char *refstr;
|
||||
|
||||
/* Register msg handler. Different APIs depending on UHD version */
|
||||
#ifdef USE_UHD_3_11
|
||||
uhd::log::add_logger("OsmoTRX", &uhd_log_handler);
|
||||
uhd::log::set_log_level(uhd::log::debug);
|
||||
uhd::log::set_console_level(uhd::log::off);
|
||||
uhd::log::set_logger_level("OsmoTRX", uhd::log::debug);
|
||||
#else
|
||||
uhd::msg::register_handler(&uhd_msg_handler);
|
||||
#endif
|
||||
|
||||
// Find UHD devices
|
||||
uhd::device_addr_t addr(args);
|
||||
uhd::device_addrs_t dev_addrs = uhd::device::find(addr);
|
||||
@@ -526,7 +570,7 @@ int uhd_device::open(const std::string &args, int ref, bool swap_channels)
|
||||
init_gains();
|
||||
|
||||
// Print configuration
|
||||
LOGC(DDEV, INFO) << "\n" << usrp_dev->get_pp_string();
|
||||
LOGC(DDEV, INFO) << "Device configuration: " << usrp_dev->get_pp_string();
|
||||
|
||||
if (iface == MULTI_ARFCN)
|
||||
return MULTI_ARFCN;
|
||||
@@ -542,6 +586,7 @@ int uhd_device::open(const std::string &args, int ref, bool swap_channels)
|
||||
case E1XX:
|
||||
case E3XX:
|
||||
case LIMESDR:
|
||||
case OCR01:
|
||||
default:
|
||||
break;
|
||||
}
|
||||
@@ -604,10 +649,6 @@ bool uhd_device::start()
|
||||
return false;
|
||||
}
|
||||
|
||||
#ifndef USE_UHD_3_11
|
||||
// Register msg handler
|
||||
uhd::msg::register_handler(&uhd_msg_handler);
|
||||
#endif
|
||||
// Start asynchronous event (underrun check) loop
|
||||
async_event_thrd = new Thread();
|
||||
async_event_thrd->start((void * (*)(void*))async_event_loop, (void*)this);
|
||||
@@ -685,7 +726,7 @@ int uhd_device::check_rx_md_err(uhd::rx_metadata_t &md, ssize_t num_smpls)
|
||||
}
|
||||
|
||||
int uhd_device::readSamples(std::vector<short *> &bufs, int len, bool *overrun,
|
||||
TIMESTAMP timestamp, bool *underrun, unsigned *RSSI)
|
||||
TIMESTAMP timestamp, bool *underrun)
|
||||
{
|
||||
ssize_t rc;
|
||||
uhd::time_spec_t ts;
|
||||
@@ -768,7 +809,7 @@ int uhd_device::readSamples(std::vector<short *> &bufs, int len, bool *overrun,
|
||||
}
|
||||
|
||||
int uhd_device::writeSamples(std::vector<short *> &bufs, int len, bool *underrun,
|
||||
unsigned long long timestamp,bool isControl)
|
||||
unsigned long long timestamp)
|
||||
{
|
||||
uhd::tx_metadata_t metadata;
|
||||
metadata.has_time_spec = true;
|
||||
@@ -778,12 +819,6 @@ int uhd_device::writeSamples(std::vector<short *> &bufs, int len, bool *underrun
|
||||
|
||||
*underrun = false;
|
||||
|
||||
// No control packets
|
||||
if (isControl) {
|
||||
LOGC(DDEV, ERROR) << "Control packets not supported";
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (bufs.size() != chans) {
|
||||
LOGC(DDEV, ALERT) << "Invalid channel combination " << bufs.size();
|
||||
return -1;
|
||||
@@ -883,15 +918,18 @@ bool uhd_device::set_freq(double freq, size_t chan, bool tx)
|
||||
std::vector<double> freqs;
|
||||
uhd::tune_result_t tres;
|
||||
uhd::tune_request_t treq = select_freq(freq, chan, tx);
|
||||
std::string str_dir;
|
||||
|
||||
if (tx) {
|
||||
tres = usrp_dev->set_tx_freq(treq, chan);
|
||||
tx_freqs[chan] = usrp_dev->get_tx_freq(chan);
|
||||
str_dir = "Tx";
|
||||
} else {
|
||||
tres = usrp_dev->set_rx_freq(treq, chan);
|
||||
rx_freqs[chan] = usrp_dev->get_rx_freq(chan);
|
||||
str_dir = "Rx";
|
||||
}
|
||||
LOGC(DDEV, INFO) << "\n" << tres.to_pp_string() << std::endl;
|
||||
LOGCHAN(chan, DDEV, INFO) << "set_freq(" << freq << ", " << str_dir << "): " << tres.to_pp_string() << std::endl;
|
||||
|
||||
if ((chans == 1) || ((chans == 2) && dev_type == UMTRX))
|
||||
return true;
|
||||
@@ -911,7 +949,7 @@ bool uhd_device::set_freq(double freq, size_t chan, bool tx)
|
||||
rx_freqs[!chan] = usrp_dev->get_rx_freq(!chan);
|
||||
|
||||
}
|
||||
LOGC(DDEV, INFO) << "\n" << tres.to_pp_string() << std::endl;
|
||||
LOGCHAN(chan, DDEV, INFO) << "set_freq(" << freq << ", " << str_dir << "): " << tres.to_pp_string() << std::endl;
|
||||
}
|
||||
|
||||
return true;
|
||||
|
||||
@@ -50,6 +50,7 @@ enum uhd_dev_type {
|
||||
X3XX,
|
||||
UMTRX,
|
||||
LIMESDR,
|
||||
OCR01,
|
||||
};
|
||||
|
||||
/*
|
||||
@@ -62,7 +63,7 @@ enum uhd_dev_type {
|
||||
class uhd_device : public RadioDevice {
|
||||
public:
|
||||
uhd_device(size_t tx_sps, size_t rx_sps, InterfaceType type,
|
||||
size_t chans, double offset,
|
||||
size_t chan_num, double offset,
|
||||
const std::vector<std::string>& tx_paths,
|
||||
const std::vector<std::string>& rx_paths);
|
||||
~uhd_device();
|
||||
@@ -74,10 +75,10 @@ public:
|
||||
enum TxWindowType getWindowType() { return tx_window; }
|
||||
|
||||
int readSamples(std::vector<short *> &bufs, int len, bool *overrun,
|
||||
TIMESTAMP timestamp, bool *underrun, unsigned *RSSI);
|
||||
TIMESTAMP timestamp, bool *underrun);
|
||||
|
||||
int writeSamples(std::vector<short *> &bufs, int len, bool *underrun,
|
||||
TIMESTAMP timestamp, bool isControl);
|
||||
TIMESTAMP timestamp);
|
||||
|
||||
bool updateAlignment(TIMESTAMP timestamp);
|
||||
|
||||
|
||||
@@ -61,10 +61,10 @@ const dboardConfigType dboardConfig = TXA_RXB;
|
||||
const double USRPDevice::masterClockRate = 52.0e6;
|
||||
|
||||
USRPDevice::USRPDevice(size_t tx_sps, size_t rx_sps, InterfaceType iface,
|
||||
size_t chans, double lo_offset,
|
||||
size_t chan_num, double lo_offset,
|
||||
const std::vector<std::string>& tx_paths,
|
||||
const std::vector<std::string>& rx_paths):
|
||||
RadioDevice(tx_sps, rx_sps, iface, chans, lo_offset, tx_paths, rx_paths)
|
||||
RadioDevice(tx_sps, rx_sps, iface, chan_num, lo_offset, tx_paths, rx_paths)
|
||||
{
|
||||
LOGC(DDEV, INFO) << "creating USRP device...";
|
||||
|
||||
@@ -365,7 +365,7 @@ GSM::Time USRPDevice::minLatency() {
|
||||
|
||||
// NOTE: Assumes sequential reads
|
||||
int USRPDevice::readSamples(std::vector<short *> &bufs, int len, bool *overrun,
|
||||
TIMESTAMP timestamp, bool *underrun, unsigned *RSSI)
|
||||
TIMESTAMP timestamp, bool *underrun)
|
||||
{
|
||||
#ifndef SWLOOPBACK
|
||||
if (!m_uRx)
|
||||
@@ -433,8 +433,10 @@ int USRPDevice::readSamples(std::vector<short *> &bufs, int len, bool *overrun,
|
||||
*underrun = true;
|
||||
LOGC(DDEV, DEBUG) << "UNDERRUN in TRX->USRP interface";
|
||||
}
|
||||
if (RSSI) *RSSI = (word0 >> 21) & 0x3f;
|
||||
|
||||
#if 0
|
||||
/* FIXME: Do something with this ? */
|
||||
unsigned RSSI = (word0 >> 21) & 0x3f;
|
||||
#endif
|
||||
if (!isAligned) continue;
|
||||
|
||||
unsigned cursorStart = pktTimestamp - timeStart + dataStart;
|
||||
@@ -513,9 +515,8 @@ int USRPDevice::readSamples(std::vector<short *> &bufs, int len, bool *overrun,
|
||||
#endif
|
||||
}
|
||||
|
||||
int USRPDevice::writeSamples(std::vector<short *> &bufs, int len,
|
||||
bool *underrun, unsigned long long timestamp,
|
||||
bool isControl)
|
||||
int USRPDevice::writeSamplesControl(std::vector<short *> &bufs, int len,
|
||||
bool *underrun, unsigned long long timestamp, bool isControl)
|
||||
{
|
||||
writeLock.lock();
|
||||
|
||||
@@ -569,6 +570,12 @@ int USRPDevice::writeSamples(std::vector<short *> &bufs, int len,
|
||||
#endif
|
||||
}
|
||||
|
||||
int USRPDevice::writeSamples(std::vector<short *> &bufs, int len,
|
||||
bool *underrun, unsigned long long timestamp)
|
||||
{
|
||||
return writeSamplesControl(bufs, len, underrun, timestamp, false);
|
||||
}
|
||||
|
||||
bool USRPDevice::updateAlignment(TIMESTAMP timestamp)
|
||||
{
|
||||
#ifndef SWLOOPBACK
|
||||
@@ -578,7 +585,7 @@ bool USRPDevice::updateAlignment(TIMESTAMP timestamp)
|
||||
bool tmpUnderrun;
|
||||
|
||||
std::vector<short *> buf(1, data);
|
||||
if (writeSamples(buf, 1, &tmpUnderrun, timestamp & 0x0ffffffffll, true)) {
|
||||
if (writeSamplesControl(buf, 1, &tmpUnderrun, timestamp & 0x0ffffffffll, true)) {
|
||||
pingTimestamp = timestamp;
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -82,6 +82,9 @@ private:
|
||||
double rxGain;
|
||||
double txGain;
|
||||
|
||||
int writeSamplesControl(std::vector<short *> &bufs, int len, bool *underrun,
|
||||
TIMESTAMP timestamp = 0xffffffff, bool isControl = false);
|
||||
|
||||
#ifdef SWLOOPBACK
|
||||
short loopbackBuffer[1000000];
|
||||
int loopbackBufferSize;
|
||||
@@ -95,7 +98,7 @@ private:
|
||||
public:
|
||||
|
||||
/** Object constructor */
|
||||
USRPDevice(size_t tx_sps, size_t rx_sps, InterfaceType iface, size_t chans, double lo_offset,
|
||||
USRPDevice(size_t tx_sps, size_t rx_sps, InterfaceType iface, size_t chan_num, double lo_offset,
|
||||
const std::vector<std::string>& tx_paths,
|
||||
const std::vector<std::string>& rx_paths);
|
||||
|
||||
@@ -117,23 +120,20 @@ private:
|
||||
@param overrun Set if read buffer has been overrun, e.g. data not being read fast enough
|
||||
@param timestamp The timestamp of the first samples to be read
|
||||
@param underrun Set if USRP does not have data to transmit, e.g. data not being sent fast enough
|
||||
@param RSSI The received signal strength of the read result
|
||||
@return The number of samples actually read
|
||||
*/
|
||||
int readSamples(std::vector<short *> &buf, int len, bool *overrun,
|
||||
TIMESTAMP timestamp = 0xffffffff, bool *underrun = NULL,
|
||||
unsigned *RSSI = NULL);
|
||||
TIMESTAMP timestamp = 0xffffffff, bool *underrun = NULL);
|
||||
/**
|
||||
Write samples to the USRP.
|
||||
@param buf Contains the data to be written.
|
||||
@param len number of samples to write.
|
||||
@param underrun Set if USRP does not have data to transmit, e.g. data not being sent fast enough
|
||||
@param timestamp The timestamp of the first sample of the data buffer.
|
||||
@param isControl Set if data is a control packet, e.g. a ping command
|
||||
@return The number of samples actually written
|
||||
*/
|
||||
int writeSamples(std::vector<short *> &bufs, int len, bool *underrun,
|
||||
TIMESTAMP timestamp = 0xffffffff, bool isControl = false);
|
||||
TIMESTAMP timestamp = 0xffffffff);
|
||||
|
||||
/** Update the alignment between the read and write timestamps */
|
||||
bool updateAlignment(TIMESTAMP timestamp);
|
||||
|
||||
@@ -588,10 +588,10 @@ int main(int argc, char *argv[])
|
||||
log_enable_multithread();
|
||||
osmo_stats_init(tall_trx_ctx);
|
||||
vty_init(&g_vty_info);
|
||||
logging_vty_add_cmds();
|
||||
ctrl_vty_init(tall_trx_ctx);
|
||||
trx_vty_init(g_trx_ctx);
|
||||
|
||||
logging_vty_add_cmds();
|
||||
osmo_talloc_vty_add_cmds();
|
||||
osmo_stats_vty_add_cmds();
|
||||
|
||||
|
||||
@@ -156,16 +156,24 @@ public:
|
||||
void close();
|
||||
};
|
||||
|
||||
struct freq_cfg_state {
|
||||
bool set;
|
||||
double freq_hz;
|
||||
};
|
||||
|
||||
class RadioInterfaceMulti : public RadioInterface {
|
||||
private:
|
||||
bool pushBuffer();
|
||||
int pullBuffer();
|
||||
bool verify_arfcn_consistency(double freq, size_t chan, bool tx);
|
||||
virtual double setTxGain(double dB, size_t chan);
|
||||
|
||||
signalVector *outerSendBuffer;
|
||||
signalVector *outerRecvBuffer;
|
||||
std::vector<signalVector *> history;
|
||||
std::vector<bool> active;
|
||||
std::vector<struct freq_cfg_state> rx_freq_state;
|
||||
std::vector<struct freq_cfg_state> tx_freq_state;
|
||||
|
||||
Resampler *dnsampler;
|
||||
Resampler *upsampler;
|
||||
|
||||
@@ -73,6 +73,8 @@ void RadioInterfaceMulti::close()
|
||||
powerScaling.resize(0);
|
||||
history.resize(0);
|
||||
active.resize(0);
|
||||
rx_freq_state.resize(0);
|
||||
tx_freq_state.resize(0);
|
||||
|
||||
RadioInterface::close();
|
||||
}
|
||||
@@ -148,6 +150,8 @@ bool RadioInterfaceMulti::init(int type)
|
||||
mReceiveFIFO.resize(mChans);
|
||||
powerScaling.resize(mChans);
|
||||
history.resize(mChans);
|
||||
rx_freq_state.resize(mChans);
|
||||
tx_freq_state.resize(mChans);
|
||||
active.resize(MCHANS, false);
|
||||
|
||||
inchunk = RESAMP_INRATE * 4;
|
||||
@@ -362,42 +366,67 @@ static bool fltcmp(double a, double b)
|
||||
return fabs(a - b) < FREQ_DELTA_LIMIT ? true : false;
|
||||
}
|
||||
|
||||
bool RadioInterfaceMulti::verify_arfcn_consistency(double freq, size_t chan, bool tx)
|
||||
{
|
||||
double freq_i;
|
||||
std::string str_dir = tx ? "Tx" : "Rx";
|
||||
std::vector<struct freq_cfg_state> &v = tx ? tx_freq_state : rx_freq_state;
|
||||
|
||||
for (size_t i = 0; i < mChans; i++) {
|
||||
if (i == chan)
|
||||
continue;
|
||||
if (!v[i].set)
|
||||
continue;
|
||||
|
||||
freq_i = v[i].freq_hz + (double) ((int)chan - (int)i) * MCBTS_SPACING;
|
||||
if (!fltcmp(freq, freq_i)) {
|
||||
LOGCHAN(chan, DMAIN, ERROR)
|
||||
<< "Setting " << str_dir << " frequency " << freq
|
||||
<< " is incompatible: already configured channel "
|
||||
<< i << " uses frequency " << v[i].freq_hz
|
||||
<< " (expected " << freq_i << ")";
|
||||
return false;
|
||||
}
|
||||
}
|
||||
v[chan].set = true;
|
||||
v[chan].freq_hz = freq;
|
||||
return true;
|
||||
}
|
||||
|
||||
bool RadioInterfaceMulti::tuneTx(double freq, size_t chan)
|
||||
{
|
||||
if (chan >= mChans)
|
||||
return false;
|
||||
double shift;
|
||||
|
||||
double shift = (double) getFreqShift(mChans);
|
||||
if (chan >= mChans)
|
||||
return false;
|
||||
|
||||
if (!chan)
|
||||
return mDevice->setTxFreq(freq + shift * MCBTS_SPACING);
|
||||
if (!verify_arfcn_consistency(freq, chan, true))
|
||||
return false;
|
||||
|
||||
double center = mDevice->getTxFreq();
|
||||
if (!fltcmp(freq, center + (double) (chan - shift) * MCBTS_SPACING)) {
|
||||
LOG(NOTICE) << "Channel " << chan << " RF Tx frequency offset is "
|
||||
<< freq / 1e6 << " MHz";
|
||||
}
|
||||
if (chan == 0) {
|
||||
shift = (double) getFreqShift(mChans);
|
||||
return mDevice->setTxFreq(freq + shift * MCBTS_SPACING);
|
||||
}
|
||||
|
||||
return true;
|
||||
return true;
|
||||
}
|
||||
|
||||
bool RadioInterfaceMulti::tuneRx(double freq, size_t chan)
|
||||
{
|
||||
if (chan >= mChans)
|
||||
return false;
|
||||
double shift;
|
||||
|
||||
double shift = (double) getFreqShift(mChans);
|
||||
if (chan >= mChans)
|
||||
return false;
|
||||
|
||||
if (!chan)
|
||||
return mDevice->setRxFreq(freq + shift * MCBTS_SPACING);
|
||||
if (!verify_arfcn_consistency(freq, chan, false))
|
||||
return false;
|
||||
|
||||
double center = mDevice->getRxFreq();
|
||||
if (!fltcmp(freq, center + (double) (chan - shift) * MCBTS_SPACING)) {
|
||||
LOG(NOTICE) << "Channel " << chan << " RF Rx frequency offset is "
|
||||
<< freq / 1e6 << " MHz";
|
||||
}
|
||||
if (chan == 0) {
|
||||
shift = (double) getFreqShift(mChans);
|
||||
return mDevice->setRxFreq(freq + shift * MCBTS_SPACING);
|
||||
}
|
||||
|
||||
return true;
|
||||
return true;
|
||||
}
|
||||
|
||||
double RadioInterfaceMulti::setRxGain(double db, size_t chan)
|
||||
|
||||
@@ -47,7 +47,7 @@ void signalVector::operator=(const signalVector& vector)
|
||||
complex *src = vector.mData;
|
||||
for (i = 0; i < size(); i++, src++, dst++)
|
||||
*dst = *src;
|
||||
/* TODO: optimize for non non-trivially copyable types: */
|
||||
/* TODO: optimize for non non-trivially copiable types: */
|
||||
/*memcpy(mData, vector.mData, bytes()); */
|
||||
mStart = mData + vector.getStart();
|
||||
}
|
||||
@@ -70,7 +70,7 @@ size_t signalVector::updateHistory()
|
||||
complex *src = mStart + this->size() - num;
|
||||
for (i = 0; i < num; i++, src++, dst++)
|
||||
*dst = *src;
|
||||
/* TODO: optimize for non non-trivially copyable types: */
|
||||
/* TODO: optimize for non non-trivially copiable types: */
|
||||
/*memmove(mData, mStart + this->size() - num, num * sizeof(complex)); */
|
||||
|
||||
return num;
|
||||
|
||||
@@ -75,6 +75,15 @@ AC_TYPE_SIZE_T
|
||||
AC_HEADER_TIME
|
||||
AC_C_BIGENDIAN
|
||||
|
||||
# Check if gettid is available (despite not being documented in glibc doc, it requires __USE_GNU on some systems)
|
||||
# C compiler is used since __USE_GNU seems to be always defined for g++.
|
||||
save_CPPFLAGS=$CPPFLAGS
|
||||
AC_LANG_PUSH(C)
|
||||
CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
|
||||
AC_CHECK_FUNCS([gettid])
|
||||
AC_LANG_POP(C)
|
||||
CPPFLAGS=$save_CPPFLAGS
|
||||
|
||||
PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.3.0)
|
||||
PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 1.3.0)
|
||||
PKG_CHECK_MODULES(LIBOSMOCTRL, libosmoctrl >= 1.3.0)
|
||||
|
||||
@@ -23,15 +23,8 @@ mychroot() {
|
||||
mychroot_nocwd -w / "$@"
|
||||
}
|
||||
|
||||
base="$PWD"
|
||||
deps="$base/deps"
|
||||
inst="$deps/install"
|
||||
export deps inst
|
||||
|
||||
if [ -z "${INSIDE_CHROOT}" ]; then
|
||||
|
||||
osmo-clean-workspace.sh
|
||||
|
||||
# Only use ARM chroot if host is not ARM and the target is ARM:
|
||||
if ! $(substr "arm" "$(uname -m)") && [ "x${INSTR}" = "x--with-neon" -o "x${INSTR}" = "x--with-neon-vfpv4" ]; then
|
||||
|
||||
@@ -69,6 +62,20 @@ if [ -z "${INSIDE_CHROOT}" ]; then
|
||||
fi
|
||||
fi
|
||||
|
||||
set -ex
|
||||
|
||||
if ! [ -x "$(command -v osmo-build-dep.sh)" ]; then
|
||||
echo "Error: We need to have scripts/osmo-deps.sh from http://git.osmocom.org/osmo-ci/ in PATH !"
|
||||
exit 2
|
||||
fi
|
||||
|
||||
base="$PWD"
|
||||
deps="$base/deps"
|
||||
inst="$deps/install"
|
||||
export deps inst
|
||||
|
||||
osmo-clean-workspace.sh
|
||||
|
||||
mkdir "$deps" || true
|
||||
|
||||
osmo-build-dep.sh libosmocore "" "--enable-sanitize --disable-doxygen --disable-pcsc"
|
||||
|
||||
@@ -46,15 +46,16 @@ Multi-ARFCN support is available since osmo-trx release `0.2.0`, and it was
|
||||
added specifically in commit `76764278169d252980853251daeb9f1ba0c246e1`.
|
||||
|
||||
This feature is useful for instance if you want to run more than 1 TRX with an
|
||||
Ettus B200 device, or 2 TRX with an Ettus B210 device, since they support only 1
|
||||
and 2 physical RF channels respectively. No device from other providers or even
|
||||
other devices than B200 and B210 from Ettus are known to support this feature.
|
||||
Ettus B200 device, or more than 2 TRXs with an Ettus B210 device, since they
|
||||
support only 1 and 2 physical RF channels respectively. No device from other
|
||||
providers or even other devices than B200 and B210 from Ettus are known to
|
||||
support this feature.
|
||||
|
||||
With multi-ARFCN enabled, ARFCN spacing is fixed at 800 kHz or 4 GSM channels.
|
||||
So if TRX-0 is set to ARFCN 51, TRX-1 _must_ be set to 55, and so on. Up to
|
||||
three ARFCN's is supported for multi-TRX.
|
||||
|
||||
From BTS and BSC point of view, supporting multiple TRX through multi-ARFCN
|
||||
From BTS and BSC point of view, supporting multiple TRXs through multi-ARFCN
|
||||
feature in OsmoTRX doesn't make any difference from a regular multi-TRX setup,
|
||||
leaving apart of course the mentioned ARFCN limitations explained above and as a
|
||||
consequence physical installation and operational differences.
|
||||
|
||||
@@ -18,10 +18,11 @@
|
||||
<param name='terminal' doc='Write to terminal' />
|
||||
</params>
|
||||
</command>
|
||||
<command id='write file'>
|
||||
<command id='write file [PATH]'>
|
||||
<params>
|
||||
<param name='write' doc='Write running configuration to memory, network, or terminal' />
|
||||
<param name='file' doc='Write to configuration file' />
|
||||
<param name='[PATH]' doc='Set file path to store the config, or replace if already exists' />
|
||||
</params>
|
||||
</command>
|
||||
<command id='write memory'>
|
||||
@@ -96,12 +97,6 @@
|
||||
<param name='history' doc='Display the session command history' />
|
||||
</params>
|
||||
</command>
|
||||
<command id='show trx'>
|
||||
<params>
|
||||
<param name='show' doc='Show running system information' />
|
||||
<param name='trx' doc='Display information on the TRX' />
|
||||
</params>
|
||||
</command>
|
||||
<command id='logging enable'>
|
||||
<params>
|
||||
<param name='logging' doc='Configure logging' />
|
||||
@@ -193,14 +188,17 @@
|
||||
<param name='MASK' doc='List of logging categories to log, e.g. 'abc:mno:xyz'. Available log categories depend on the specific application, refer to the 'logging level' command. Optionally add individual log levels like 'abc,1:mno,3:xyz,5', where the level numbers are LOGL_DEBUG=1 LOGL_INFO=3 LOGL_NOTICE=5 LOGL_ERROR=7 LOGL_FATAL=8' />
|
||||
</params>
|
||||
</command>
|
||||
<command id='logging level (main|trxctrl|dev|lms|lglobal|llapd|linp|lmux|lmi|lmib|lsms|lctrl|lgtp|lstats|lgsup|loap|lss7|lsccp|lsua|lm3ua|lmgcp|ljibuf|lrspro) (debug|info|notice|error|fatal)'>
|
||||
<command id='logging level (main|trxclk|trxctrl|trxddl|trxdul|dev|devdrv|lglobal|llapd|linp|lmux|lmi|lmib|lsms|lctrl|lgtp|lstats|lgsup|loap|lss7|lsccp|lsua|lm3ua|lmgcp|ljibuf|lrspro) (debug|info|notice|error|fatal)'>
|
||||
<params>
|
||||
<param name='logging' doc='Configure logging' />
|
||||
<param name='level' doc='Set the log level for a specified category' />
|
||||
<param name='main' doc='Main generic category' />
|
||||
<param name='trxclk' doc='TRX Master Clock' />
|
||||
<param name='trxctrl' doc='TRX CTRL interface' />
|
||||
<param name='trxddl' doc='TRX Data interface Downlink' />
|
||||
<param name='trxdul' doc='TRX CTRL interface Uplink' />
|
||||
<param name='dev' doc='Device/Driver specific code' />
|
||||
<param name='lms' doc='Logging from within LimeSuite itself' />
|
||||
<param name='devdrv' doc='Logging from external device driver library implementing lower level specifics' />
|
||||
<param name='lglobal' doc='Library-internal global log family' />
|
||||
<param name='llapd' doc='LAPD in libosmogsm' />
|
||||
<param name='linp' doc='A-bis Intput Subsystem' />
|
||||
@@ -259,6 +257,43 @@
|
||||
<param name='force-all' doc='Release any globally forced log level set with 'logging level force-all <level>'' />
|
||||
</params>
|
||||
</command>
|
||||
<command id='logp (main|trxclk|trxctrl|trxddl|trxdul|dev|devdrv|lglobal|llapd|linp|lmux|lmi|lmib|lsms|lctrl|lgtp|lstats|lgsup|loap|lss7|lsccp|lsua|lm3ua|lmgcp|ljibuf|lrspro) (debug|info|notice|error|fatal) .LOGMESSAGE'>
|
||||
<params>
|
||||
<param name='logp' doc='Print a message on all log outputs; useful for placing markers in test logs' />
|
||||
<param name='main' doc='Main generic category' />
|
||||
<param name='trxclk' doc='TRX Master Clock' />
|
||||
<param name='trxctrl' doc='TRX CTRL interface' />
|
||||
<param name='trxddl' doc='TRX Data interface Downlink' />
|
||||
<param name='trxdul' doc='TRX CTRL interface Uplink' />
|
||||
<param name='dev' doc='Device/Driver specific code' />
|
||||
<param name='devdrv' doc='Logging from external device driver library implementing lower level specifics' />
|
||||
<param name='lglobal' doc='Library-internal global log family' />
|
||||
<param name='llapd' doc='LAPD in libosmogsm' />
|
||||
<param name='linp' doc='A-bis Intput Subsystem' />
|
||||
<param name='lmux' doc='A-bis B-Subchannel TRAU Frame Multiplex' />
|
||||
<param name='lmi' doc='A-bis Input Driver for Signalling' />
|
||||
<param name='lmib' doc='A-bis Input Driver for B-Channels (voice)' />
|
||||
<param name='lsms' doc='Layer3 Short Message Service (SMS)' />
|
||||
<param name='lctrl' doc='Control Interface' />
|
||||
<param name='lgtp' doc='GPRS GTP library' />
|
||||
<param name='lstats' doc='Statistics messages and logging' />
|
||||
<param name='lgsup' doc='Generic Subscriber Update Protocol' />
|
||||
<param name='loap' doc='Osmocom Authentication Protocol' />
|
||||
<param name='lss7' doc='libosmo-sigtran Signalling System 7' />
|
||||
<param name='lsccp' doc='libosmo-sigtran SCCP Implementation' />
|
||||
<param name='lsua' doc='libosmo-sigtran SCCP User Adaptation' />
|
||||
<param name='lm3ua' doc='libosmo-sigtran MTP3 User Adaptation' />
|
||||
<param name='lmgcp' doc='libosmo-mgcp Media Gateway Control Protocol' />
|
||||
<param name='ljibuf' doc='libosmo-netif Jitter Buffer' />
|
||||
<param name='lrspro' doc='Remote SIM protocol' />
|
||||
<param name='debug' doc='Log debug messages and higher levels' />
|
||||
<param name='info' doc='Log informational messages and higher levels' />
|
||||
<param name='notice' doc='Log noticeable messages and higher levels' />
|
||||
<param name='error' doc='Log error messages and higher levels' />
|
||||
<param name='fatal' doc='Log only fatal messages' />
|
||||
<param name='.LOGMESSAGE' doc='Arbitrary message to log on given category and log level' />
|
||||
</params>
|
||||
</command>
|
||||
<command id='show logging vty'>
|
||||
<params>
|
||||
<param name='show' doc='Show running system information' />
|
||||
@@ -272,6 +307,12 @@
|
||||
<param name='alarms' doc='Show current logging configuration' />
|
||||
</params>
|
||||
</command>
|
||||
<command id='show trx'>
|
||||
<params>
|
||||
<param name='show' doc='Show running system information' />
|
||||
<param name='trx' doc='Display information on the TRX' />
|
||||
</params>
|
||||
</command>
|
||||
<command id='show talloc-context (application|all) (full|brief|DEPTH)'>
|
||||
<params>
|
||||
<param name='show' doc='Show running system information' />
|
||||
@@ -415,12 +456,6 @@
|
||||
<param name='monitor' doc='Copy debug output to the current terminal line' />
|
||||
</params>
|
||||
</command>
|
||||
<command id='show trx'>
|
||||
<params>
|
||||
<param name='show' doc='Show running system information' />
|
||||
<param name='trx' doc='Display information on the TRX' />
|
||||
</params>
|
||||
</command>
|
||||
<command id='logging enable'>
|
||||
<params>
|
||||
<param name='logging' doc='Configure logging' />
|
||||
@@ -512,14 +547,17 @@
|
||||
<param name='MASK' doc='List of logging categories to log, e.g. 'abc:mno:xyz'. Available log categories depend on the specific application, refer to the 'logging level' command. Optionally add individual log levels like 'abc,1:mno,3:xyz,5', where the level numbers are LOGL_DEBUG=1 LOGL_INFO=3 LOGL_NOTICE=5 LOGL_ERROR=7 LOGL_FATAL=8' />
|
||||
</params>
|
||||
</command>
|
||||
<command id='logging level (main|trxctrl|dev|lms|lglobal|llapd|linp|lmux|lmi|lmib|lsms|lctrl|lgtp|lstats|lgsup|loap|lss7|lsccp|lsua|lm3ua|lmgcp|ljibuf|lrspro) (debug|info|notice|error|fatal)'>
|
||||
<command id='logging level (main|trxclk|trxctrl|trxddl|trxdul|dev|devdrv|lglobal|llapd|linp|lmux|lmi|lmib|lsms|lctrl|lgtp|lstats|lgsup|loap|lss7|lsccp|lsua|lm3ua|lmgcp|ljibuf|lrspro) (debug|info|notice|error|fatal)'>
|
||||
<params>
|
||||
<param name='logging' doc='Configure logging' />
|
||||
<param name='level' doc='Set the log level for a specified category' />
|
||||
<param name='main' doc='Main generic category' />
|
||||
<param name='trxclk' doc='TRX Master Clock' />
|
||||
<param name='trxctrl' doc='TRX CTRL interface' />
|
||||
<param name='trxddl' doc='TRX Data interface Downlink' />
|
||||
<param name='trxdul' doc='TRX CTRL interface Uplink' />
|
||||
<param name='dev' doc='Device/Driver specific code' />
|
||||
<param name='lms' doc='Logging from within LimeSuite itself' />
|
||||
<param name='devdrv' doc='Logging from external device driver library implementing lower level specifics' />
|
||||
<param name='lglobal' doc='Library-internal global log family' />
|
||||
<param name='llapd' doc='LAPD in libosmogsm' />
|
||||
<param name='linp' doc='A-bis Intput Subsystem' />
|
||||
@@ -578,6 +616,43 @@
|
||||
<param name='force-all' doc='Release any globally forced log level set with 'logging level force-all <level>'' />
|
||||
</params>
|
||||
</command>
|
||||
<command id='logp (main|trxclk|trxctrl|trxddl|trxdul|dev|devdrv|lglobal|llapd|linp|lmux|lmi|lmib|lsms|lctrl|lgtp|lstats|lgsup|loap|lss7|lsccp|lsua|lm3ua|lmgcp|ljibuf|lrspro) (debug|info|notice|error|fatal) .LOGMESSAGE'>
|
||||
<params>
|
||||
<param name='logp' doc='Print a message on all log outputs; useful for placing markers in test logs' />
|
||||
<param name='main' doc='Main generic category' />
|
||||
<param name='trxclk' doc='TRX Master Clock' />
|
||||
<param name='trxctrl' doc='TRX CTRL interface' />
|
||||
<param name='trxddl' doc='TRX Data interface Downlink' />
|
||||
<param name='trxdul' doc='TRX CTRL interface Uplink' />
|
||||
<param name='dev' doc='Device/Driver specific code' />
|
||||
<param name='devdrv' doc='Logging from external device driver library implementing lower level specifics' />
|
||||
<param name='lglobal' doc='Library-internal global log family' />
|
||||
<param name='llapd' doc='LAPD in libosmogsm' />
|
||||
<param name='linp' doc='A-bis Intput Subsystem' />
|
||||
<param name='lmux' doc='A-bis B-Subchannel TRAU Frame Multiplex' />
|
||||
<param name='lmi' doc='A-bis Input Driver for Signalling' />
|
||||
<param name='lmib' doc='A-bis Input Driver for B-Channels (voice)' />
|
||||
<param name='lsms' doc='Layer3 Short Message Service (SMS)' />
|
||||
<param name='lctrl' doc='Control Interface' />
|
||||
<param name='lgtp' doc='GPRS GTP library' />
|
||||
<param name='lstats' doc='Statistics messages and logging' />
|
||||
<param name='lgsup' doc='Generic Subscriber Update Protocol' />
|
||||
<param name='loap' doc='Osmocom Authentication Protocol' />
|
||||
<param name='lss7' doc='libosmo-sigtran Signalling System 7' />
|
||||
<param name='lsccp' doc='libosmo-sigtran SCCP Implementation' />
|
||||
<param name='lsua' doc='libosmo-sigtran SCCP User Adaptation' />
|
||||
<param name='lm3ua' doc='libosmo-sigtran MTP3 User Adaptation' />
|
||||
<param name='lmgcp' doc='libosmo-mgcp Media Gateway Control Protocol' />
|
||||
<param name='ljibuf' doc='libosmo-netif Jitter Buffer' />
|
||||
<param name='lrspro' doc='Remote SIM protocol' />
|
||||
<param name='debug' doc='Log debug messages and higher levels' />
|
||||
<param name='info' doc='Log informational messages and higher levels' />
|
||||
<param name='notice' doc='Log noticeable messages and higher levels' />
|
||||
<param name='error' doc='Log error messages and higher levels' />
|
||||
<param name='fatal' doc='Log only fatal messages' />
|
||||
<param name='.LOGMESSAGE' doc='Arbitrary message to log on given category and log level' />
|
||||
</params>
|
||||
</command>
|
||||
<command id='show logging vty'>
|
||||
<params>
|
||||
<param name='show' doc='Show running system information' />
|
||||
@@ -591,6 +666,12 @@
|
||||
<param name='alarms' doc='Show current logging configuration' />
|
||||
</params>
|
||||
</command>
|
||||
<command id='show trx'>
|
||||
<params>
|
||||
<param name='show' doc='Show running system information' />
|
||||
<param name='trx' doc='Display information on the TRX' />
|
||||
</params>
|
||||
</command>
|
||||
<command id='show talloc-context (application|all) (full|brief|DEPTH)'>
|
||||
<params>
|
||||
<param name='show' doc='Show running system information' />
|
||||
@@ -772,16 +853,6 @@
|
||||
<param name='history' doc='Display the session command history' />
|
||||
</params>
|
||||
</command>
|
||||
<command id='ctrl'>
|
||||
<params>
|
||||
<param name='ctrl' doc='Configure the Control Interface' />
|
||||
</params>
|
||||
</command>
|
||||
<command id='trx'>
|
||||
<params>
|
||||
<param name='trx' doc='Configure the TRX' />
|
||||
</params>
|
||||
</command>
|
||||
<command id='log stderr'>
|
||||
<params>
|
||||
<param name='log' doc='Configure logging sub-system' />
|
||||
@@ -861,6 +932,16 @@
|
||||
<param name='[HOSTNAME]' doc='Host name to send the GSMTAP logging to (UDP port 4729)' />
|
||||
</params>
|
||||
</command>
|
||||
<command id='ctrl'>
|
||||
<params>
|
||||
<param name='ctrl' doc='Configure the Control Interface' />
|
||||
</params>
|
||||
</command>
|
||||
<command id='trx'>
|
||||
<params>
|
||||
<param name='trx' doc='Configure the TRX' />
|
||||
</params>
|
||||
</command>
|
||||
<command id='stats reporter statsd'>
|
||||
<params>
|
||||
<param name='stats' doc='Configure stats sub-system' />
|
||||
@@ -973,14 +1054,17 @@
|
||||
<param name='[last]' doc='Log source file info at the end of a log line. If omitted, log source file info just before the log text.' />
|
||||
</params>
|
||||
</command>
|
||||
<command id='logging level (main|trxctrl|dev|lms|lglobal|llapd|linp|lmux|lmi|lmib|lsms|lctrl|lgtp|lstats|lgsup|loap|lss7|lsccp|lsua|lm3ua|lmgcp|ljibuf|lrspro) (debug|info|notice|error|fatal)'>
|
||||
<command id='logging level (main|trxclk|trxctrl|trxddl|trxdul|dev|devdrv|lglobal|llapd|linp|lmux|lmi|lmib|lsms|lctrl|lgtp|lstats|lgsup|loap|lss7|lsccp|lsua|lm3ua|lmgcp|ljibuf|lrspro) (debug|info|notice|error|fatal)'>
|
||||
<params>
|
||||
<param name='logging' doc='Configure logging' />
|
||||
<param name='level' doc='Set the log level for a specified category' />
|
||||
<param name='main' doc='Main generic category' />
|
||||
<param name='trxclk' doc='TRX Master Clock' />
|
||||
<param name='trxctrl' doc='TRX CTRL interface' />
|
||||
<param name='trxddl' doc='TRX Data interface Downlink' />
|
||||
<param name='trxdul' doc='TRX CTRL interface Uplink' />
|
||||
<param name='dev' doc='Device/Driver specific code' />
|
||||
<param name='lms' doc='Logging from within LimeSuite itself' />
|
||||
<param name='devdrv' doc='Logging from external device driver library implementing lower level specifics' />
|
||||
<param name='lglobal' doc='Library-internal global log family' />
|
||||
<param name='llapd' doc='LAPD in libosmogsm' />
|
||||
<param name='linp' doc='A-bis Intput Subsystem' />
|
||||
@@ -1179,20 +1263,6 @@
|
||||
<param name='4' doc='(null)' />
|
||||
</params>
|
||||
</command>
|
||||
<command id='test rtsc <0-7>'>
|
||||
<params>
|
||||
<param name='test' doc='Set the Random Normal Burst test mode with TSC' />
|
||||
<param name='rtsc' doc='TSC' />
|
||||
<param name='<0-7>' doc='(null)' />
|
||||
</params>
|
||||
</command>
|
||||
<command id='test rach-delay <0-68>'>
|
||||
<params>
|
||||
<param name='test' doc='Set the Random Access Burst test mode with delay' />
|
||||
<param name='rach-delay' doc='RACH delay' />
|
||||
<param name='<0-68>' doc='(null)' />
|
||||
</params>
|
||||
</command>
|
||||
<command id='clock-ref (internal|external|gpsdo)'>
|
||||
<params>
|
||||
<param name='clock-ref' doc='Set the Reference Clock' />
|
||||
@@ -1247,10 +1317,29 @@
|
||||
<param name='<1-32>' doc='Real time priority' />
|
||||
</params>
|
||||
</command>
|
||||
<command id='filler dummy'>
|
||||
<command id='filler type (zero|dummy|random-nb-gmsk|random-nb-8psk|random-ab)'>
|
||||
<params>
|
||||
<param name='filler' doc='Enable C0 filler table' />
|
||||
<param name='dummy' doc='Dummy method' />
|
||||
<param name='filler' doc='Filler burst settings' />
|
||||
<param name='type' doc='Filler burst type (default=zero)' />
|
||||
<param name='zero' doc='Send an empty burst when there is nothing to send (default)' />
|
||||
<param name='dummy' doc='Send a dummy burst when there is nothing to send on C0 (TRX0) and empty burst on other channels. Use for OpenBTS compatibility only, don't use with OsmoBTS as it breaks encryption.' />
|
||||
<param name='random-nb-gmsk' doc='Send a GMSK modulated Normal Burst with random bits when there is nothing to send. Use for spectrum mask testing. Configure 'filler tsc' to set training sequence.' />
|
||||
<param name='random-nb-8psk' doc='Send an 8-PSK modulated Normal Burst with random bits when there is nothing to send. Use for spectrum mask testing. Configure 'filler tsc' to set training sequence.' />
|
||||
<param name='random-ab' doc='Send an Access Burst with random bits when there is nothing to send. Use for Rx/Tx alignment. Configure 'filler access-burst-delay' to introduce artificial delay.' />
|
||||
</params>
|
||||
</command>
|
||||
<command id='filler tsc <0-7>'>
|
||||
<params>
|
||||
<param name='filler' doc='Filler burst settings' />
|
||||
<param name='tsc' doc='Set the TSC for GMSK/8-PSK Normal Burst random fillers. Used only with 'random-nb-gmsk' and 'random-nb-8psk' filler types. (default=0)' />
|
||||
<param name='<0-7>' doc='TSC' />
|
||||
</params>
|
||||
</command>
|
||||
<command id='filler access-burst-delay <0-68>'>
|
||||
<params>
|
||||
<param name='filler' doc='Filler burst settings' />
|
||||
<param name='access-burst-delay' doc='Set the delay for Access Burst random fillers. Used only with 'random-ab' filler type. (default=0)' />
|
||||
<param name='<0-68>' doc='RACH delay in symbols' />
|
||||
</params>
|
||||
</command>
|
||||
<command id='ctr-error-threshold (rx_overruns|tx_underruns|rx_drop_events|rx_drop_samples|tx_drop_events|tx_drop_samples) <0-65535> (per-second|per-minute|per-hour|per-day)'>
|
||||
|
||||
Reference in New Issue
Block a user