Skip to content

Commit

Permalink
Release of 3.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
aligungr committed Dec 7, 2021
1 parent 19484aa commit b8adc2f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -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"/>
Expand Down
4 changes: 2 additions & 2 deletions src/gnb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 0 additions & 2 deletions src/lib/udp/server.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@
#pragma once

#include <string>
#include <unistd.h>

#include <utils/network.hpp>

namespace udp
Expand Down
6 changes: 3 additions & 3 deletions src/utils/constants.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b8adc2f

Please sign in to comment.