Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openairinterface5G
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
oai
openairinterface5G
Merge requests
!190
develop_integration_w20 into develop
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
develop_integration_w20 into develop
develop_integration_w20
into
develop
Overview
0
Commits
24
Pipelines
0
Changes
38
Merged
Cédric Roux
requested to merge
develop_integration_w20
into
develop
7 years ago
Overview
0
Commits
24
Pipelines
0
Changes
38
Expand
Summary of changes:
bug fixes
UE TDD fixes
PDCCH size computation (at phy level, still to be corrected at mac level)
DAI increment
fix run_enb_ue_virt_noS1 and run_enb_ue_virt_s1 to use Rel14 and have --xforms to work
compilation warning removals
better oaisim logging (print UE security keys, print version (git commit ID) at runtime, print working directory)
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
c98339e1
24 commits,
7 years ago
38 files
+
610
−
86
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
38
Search (e.g. *.vue) (Ctrl+P)
cmake_targets/tools/run_enb_ue_virt_noS1
+
8
−
3
Options
@@ -150,7 +150,7 @@ function main()
# -u | --num-ue )
-V
|
--vcd
)
"setting gtk-wave output"
echo
"setting gtk-wave output"
exe_arguments
=
"
$exe_arguments
-V /tmp/oai_gtk_wave.vcd"
shift
;
;;
@@ -164,6 +164,11 @@ function main()
exe_arguments
=
"
$exe_arguments
-n
$2
"
shift
2
;
;;
-x
|
--xforms
)
echo
"running with xforms"
exe_arguments
=
"
$exe_arguments
--xforms"
shift
1
;
;;
*
)
echo
"Unknown option
$1
"
help
@@ -212,11 +217,11 @@ function main()
fi
if
[
$run_gdb
-eq
0
]
;
then
exec
$SUDO
$OPENAIR_DIR
/targets/bin/oaisim_nos1.Rel1
0
$exe_arguments
|
tee
/tmp/enb_ue_nos1.log.txt
exec
$SUDO
$OPENAIR_DIR
/targets/bin/oaisim_nos1.Rel1
4
$exe_arguments
|
tee
/tmp/enb_ue_nos1.log.txt
else
touch
~/.gdb_enb_ue_nos1
chmod
777 ~/.gdb_enb_ue_nos1
echo
"file
$OPENAIR_DIR
/targets/bin/oaisim_nos1.Rel1
0
"
>
~/.gdb_enb_ue_nos1
echo
"file
$OPENAIR_DIR
/targets/bin/oaisim_nos1.Rel1
4
"
>
~/.gdb_enb_ue_nos1
echo
"set args
$exe_arguments
"
>>
~/.gdb_enb_ue_nos1
echo
"run"
>>
~/.gdb_enb_ue_nos1
cat
~/.gdb_enb_ue_nos1
Loading