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
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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-RAN
Commits
4f969e41
Commit
4f969e41
authored
Jul 26, 2024
by
francescomani
Committed by
Robert Schmidt
Nov 17, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
do not force initial sync BW scanning if going to IDLE, keep the previous configuration
parent
813690ec
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
executables/nr-ue.c
executables/nr-ue.c
+7
-1
No files found.
executables/nr-ue.c
View file @
4f969e41
...
...
@@ -607,7 +607,13 @@ static int UE_dl_preprocessing(PHY_VARS_NR_UE *UE, const UE_nr_rxtx_proc_t *proc
if
(
UE
->
synch_request
.
received_synch_request
==
1
)
{
fapi_nr_synch_request_t
*
synch_req
=
&
UE
->
synch_request
.
synch_req
;
UE
->
is_synchronized
=
0
;
UE
->
UE_scan_carrier
=
synch_req
->
ssb_bw_scan
;
// if upper layers signal BW scan we do as instructed by command line parameter
// if upper layers disable BW scan we set it to false
if
(
UE
->
synch_request
.
synch_req
.
ssb_bw_scan
)
UE
->
UE_scan_carrier
=
get_nrUE_params
()
->
UE_scan_carrier
;
else
UE
->
UE_scan_carrier
=
false
;
UE
->
target_Nid_cell
=
UE
->
synch_request
.
synch_req
.
target_Nid_cell
;
UE
->
target_Nid_cell
=
synch_req
->
target_Nid_cell
;
uint64_t
dl_bw
=
(
12
*
fp
->
N_RB_DL
)
*
(
15000
<<
fp
->
numerology_index
);
...
...
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