Commit b8adc2fb authored by aligungr's avatar aligungr

Release of 3.2.5

parent 19484aa0
......@@ -2,7 +2,7 @@
<a href="https://github.com/aligungr/UERANSIM"><img src="/.github/logo.png" width="75" title="UERANSIM"></a>
</p>
<p align="center">
<img src="https://img.shields.io/badge/UERANSIM-v3.2.4-blue" />
<img src="https://img.shields.io/badge/UERANSIM-v3.2.5-blue" />
<img src="https://img.shields.io/badge/3GPP-R15-orange" />
<img src="https://img.shields.io/badge/License-GPL--3.0-green"/>
</p>
......@@ -22,8 +22,7 @@ using it.
In terms of 3GPP coverage, fundamental control plane features are done. However, some of them are in progress.
More details can be found at [Feature Set](https://github.com/aligungr/UERANSIM/wiki/Feature-Set).
Meanwhile, 5G-NR radio interface is partially implemented but not completed yet. Currently, we utilize the radio
interface over a simulated environment.
Meanwhile, 5G-NR radio interface is partially implemented, and simulated over UDP protocol.
<p align="center">
<img src="https://img.shields.io/badge/Radio%20Interface-simulated-orange" alt="OS Linux"/>
......
......@@ -50,10 +50,10 @@ static nr::gnb::GnbConfig *ReadConfigYaml()
result->linkIp = yaml::GetIp(config, "linkIp");
result->ngapIp = yaml::GetIp(config, "ngapIp");
result->gtpIp = yaml::GetIp4(config, "gtpIp");
result->gtpIp = yaml::GetIp(config, "gtpIp");
if (yaml::HasField(config, "gtpAdvertiseIp"))
result->gtpAdvertiseIp = yaml::GetIp4(config, "gtpAdvertiseIp");
result->gtpAdvertiseIp = yaml::GetIp(config, "gtpAdvertiseIp");
result->ignoreStreamIds = yaml::GetBool(config, "ignoreStreamIds");
result->pagingDrx = EPagingDrx::V128;
......
......@@ -9,8 +9,6 @@
#pragma once
#include <string>
#include <unistd.h>
#include <utils/network.hpp>
namespace udp
......
......@@ -15,10 +15,10 @@ struct cons
// Version information
static constexpr const uint8_t Major = 3;
static constexpr const uint8_t Minor = 2;
static constexpr const uint8_t Patch = 4;
static constexpr const uint8_t Patch = 5;
static constexpr const char *Project = "UERANSIM";
static constexpr const char *Tag = "v3.2.4";
static constexpr const char *Name = "UERANSIM v3.2.4";
static constexpr const char *Tag = "v3.2.5";
static constexpr const char *Name = "UERANSIM v3.2.5";
static constexpr const char *Owner = "ALİ GÜNGÖR";
// Some port values
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment