Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG UE
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
OpenXG
OpenXG UE
Commits
7cfeb2db
Commit
7cfeb2db
authored
Sep 05, 2019
by
Florian Kaltenberger
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/5g_fapi_scf' into 442-integrate-pusch-into-nr-ue-softmodem
parents
3cbf625f
312ee9b0
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
1437 additions
and
1 deletion
+1437
-1
.vscode/launch.json
.vscode/launch.json
+28
-0
cmake_targets/CMakeLists.txt
cmake_targets/CMakeLists.txt
+4
-0
nfapi/open-nFAPI/nfapi/public_inc/nfapi_nr_interface_scf.h
nfapi/open-nFAPI/nfapi/public_inc/nfapi_nr_interface_scf.h
+1384
-0
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler.c
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler.c
+1
-1
openair2/NR_PHY_INTERFACE/nfapi_5g_test.c
openair2/NR_PHY_INTERFACE/nfapi_5g_test.c
+20
-0
No files found.
.vscode/launch.json
0 → 100644
View file @
7cfeb2db
{
//
Use
IntelliSense
to
learn
about
possible
attributes.
//
Hover
to
view
descriptions
of
existing
attributes.
//
For
more
information
,
visit:
https://go.microsoft.com/fwlink/?linkid=
830387
"version"
:
"0.2.0"
,
"configurations"
:
[
{
"name"
:
"(gdb) Launch"
,
"type"
:
"cppdbg"
,
"request"
:
"launch"
,
"program"
:
"enter program name, for example ${workspaceFolder}/a.exe"
,
"args"
:
[],
"stopAtEntry"
:
false
,
"cwd"
:
"${workspaceFolder}"
,
"environment"
:
[],
"externalConsole"
:
false
,
"MIMode"
:
"gdb"
,
"miDebuggerPath"
:
"/path/to/gdb"
,
"setupCommands"
:
[
{
"description"
:
"Enable pretty-printing for gdb"
,
"text"
:
"-enable-pretty-printing"
,
"ignoreFailures"
:
true
}
]
}
]
}
\ No newline at end of file
cmake_targets/CMakeLists.txt
View file @
7cfeb2db
...
@@ -2319,6 +2319,10 @@ add_library(minimal_lib
...
@@ -2319,6 +2319,10 @@ add_library(minimal_lib
)
)
target_link_libraries
(
minimal_lib pthread dl
${
T_LIB
}
)
target_link_libraries
(
minimal_lib pthread dl
${
T_LIB
}
)
add_executable
(
nfapi_test
${
OPENAIR_DIR
}
/openair2/NR_PHY_INTERFACE/nfapi_5g_test.c
)
add_executable
(
replay_node
add_executable
(
replay_node
${
OPENAIR_TARGETS
}
/ARCH/rfsimulator/stored_node.c
${
OPENAIR_TARGETS
}
/ARCH/rfsimulator/stored_node.c
)
)
...
...
nfapi/open-nFAPI/nfapi/public_inc/nfapi_nr_interface_scf.h
0 → 100644
View file @
7cfeb2db
This diff is collapsed.
Click to expand it.
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler.c
View file @
7cfeb2db
...
@@ -435,7 +435,7 @@ void gNB_dlsch_ulsch_scheduler(module_id_t module_idP,
...
@@ -435,7 +435,7 @@ void gNB_dlsch_ulsch_scheduler(module_id_t module_idP,
}
}
// Phytest scheduling/ option not activated because of pending bug
// Phytest scheduling/ option not activated because of pending bug
/*if (slotP==2)
/*if (slotP==2)
nr_schedule_css_dlsch_phytest(module_idP, frameP, slotP);*/
nr_schedule_css_dlsch_phytest(module_idP, frameP, slotP);*/
...
...
openair2/NR_PHY_INTERFACE/nfapi_5g_test.c
0 → 100644
View file @
7cfeb2db
//openair2/NR_PHY_INTERFACE/nfapi_5g_test.c
#include "nfapi_nr_interface_scf.h"
#include <stdio.h> // for printf
int
main
(
int
argc
,
char
**
argv
)
{
nfapi_nr_cell_param_t
nfapi_nr_cell_param_test
;
nfapi_nr_param_tlv_t
*
tlvs_to_report_list
;
nfapi_nr_cell_param_test
.
config_tlvs_to_report_list
=
tlvs_to_report_list
;
nfapi_nr_cell_param_test
.
phy_state
=
0
;
nfapi_nr_cell_param_test
.
release_capability
=
0
;
nfapi_nr_cell_param_test
.
skip_blank_dl_config
=
0
;
nfapi_nr_cell_param_test
.
skip_blank_ul_config
=
0
;
printf
(
" test nfapi
\n
"
);
return
0
;
}
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