Commit b8adc2fb authored by aligungr's avatar aligungr

Release of 3.2.5

parent 19484aa0
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
<a href="https://github.com/aligungr/UERANSIM"><img src="/.github/logo.png" width="75" title="UERANSIM"></a> <a href="https://github.com/aligungr/UERANSIM"><img src="/.github/logo.png" width="75" title="UERANSIM"></a>
</p> </p>
<p align="center"> <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/3GPP-R15-orange" />
<img src="https://img.shields.io/badge/License-GPL--3.0-green"/> <img src="https://img.shields.io/badge/License-GPL--3.0-green"/>
</p> </p>
...@@ -22,8 +22,7 @@ using it. ...@@ -22,8 +22,7 @@ using it.
In terms of 3GPP coverage, fundamental control plane features are done. However, some of them are in progress. 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). 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 Meanwhile, 5G-NR radio interface is partially implemented, and simulated over UDP protocol.
interface over a simulated environment.
<p align="center"> <p align="center">
<img src="https://img.shields.io/badge/Radio%20Interface-simulated-orange" alt="OS Linux"/> <img src="https://img.shields.io/badge/Radio%20Interface-simulated-orange" alt="OS Linux"/>
......
...@@ -50,10 +50,10 @@ static nr::gnb::GnbConfig *ReadConfigYaml() ...@@ -50,10 +50,10 @@ static nr::gnb::GnbConfig *ReadConfigYaml()
result->linkIp = yaml::GetIp(config, "linkIp"); result->linkIp = yaml::GetIp(config, "linkIp");
result->ngapIp = yaml::GetIp(config, "ngapIp"); result->ngapIp = yaml::GetIp(config, "ngapIp");
result->gtpIp = yaml::GetIp4(config, "gtpIp"); result->gtpIp = yaml::GetIp(config, "gtpIp");
if (yaml::HasField(config, "gtpAdvertiseIp")) if (yaml::HasField(config, "gtpAdvertiseIp"))
result->gtpAdvertiseIp = yaml::GetIp4(config, "gtpAdvertiseIp"); result->gtpAdvertiseIp = yaml::GetIp(config, "gtpAdvertiseIp");
result->ignoreStreamIds = yaml::GetBool(config, "ignoreStreamIds"); result->ignoreStreamIds = yaml::GetBool(config, "ignoreStreamIds");
result->pagingDrx = EPagingDrx::V128; result->pagingDrx = EPagingDrx::V128;
......
...@@ -9,8 +9,6 @@ ...@@ -9,8 +9,6 @@
#pragma once #pragma once
#include <string> #include <string>
#include <unistd.h>
#include <utils/network.hpp> #include <utils/network.hpp>
namespace udp namespace udp
......
...@@ -15,10 +15,10 @@ struct cons ...@@ -15,10 +15,10 @@ struct cons
// Version information // Version information
static constexpr const uint8_t Major = 3; static constexpr const uint8_t Major = 3;
static constexpr const uint8_t Minor = 2; 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 *Project = "UERANSIM";
static constexpr const char *Tag = "v3.2.4"; static constexpr const char *Tag = "v3.2.5";
static constexpr const char *Name = "UERANSIM v3.2.4"; static constexpr const char *Name = "UERANSIM v3.2.5";
static constexpr const char *Owner = "ALİ GÜNGÖR"; static constexpr const char *Owner = "ALİ GÜNGÖR";
// Some port values // 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