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
6a16fff7
Commit
6a16fff7
authored
Feb 01, 2024
by
francescomani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove unused phy_config_ind queue
parent
29156240
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
3 deletions
+1
-3
executables/nr-ue.c
executables/nr-ue.c
+0
-1
openair1/PHY/defs_nr_UE.h
openair1/PHY/defs_nr_UE.h
+1
-1
openair1/SCHED_NR_UE/fapi_nr_ue_l1.c
openair1/SCHED_NR_UE/fapi_nr_ue_l1.c
+0
-1
No files found.
executables/nr-ue.c
View file @
6a16fff7
...
@@ -786,7 +786,6 @@ void *UE_thread(void *arg)
...
@@ -786,7 +786,6 @@ void *UE_thread(void *arg)
bool
syncRunning
=
false
;
bool
syncRunning
=
false
;
const
int
nb_slot_frame
=
UE
->
frame_parms
.
slots_per_frame
;
const
int
nb_slot_frame
=
UE
->
frame_parms
.
slots_per_frame
;
int
absolute_slot
=
0
,
decoded_frame_rx
=
INT_MAX
,
trashed_frames
=
0
;
int
absolute_slot
=
0
,
decoded_frame_rx
=
INT_MAX
,
trashed_frames
=
0
;
initNotifiedFIFO
(
&
UE
->
phy_config_ind
);
int
tx_wait_for_dlsch
[
NR_MAX_SLOTS_PER_FRAME
];
int
tx_wait_for_dlsch
[
NR_MAX_SLOTS_PER_FRAME
];
int
num_ind_fifo
=
nb_slot_frame
;
int
num_ind_fifo
=
nb_slot_frame
;
...
...
openair1/PHY/defs_nr_UE.h
View file @
6a16fff7
...
@@ -610,7 +610,7 @@ typedef struct PHY_VARS_NR_UE_s {
...
@@ -610,7 +610,7 @@ typedef struct PHY_VARS_NR_UE_s {
void
*
phy_sim_pdsch_dl_ch_estimates
;
void
*
phy_sim_pdsch_dl_ch_estimates
;
void
*
phy_sim_pdsch_dl_ch_estimates_ext
;
void
*
phy_sim_pdsch_dl_ch_estimates_ext
;
uint8_t
*
phy_sim_dlsch_b
;
uint8_t
*
phy_sim_dlsch_b
;
notifiedFIFO_t
phy_config_ind
;
notifiedFIFO_t
tx_resume_ind_fifo
[
NR_MAX_SLOTS_PER_FRAME
];
notifiedFIFO_t
tx_resume_ind_fifo
[
NR_MAX_SLOTS_PER_FRAME
];
}
PHY_VARS_NR_UE
;
}
PHY_VARS_NR_UE
;
...
...
openair1/SCHED_NR_UE/fapi_nr_ue_l1.c
View file @
6a16fff7
...
@@ -531,7 +531,6 @@ int8_t nr_ue_phy_config_request(nr_phy_config_t *phy_config)
...
@@ -531,7 +531,6 @@ int8_t nr_ue_phy_config_request(nr_phy_config_t *phy_config)
fapi_nr_config_request_t
*
nrUE_config
=
&
PHY_vars_UE_g
[
phy_config
->
Mod_id
][
phy_config
->
CC_id
]
->
nrUE_config
;
fapi_nr_config_request_t
*
nrUE_config
=
&
PHY_vars_UE_g
[
phy_config
->
Mod_id
][
phy_config
->
CC_id
]
->
nrUE_config
;
if
(
phy_config
!=
NULL
)
{
if
(
phy_config
!=
NULL
)
{
memcpy
(
nrUE_config
,
&
phy_config
->
config_req
,
sizeof
(
fapi_nr_config_request_t
));
memcpy
(
nrUE_config
,
&
phy_config
->
config_req
,
sizeof
(
fapi_nr_config_request_t
));
pushNotifiedFIFO
(
&
PHY_vars_UE_g
[
phy_config
->
Mod_id
][
phy_config
->
CC_id
]
->
phy_config_ind
,
newNotifiedFIFO_elt
(
1
,
0
,
NULL
,
NULL
));
}
}
return
0
;
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