mirror of https://github.com/pvnis/srsRAN_4G.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.1 KiB
C++
66 lines
1.1 KiB
C++
/**
|
|
*
|
|
* \section COPYRIGHT
|
|
*
|
|
* Copyright 2013-2021 Software Radio Systems Limited
|
|
*
|
|
* By using this file, you agree to the terms and conditions set
|
|
* forth in the LICENSE file which can be found at the top level of
|
|
* the distribution.
|
|
*
|
|
*/
|
|
|
|
#ifndef SRSUE_PHY_METRICS_H
|
|
#define SRSUE_PHY_METRICS_H
|
|
|
|
#include "srsran/srsran.h"
|
|
|
|
namespace srsue {
|
|
|
|
struct info_metrics_t {
|
|
uint32_t pci;
|
|
uint32_t dl_earfcn;
|
|
};
|
|
|
|
struct sync_metrics_t {
|
|
float ta_us;
|
|
float distance_km;
|
|
float speed_kmph;
|
|
float cfo;
|
|
float sfo;
|
|
};
|
|
|
|
struct ch_metrics_t {
|
|
float n;
|
|
float sinr;
|
|
float rsrp;
|
|
float rsrq;
|
|
float rssi;
|
|
float ri;
|
|
float pathloss;
|
|
float sync_err;
|
|
};
|
|
|
|
struct dl_metrics_t {
|
|
float turbo_iters;
|
|
float mcs;
|
|
};
|
|
|
|
struct ul_metrics_t {
|
|
float mcs;
|
|
float power;
|
|
};
|
|
|
|
struct phy_metrics_t {
|
|
info_metrics_t info[SRSRAN_MAX_CARRIERS];
|
|
sync_metrics_t sync[SRSRAN_MAX_CARRIERS];
|
|
ch_metrics_t ch[SRSRAN_MAX_CARRIERS];
|
|
dl_metrics_t dl[SRSRAN_MAX_CARRIERS];
|
|
ul_metrics_t ul[SRSRAN_MAX_CARRIERS];
|
|
uint32_t nof_active_cc;
|
|
};
|
|
|
|
} // namespace srsue
|
|
|
|
#endif // SRSUE_PHY_METRICS_H
|