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
652249fb
Commit
652249fb
authored
May 17, 2018
by
Wang Tsu-Han
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
numerology fix
parent
6393130b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
2 deletions
+5
-2
targets/RT/USER/lte-enb.c
targets/RT/USER/lte-enb.c
+0
-1
targets/RT/USER/lte-ru.c
targets/RT/USER/lte-ru.c
+4
-0
targets/RT/USER/lte-softmodem.c
targets/RT/USER/lte-softmodem.c
+1
-1
No files found.
targets/RT/USER/lte-enb.c
View file @
652249fb
...
...
@@ -644,7 +644,6 @@ int wakeup_rxtx(PHY_VARS_eNB *eNB,RU_t *ru) {
}
pthread_mutex_unlock
(
&
proc_rxtx0
->
mutex_rxtx
);
ru_proc
->
emulate_rf_busy
=
0
;
return
(
0
);
}
...
...
targets/RT/USER/lte-ru.c
View file @
652249fb
...
...
@@ -700,6 +700,7 @@ static void* emulatedRF_thread(void* param) {
sparam
.
sched_priority
=
sched_get_priority_max
(
SCHED_FIFO
);
policy
=
SCHED_FIFO
;
pthread_setschedparam
(
pthread_self
(),
policy
,
&
sparam
);
LOG_I
(
PHY
,
"/////////////////////******************** numerology = %d /////////////////////////////////*****************************
\n
"
,
numerology
);
wait_sync
(
"emulatedRF_thread"
);
while
(
!
oai_exit
){
...
...
@@ -1211,6 +1212,9 @@ void wakeup_eNBs(RU_t *ru) {
{
LOG_E
(
PHY
,
"could not wakeup eNB rxtx process for subframe %d
\n
"
,
ru
->
proc
.
subframe_rx
);
}
if
(
!
eNB_list
[
i
]
->
single_thread_flag
){
ru
->
proc
.
emulate_rf_busy
=
0
;
}
}
}
}
...
...
targets/RT/USER/lte-softmodem.c
View file @
652249fb
...
...
@@ -218,7 +218,7 @@ extern void init_eNB_afterRU(void);
int
transmission_mode
=
1
;
int
emulate_rf
=
0
;
int
numerology
=
2
;
int
numerology
=
0
;
int
codingw
=
0
;
int
fepw
=
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