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
Michael Black
OpenXG UE
Commits
d3e37874
Commit
d3e37874
authored
Aug 14, 2019
by
Kujou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
to test
parent
a4ab3708
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
241 additions
and
733 deletions
+241
-733
.vscode/launch.json
.vscode/launch.json
+28
-0
nfapi/open-nFAPI/nfapi/public_inc/nfapi_nr_interface_scf.h
nfapi/open-nFAPI/nfapi/public_inc/nfapi_nr_interface_scf.h
+192
-732
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 @
d3e37874
{
//
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
nfapi/open-nFAPI/nfapi/public_inc/nfapi_nr_interface_scf.h
View file @
d3e37874
This diff is collapsed.
Click to expand it.
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler.c
View file @
d3e37874
openair2/NR_PHY_INTERFACE/nfapi_5g_test.c
0 → 100644
View file @
d3e37874
//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_num_config_tlvs_to_report
*
num_config_tlvs_to_report_list
;
nfapi_nr_cell_param_test
.
num_config_tlvs_to_report_list
=
num_config_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