Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
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
Michael Black
OpenXG-RAN
Commits
24237b3e
Commit
24237b3e
authored
Jan 10, 2023
by
Florian Kaltenberger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
adapting ans1 handling of NRPPA to new framework
parent
1434175a
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
743 additions
and
0 deletions
+743
-0
CMakeLists.txt
CMakeLists.txt
+4
-0
openair3/CMakeLists.txt
openair3/CMakeLists.txt
+1
-0
openair3/NRPPA/CMakeLists.txt
openair3/NRPPA/CMakeLists.txt
+1
-0
openair3/NRPPA/MESSAGES/ASN1/38455.asn
openair3/NRPPA/MESSAGES/ASN1/38455.asn
+0
-0
openair3/NRPPA/MESSAGES/ASN1/38455.cmake
openair3/NRPPA/MESSAGES/ASN1/38455.cmake
+715
-0
openair3/NRPPA/MESSAGES/CMakeLists.txt
openair3/NRPPA/MESSAGES/CMakeLists.txt
+22
-0
No files found.
CMakeLists.txt
View file @
24237b3e
...
...
@@ -525,6 +525,10 @@ target_link_libraries(f1ap PRIVATE ngap nr_rrc)
##############
# target asn1_lpp in openair3/LPP/MESSAGES/CMakeLists.txt used below
# NRPPA
##############
add_executable
(
main_nrppa
${
OPENAIR3_DIR
}
/NRPPA/main_nrppa.c
)
target_link_libraries
(
main_nrppa asn1_nrppa
)
# Hardware dependant options
###################################
...
...
openair3/CMakeLists.txt
View file @
24237b3e
...
...
@@ -2,3 +2,4 @@ add_subdirectory(LPP)
add_subdirectory
(
M3AP
)
add_subdirectory
(
S1AP
)
add_subdirectory
(
NGAP
)
add_subdirectory
(
NRPPA
)
\ No newline at end of file
openair3/NRPPA/CMakeLists.txt
0 → 100644
View file @
24237b3e
add_subdirectory
(
MESSAGES
)
openair3/NRPPA/MESSAGES/38455.asn
→
openair3/NRPPA/MESSAGES/
ASN1/
38455.asn
View file @
24237b3e
File moved
openair3/NRPPA/MESSAGES/ASN1/38455.cmake
0 → 100644
View file @
24237b3e
This diff is collapsed.
Click to expand it.
openair3/NRPPA/MESSAGES/CMakeLists.txt
0 → 100644
View file @
24237b3e
#set(NRPPA_VERSION 16 78 0)
#make_version(NRPPA_cc ${NRPPA_VERSION})
#add_definitions(-DNRPPA_VERSION=${NRPPA_cc})
#string(REPLACE ";" "." NRPPA_RELEASE "${NRPPA_VERSION}")
#if(NRPPA_RELEASE VERSION_EQUAL "16.78.0")
include
(
ASN1/38455.cmake
)
#else()
# message(FATAL_ERROR "unknown NRPPA_RELEASE ${NRPPA_RELEASE}")
#endif()
add_custom_command
(
OUTPUT
${
nrppa_source
}
${
nrppa_headers
}
COMMAND ASN1C_PREFIX=NRPPA_ asn1c -gen-PER -no-gen-OER -fcompound-names -no-gen-example -findirect-choice -fno-include-deps -D
${
CMAKE_CURRENT_BINARY_DIR
}
${
CMAKE_CURRENT_SOURCE_DIR
}
/
${
NRPPA_GRAMMAR
}
DEPENDS
${
CMAKE_CURRENT_SOURCE_DIR
}
/
${
NRPPA_GRAMMAR
}
COMMENT
"Generating NRPPA source files from
${
CMAKE_CURRENT_SOURCE_DIR
}
/
${
NRPPA_GRAMMAR
}
"
)
add_library
(
asn1_nrppa
${
nrppa_source
}
)
target_include_directories
(
asn1_nrppa PUBLIC
"
${
CMAKE_CURRENT_BINARY_DIR
}
"
)
target_compile_options
(
asn1_nrppa PRIVATE -DASN_DISABLE_OER_SUPPORT -w
)
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