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
ZhouShuya
OpenXG-RAN
Commits
1e377d58
Commit
1e377d58
authored
Jun 02, 2020
by
MaheshK1995
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated gitignore
parent
362da7c9
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
425 additions
and
23 deletions
+425
-23
.gitignore
.gitignore
+1
-4
.vscode/launch.json
.vscode/launch.json
+88
-19
nfapi/README.md
nfapi/README.md
+12
-0
targets/PROJECTS/GENERIC-LTE-EPC/CONF/oaiL1.nfapi.usrpx300.conf
...s/PROJECTS/GENERIC-LTE-EPC/CONF/oaiL1.nfapi.usrpx300.conf
+45
-0
targets/PROJECTS/GENERIC-LTE-EPC/CONF/rcc.band78.tm1.106PRB.nfapi.conf
...CTS/GENERIC-LTE-EPC/CONF/rcc.band78.tm1.106PRB.nfapi.conf
+279
-0
No files found.
.gitignore
View file @
1e377d58
# vim swp
*.swp
# log and exec file
cmake_targets/log/
cmake_targets/*/build/
cmake_targets/ran_build/
...
...
@@ -10,5 +8,4 @@ log/
lte_build_oai/
targets/bin/
# vscode
.vscode
.vscode/*
.vscode/launch.json
View file @
1e377d58
...
...
@@ -4,25 +4,94 @@
//
For
more
information
,
visit:
https://go.microsoft.com/fwlink/?linkid=
830387
"version"
:
"0.2.0"
,
"configurations"
:
[
//
{
//
"type"
:
"extensionHost"
,
//
"request"
:
"launch"
,
//
"name"
:
"Launch Extension"
,
//
"runtimeExecutable"
:
"${execPath}"
,
//
"args"
:
[
//
"--extensionDevelopmentPath=${workspaceFolder}"
//
],
//
"outFiles"
:
[
//
"${workspaceFolder}/out/**/*.js"
//
],
//
"preLaunchTask"
:
"npm"
//
},
{
"name"
:
"(gdb) Launch"
,
"name"
:
"(gdb) Launch
VNF
"
,
"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
"program"
:
"/home/glab/NR_nfapi/openairinterface5g/cmake_targets/ran_build/build/nr-softmodem"
,
"args"
:
[
"-E"
,
"-O "
,
"/home/glab/NR_nfapi/openairinterface5g/targets/PROJECTS/GENERIC-LTE-EPC/CONF/rcc.band78.tm1.106PRB.nfapi.conf"
,
"2"
],
"stopAtEntry"
:
false
,
"cwd"
:
"${workspaceFolder}"
,
"environment"
:
[],
"externalConsole"
:
false
,
"MIMode"
:
"gdb"
,
"miDebuggerPath"
:
"/usr/bin/gdb"
,
"setupCommands"
:
[
{
"description"
:
"Enable pretty-printing for gdb"
,
"text"
:
"-enable-pretty-printing"
,
"ignoreFailures"
:
true
}
]
},
{
"name"
:
"(gdb) Launch PNF"
,
"type"
:
"cppdbg"
,
"request"
:
"launch"
,
"program"
:
"/home/glab/NR_nfapi/openairinterface5g/cmake_targets/ran_build/build/nr-softmodem"
,
"args"
:
[
"-E"
,
"-O "
,
"/home/glab/NR_nfapi/openairinterface5g/targets/PROJECTS/GENERIC-LTE-EPC/CONF/oaiL1.nfapi.usrpx300.conf"
,
"1"
],
"stopAtEntry"
:
false
,
"cwd"
:
"${workspaceFolder}"
,
"environment"
:
[],
"externalConsole"
:
false
,
"MIMode"
:
"gdb"
,
"miDebuggerPath"
:
"/usr/bin/gdb"
,
"setupCommands"
:
[
{
"description"
:
"Enable pretty-printing for gdb"
,
"text"
:
"-enable-pretty-printing"
,
"ignoreFailures"
:
true
}
]
}
{
"name"
:
"(gdb) Launch GNB"
,
"type"
:
"cppdbg"
,
"request"
:
"launch"
,
"program"
:
"/home/glab/NR_nfapi/openairinterface5g/cmake_targets/ran_build/build/nr-softmodem"
,
"args"
:
[
"-E"
,
"-O "
,
"/home/glab/NR_nfapi/openairinterface5g/targets/PROJECTS/GENERIC-LTE-EPC/CONF/gnb.band78.tm1.106PRB.usrpn300.conf"
,
"--parallel-config"
,
"PARALLEL_SINGLE_THREAD"
,
"--rfsim"
,
"--phy-test"
],
"stopAtEntry"
:
false
,
"cwd"
:
"${workspaceFolder}"
,
"environment"
:
[],
"externalConsole"
:
false
,
"MIMode"
:
"gdb"
,
"miDebuggerPath"
:
"/usr/bin/gdb"
,
"setupCommands"
:
[
{
"description"
:
"Enable pretty-printing for gdb"
,
"text"
:
"-enable-pretty-printing"
,
"ignoreFailures"
:
true
}
]
}
]
}
//
PNF:
oaiL
1
.nfapi.usrpx
300
.conf
//
/home/glab/NR_nfapi/openairinterface
5
g/cmake_targets/ran_build/build/nr-softmodem
-E
-O
/home/glab/NR_nfapi/openairinterface
5
g/targets/PROJECTS/GENERIC-LTE-EPC/CONF/oaiL
1
.nfapi.usrpx
300
.conf
1
//
VNF:
rcc.band
78
.tm
1.106
PRB.nfapi.conf
//
/home/glab/NR_nfapi/openairinterface
5
g/cmake_targets/ran_build/build/nr-softmodem
-E
-O
/home/glab/NR_nfapi/openairinterface
5
g/targets/PROJECTS/GENERIC-LTE-EPC/CONF/rcc.band
78
.tm
1.106
PRB.nfapi.conf
2
nfapi/README.md
0 → 100644
View file @
1e377d58
# Changelog
each change log shoudl contain the list of commit IDs, the id of issues fixed
| COMMIT ID: | changes |
|---------------|-----------|
| 6ba001ae9 | modified
`.gitignore file`
|
`.gitignore`
: N/A
```
+ .vscode/*
```
\ No newline at end of file
targets/PROJECTS/GENERIC-LTE-EPC/CONF/oaiL1.nfapi.usrpx300.conf
0 → 100644
View file @
1e377d58
log_config
= {
global_log_level
=
"debug"
;
global_log_verbosity
=
"medium"
;
hw_log_level
=
"info"
;
hw_log_verbosity
=
"medium"
;
phy_log_level
=
"info"
;
phy_log_verbosity
=
"medium"
;
mac_log_level
=
"debug"
;
mac_log_verbosity
=
"medium"
;
rlc_log_level
=
"info"
;
rlc_log_verbosity
=
"medium"
;
pdcp_log_level
=
"info"
;
pdcp_log_verbosity
=
"medium"
;
rrc_log_level
=
"debug"
;
rrc_log_verbosity
=
"full"
;
};
L1s
= (
{
num_cc
=
1
;
tr_n_preference
=
"nfapi"
;
local_n_if_name
=
"lo"
;
remote_n_address
=
"127.0.0.1"
; //
vnf
addr
local_n_address
=
"127.0.0.1"
; //
pnf
addr
local_n_portc
=
50000
; //
pnf
p5
port
[!]
remote_n_portc
=
50000
; //
vnf
p5
port
local_n_portd
=
50001
; //
pnf
p7
port
remote_n_portd
=
50001
; //
vnf
p7
port
}
);
RUs
= (
{
local_rf
=
"yes"
nb_tx
=
1
nb_rx
=
1
att_tx
=
0
att_rx
=
0
;
bands
= [
7
];
max_pdschReferenceSignalPower
= -
27
;
max_rxgain
=
114
;
}
);
targets/PROJECTS/GENERIC-LTE-EPC/CONF/rcc.band78.tm1.106PRB.nfapi.conf
0 → 100644
View file @
1e377d58
This diff is collapsed.
Click to expand it.
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