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
lizhongxiao
OpenXG-RAN
Commits
25c4cea3
Commit
25c4cea3
authored
Apr 29, 2020
by
Thomas Schlichter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove now unnecessary frame_gap completely
parent
aa7e10c4
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
13 deletions
+0
-13
executables/nr-ue.c
executables/nr-ue.c
+0
-11
openair1/PHY/defs_nr_UE.h
openair1/PHY/defs_nr_UE.h
+0
-2
No files found.
executables/nr-ue.c
View file @
25c4cea3
...
...
@@ -443,12 +443,6 @@ void processSlotRX( PHY_VARS_NR_UE *UE, UE_nr_rxtx_proc_t *proc) {
dcireq
.
slot
=
proc
->
nr_tti_rx
;
nr_ue_dcireq
(
&
dcireq
);
//to be replaced with function pointer later
if
((
proc
->
frame_rx
%
(
1
<<
(
ssb_period
-
1
))
==
0
)
&&
(
proc
->
nr_tti_rx
==
1
))
{
UE
->
frame_gap
=
(
MAX_FRAME_NUMBER
+
dcireq
.
dl_config_req
.
sfn
-
proc
->
frame_rx
)
%
MAX_FRAME_NUMBER
;
proc
->
frame_rx
=
(
proc
->
frame_rx
+
UE
->
frame_gap
)
%
MAX_FRAME_NUMBER
;
proc
->
frame_tx
=
(
proc
->
frame_tx
+
UE
->
frame_gap
)
%
MAX_FRAME_NUMBER
;
}
// we should have received a DL DCI here, so configure DL accordingly
scheduled_response
.
dl_config
=
&
dcireq
.
dl_config_req
;
scheduled_response
.
ul_config
=
NULL
;
...
...
@@ -740,11 +734,6 @@ void *UE_thread(void *arg) {
absolute_slot
++
;
if
(
UE
->
frame_gap
)
{
absolute_slot
+=
UE
->
frame_gap
*
nb_slot_frame
;
UE
->
frame_gap
=
0
;
}
// whatever means thread_idx
// Fix me: will be wrong when slot 1 is slow, as slot 2 finishes
// Slot 3 will overlap if RX_NB_TH is 2
...
...
openair1/PHY/defs_nr_UE.h
View file @
25c4cea3
...
...
@@ -884,8 +884,6 @@ typedef struct {
fapi_nr_config_request_t
nrUE_config
;
uint16_t
frame_gap
;
// the following structures are not part of PHY_vars_UE anymore as it is not thread safe. They are now on the stack of the functions that actually need them
//nr_downlink_indication_t dl_indication;
...
...
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