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
promise
OpenXG-RAN
Commits
3217b512
Commit
3217b512
authored
Jun 18, 2020
by
WANG Tsu-Han
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
simulation fix
parent
860d4069
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
13 deletions
+16
-13
targets/RT/USER/lte-ru.c
targets/RT/USER/lte-ru.c
+16
-13
No files found.
targets/RT/USER/lte-ru.c
View file @
3217b512
...
@@ -2341,20 +2341,23 @@ void init_RU_proc(RU_t *ru) {
...
@@ -2341,20 +2341,23 @@ void init_RU_proc(RU_t *ru) {
LOG_I
(
PHY
,
"%s() DJP - added creation of pthread_prach
\n
"
,
__FUNCTION__
);
LOG_I
(
PHY
,
"%s() DJP - added creation of pthread_prach
\n
"
,
__FUNCTION__
);
pthread_create
(
&
proc
->
pthread_prach
,
attr_prach
,
ru_thread_prach
,
(
void
*
)
ru
);
pthread_create
(
&
proc
->
pthread_prach
,
attr_prach
,
ru_thread_prach
,
(
void
*
)
ru
);
ru
->
state
=
RU_RUN
;
ru
->
state
=
RU_RUN
;
/*fill_rf_config(ru,ru->rf_config_file);
if
(
!
get_softmodem_params
()
->
emulate_rf
)
init_frame_parms(ru->frame_parms,1);
{
ru->frame_parms->nb_antennas_rx = ru->nb_rx;
fill_rf_config
(
ru
,
ru
->
rf_config_file
);
phy_init_RU(ru);
init_frame_parms
(
ru
->
frame_parms
,
1
);
ret = openair0_device_load(&ru->rfdevice,&ru->openair0_cfg);
ru
->
frame_parms
->
nb_antennas_rx
=
ru
->
nb_rx
;
if (ret < 0) {
phy_init_RU
(
ru
);
LOG_I(PHY,"Exiting, cannot load device. Make sure that your SDR board is connected!\n");
ret
=
openair0_device_load
(
&
ru
->
rfdevice
,
&
ru
->
openair0_cfg
);
exit(1);
if
(
ret
<
0
)
{
}
LOG_I
(
PHY
,
"Exiting, cannot load device. Make sure that your SDR board is connected!
\n
"
);
exit
(
1
);
}
if (setup_RU_buffers(ru)!=0) {
if
(
setup_RU_buffers
(
ru
)
!=
0
)
{
LOG_I(PHY,"Exiting, cannot initialize RU Buffers\n");
LOG_I
(
PHY
,
"Exiting, cannot initialize RU Buffers
\n
"
);
exit(1);
exit
(
1
);
}*/
}
}
}
}
if
(
get_thread_worker_conf
()
==
WORKER_ENABLE
)
{
if
(
get_thread_worker_conf
()
==
WORKER_ENABLE
)
{
...
...
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