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
53548ab1
Commit
53548ab1
authored
Apr 03, 2021
by
aligungr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
UE SAS refactor
parent
7f4f5086
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
2 additions
and
16 deletions
+2
-16
CMakeLists.txt
CMakeLists.txt
+0
-3
src/sas/CMakeLists.txt
src/sas/CMakeLists.txt
+0
-11
src/ue/sas/task.hpp
src/ue/sas/task.hpp
+1
-1
src/urs/sas_pdu.cpp
src/urs/sas_pdu.cpp
+1
-1
src/urs/sas_pdu.hpp
src/urs/sas_pdu.hpp
+0
-0
No files found.
CMakeLists.txt
View file @
53548ab1
...
...
@@ -23,7 +23,6 @@ add_subdirectory(src/app)
add_subdirectory
(
src/urs
)
add_subdirectory
(
src/crypt
)
add_subdirectory
(
src/ue
)
add_subdirectory
(
src/sas
)
#################### GNB EXECUTABLE ####################
...
...
@@ -43,7 +42,6 @@ target_link_libraries(nr-gnb udp)
target_link_libraries
(
nr-gnb app
)
target_link_libraries
(
nr-gnb urs
)
target_link_libraries
(
nr-gnb crypt
)
target_link_libraries
(
nr-gnb sas
)
#################### UE EXECUTABLE ####################
...
...
@@ -60,7 +58,6 @@ target_link_libraries(nr-ue app)
target_link_libraries
(
nr-ue urs
)
target_link_libraries
(
nr-ue crypt
)
target_link_libraries
(
nr-ue ue
)
target_link_libraries
(
nr-ue sas
)
###################### IF BINDER ######################
add_library
(
devbnd SHARED src/binder.cpp
)
...
...
src/sas/CMakeLists.txt
deleted
100644 → 0
View file @
7f4f5086
cmake_minimum_required
(
VERSION 3.17
)
file
(
GLOB_RECURSE HDR_FILES *.hpp
)
file
(
GLOB_RECURSE SRC_FILES *.cpp
)
add_library
(
sas
${
HDR_FILES
}
${
SRC_FILES
}
)
target_compile_options
(
sas PRIVATE -Wall -Wextra -pedantic -Wno-unused-parameter
)
target_link_libraries
(
sas utils
)
target_link_libraries
(
sas udp
)
src/ue/sas/task.hpp
View file @
53548ab1
...
...
@@ -9,7 +9,7 @@
#pragma once
#include <memory>
#include <
sas/
pdu.hpp>
#include <
urs/sas_
pdu.hpp>
#include <thread>
#include <udp/server_task.hpp>
#include <ue/types.hpp>
...
...
src/
sas/
pdu.cpp
→
src/
urs/sas_
pdu.cpp
View file @
53548ab1
...
...
@@ -6,7 +6,7 @@
// and subject to the terms and conditions defined in LICENSE file.
//
#include "pdu.hpp"
#include "
sas_
pdu.hpp"
#include <utils/constants.hpp>
namespace
sas
...
...
src/
sas/
pdu.hpp
→
src/
urs/sas_
pdu.hpp
View file @
53548ab1
File moved
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