Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
U
UERANSIM
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
UERANSIM
Commits
b8adc2fb
Commit
b8adc2fb
authored
Dec 07, 2021
by
aligungr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Release of 3.2.5
parent
19484aa0
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
10 deletions
+7
-10
README.md
README.md
+2
-3
src/gnb.cpp
src/gnb.cpp
+2
-2
src/lib/udp/server.hpp
src/lib/udp/server.hpp
+0
-2
src/utils/constants.hpp
src/utils/constants.hpp
+3
-3
No files found.
README.md
View file @
b8adc2fb
...
...
@@ -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"
/>
...
...
src/gnb.cpp
View file @
b8adc2fb
...
...
@@ -50,10 +50,10 @@ static nr::gnb::GnbConfig *ReadConfigYaml()
result
->
linkIp
=
yaml
::
GetIp
(
config
,
"linkIp"
);
result
->
ngapIp
=
yaml
::
GetIp
(
config
,
"ngapIp"
);
result
->
gtpIp
=
yaml
::
GetIp
4
(
config
,
"gtpIp"
);
result
->
gtpIp
=
yaml
::
GetIp
(
config
,
"gtpIp"
);
if
(
yaml
::
HasField
(
config
,
"gtpAdvertiseIp"
))
result
->
gtpAdvertiseIp
=
yaml
::
GetIp
4
(
config
,
"gtpAdvertiseIp"
);
result
->
gtpAdvertiseIp
=
yaml
::
GetIp
(
config
,
"gtpAdvertiseIp"
);
result
->
ignoreStreamIds
=
yaml
::
GetBool
(
config
,
"ignoreStreamIds"
);
result
->
pagingDrx
=
EPagingDrx
::
V128
;
...
...
src/lib/udp/server.hpp
View file @
b8adc2fb
...
...
@@ -9,8 +9,6 @@
#pragma once
#include <string>
#include <unistd.h>
#include <utils/network.hpp>
namespace
udp
...
...
src/utils/constants.hpp
View file @
b8adc2fb
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment