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
b4832124
Commit
b4832124
authored
May 21, 2024
by
brobert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Commenting
parent
4accc464
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
9 deletions
+2
-9
openair1/PHY/NR_ESTIMATION/nr_ul_channel_estimation.c
openair1/PHY/NR_ESTIMATION/nr_ul_channel_estimation.c
+2
-9
No files found.
openair1/PHY/NR_ESTIMATION/nr_ul_channel_estimation.c
View file @
b4832124
...
...
@@ -402,9 +402,7 @@ static void inner_channel_estimation(void *arg) {
delay
->
est_delay
=
rdata
->
delay
->
est_delay
;
// Placeholder for estimated delay update
nest_count
=
rdata
->
nest_count
;
// Placeholder for nested count update
rdata
->
ul_ls_est
=
ul_ls_est
;
// Placeholder for uplink least square estimation
return
0
;
}
int
nr_pusch_channel_estimation
(
PHY_VARS_gNB
*
gNB
,
...
...
@@ -502,9 +500,7 @@ int nr_pusch_channel_estimation(PHY_VARS_gNB *gNB,
for
(
int
aarx
=
0
;
aarx
<
gNB
->
frame_parms
.
nb_antennas_rx
;
aarx
++
)
{
notifiedFIFO_elt_t
*
req
=
newNotifiedFIFO_elt
(
sizeof
(
puschAntennaProc_t
),
aarx
,
&
gNB
->
respPuschAarx
,
&
inner_channel_estimation
);
// create a job for Tpool
puschSymbolProc_t
*
rdata
=
(
puschSymbolProc_t
*
)
NotifiedFifoData
(
req
);
// data for the job
puschAntennaProc_t
*
rdata
=
malloc
(
sizeof
(
puschAntennaProc_t
));
puschAntennaProc_t
*
rdata
=
(
puschAntennaProc_t
*
)
NotifiedFifoData
(
req
);
// data for the job
// Local init in the current loop
rdata
->
aarx
=
aarx
;
...
...
@@ -551,9 +547,6 @@ int nr_pusch_channel_estimation(PHY_VARS_gNB *gNB,
delNotifiedFIFO_elt
(
req
);
}
// Free the allocated memory
free
(
rdata
);
#ifdef DEBUG_CH
fclose
(
debug_ch_est
);
#endif
...
...
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