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
spbro
OpenXG-RAN
Commits
88f0e28c
Commit
88f0e28c
authored
Aug 04, 2024
by
francescomani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
init received_config_request flag only for SA
parent
77db7be6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
openair1/PHY/INIT/nr_init_ue.c
openair1/PHY/INIT/nr_init_ue.c
+5
-1
No files found.
openair1/PHY/INIT/nr_init_ue.c
View file @
88f0e28c
...
...
@@ -35,6 +35,7 @@
#include "PHY/NR_REFSIG/nr_mod_table.h"
#include "openair2/COMMON/prs_nr_paramdef.h"
#include "SCHED_NR_UE/harq_nr.h"
#include "nr-uesoftmodem.h"
void
RCconfig_nrUE_prs
(
void
*
cfg
)
{
...
...
@@ -277,11 +278,14 @@ int init_nr_ue_signal(PHY_VARS_NR_UE *ue, int nb_connected_gNB)
}
ue
->
init_averaging
=
1
;
ue
->
received_config_request
=
false
;
init_nr_prach_tables
(
839
);
init_symbol_rotation
(
fp
);
init_timeshift_rotation
(
fp
);
// initialize to false only for SA since in do-ra and phy-test it is already set to true before getting here
if
(
get_softmodem_params
()
->
sa
)
ue
->
received_config_request
=
false
;
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