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.
169 lines
4.1 KiB
C++
169 lines
4.1 KiB
C++
/**
|
|
*
|
|
* \section COPYRIGHT
|
|
*
|
|
* Copyright 2013-2020 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_TA_CONTROL_H
|
|
#define SRSUE_TA_CONTROL_H
|
|
|
|
#include <inttypes.h>
|
|
#include <mutex>
|
|
#include <srslte/phy/common/phy_common.h>
|
|
|
|
namespace srsue {
|
|
|
|
class ta_control
|
|
{
|
|
private:
|
|
srslte::log* log_h = nullptr;
|
|
mutable std::mutex mutex;
|
|
uint32_t next_base_nta = 0;
|
|
float next_base_sec = 0.0f;
|
|
|
|
public:
|
|
/**
|
|
* Sets the logging instance
|
|
*
|
|
* @param loh_h_ logging instance pointer
|
|
*/
|
|
void set_logger(srslte::log* log_h_) { log_h = log_h_; }
|
|
|
|
/**
|
|
* Sets the next base time in seconds, discarding previous changes.
|
|
*
|
|
* @param ta_base_sec Time Alignment value in seconds
|
|
*/
|
|
void set_base_sec(float ta_base_sec)
|
|
{
|
|
std::lock_guard<std::mutex> lock(mutex);
|
|
|
|
// Forces next base
|
|
next_base_sec = ta_base_sec;
|
|
|
|
// Update base in nta
|
|
next_base_nta = static_cast<uint32_t>(roundf(next_base_sec / SRSLTE_LTE_TS));
|
|
|
|
// Log information information if available
|
|
if (log_h) {
|
|
log_h->info("PHY: Set TA base: n_ta: %d, ta_usec: %.1f\n", next_base_nta, next_base_sec * 1e6f);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Increments (delta) the next base time. The value in seconds will be added to the next base.
|
|
*
|
|
* @param ta_delta_sec Time Alignment increment value in seconds
|
|
*/
|
|
void add_delta_sec(float ta_delta_sec)
|
|
{
|
|
std::lock_guard<std::mutex> lock(mutex);
|
|
|
|
// Increments the next base
|
|
next_base_sec += ta_delta_sec;
|
|
|
|
// Update base in nta
|
|
next_base_nta = static_cast<uint32_t>(roundf(next_base_sec / SRSLTE_LTE_TS));
|
|
|
|
// Log information information if available
|
|
if (log_h) {
|
|
log_h->info("PHY: Set TA: ta_delta_usec: %.1f, n_ta: %d, ta_usec: %.1f\n",
|
|
ta_delta_sec * 1e6f,
|
|
next_base_nta,
|
|
next_base_sec * 1e6f);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Increments (delta) the next base time according to time alignment command from a Random Access Response (RAR).
|
|
*
|
|
* @param ta_cmd Time Alignment command
|
|
*/
|
|
void add_ta_cmd_rar(uint32_t ta_cmd)
|
|
{
|
|
std::lock_guard<std::mutex> lock(mutex);
|
|
|
|
// Update base nta
|
|
next_base_nta += srslte_N_ta_new_rar(ta_cmd);
|
|
|
|
// Update base in seconds
|
|
next_base_sec = static_cast<float>(next_base_nta) * SRSLTE_LTE_TS;
|
|
|
|
// Log information information if available
|
|
if (log_h) {
|
|
log_h->info(
|
|
"PHY: Set TA RAR: ta_cmd: %d, n_ta: %d, ta_usec: %.1f\n", ta_cmd, next_base_nta, next_base_sec * 1e6f);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Increments (delta) the next base time according to time alignment command from a MAC Control Element.
|
|
*
|
|
* @param ta_cmd Time Alignment command
|
|
*/
|
|
void add_ta_cmd_new(uint32_t ta_cmd)
|
|
{
|
|
std::lock_guard<std::mutex> lock(mutex);
|
|
|
|
// Update base nta
|
|
next_base_nta = srslte_N_ta_new(next_base_nta, ta_cmd);
|
|
|
|
// Update base in seconds
|
|
next_base_sec = static_cast<float>(next_base_nta) * SRSLTE_LTE_TS;
|
|
|
|
// Log information information if available
|
|
if (log_h) {
|
|
log_h->info("PHY: Set TA: ta_cmd: %d, n_ta: %d, ta_usec: %.1f\n", ta_cmd, next_base_nta, next_base_sec * 1e6f);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Get the current time alignment in seconds
|
|
*
|
|
* @return Time alignment in seconds
|
|
*/
|
|
float get_sec() const
|
|
{
|
|
std::lock_guard<std::mutex> lock(mutex);
|
|
|
|
// Returns the current base
|
|
return next_base_sec;
|
|
}
|
|
|
|
/**
|
|
* Get the current time alignment in microseconds
|
|
*
|
|
* @return Time alignment in microseconds
|
|
*/
|
|
float get_usec() const
|
|
{
|
|
std::lock_guard<std::mutex> lock(mutex);
|
|
|
|
// Returns the current base
|
|
return next_base_sec * 1e6f;
|
|
}
|
|
|
|
/**
|
|
* Get the current time alignment in kilometers between the eNb and the UE
|
|
*
|
|
* @return Distance based on the current time base
|
|
*/
|
|
float get_km() const
|
|
{
|
|
std::lock_guard<std::mutex> lock(mutex);
|
|
|
|
// Returns the current base, one direction distance
|
|
return next_base_sec * (3.6f * 3e8f / 2.0f);
|
|
}
|
|
};
|
|
|
|
} // namespace srsue
|
|
|
|
#endif // SRSUE_TA_CONTROL_H
|