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
a3d868e2
Commit
a3d868e2
authored
10 months ago
by
brobert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sending vars through unique structure
parent
43b826e9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
openair1/PHY/NR_ESTIMATION/nr_ul_channel_estimation.c
openair1/PHY/NR_ESTIMATION/nr_ul_channel_estimation.c
+2
-2
openair1/PHY/defs_gNB.h
openair1/PHY/defs_gNB.h
+1
-1
No files found.
openair1/PHY/NR_ESTIMATION/nr_ul_channel_estimation.c
View file @
a3d868e2
...
...
@@ -530,14 +530,14 @@ int nr_pusch_channel_estimation(PHY_VARS_gNB *gNB,
rdata
->
nushift
=
nushift
;
// Call the inner_channel_estimation function
in
t
result
=
in
ner_channel_estimation
(
rdata
);
inner_channel_estimation
(
rdata
);
// value update of rdata to be passed to the next inner call
max_ch
=
rdata
->
max_ch
;
// Placeholder for max channel value update
noise_amp2
=
rdata
->
noise_amp2
;
// Placeholder for noise amplitude squared update
delay
->
est_delay
=
rdata
->
delay
->
est_delay
;
// Placeholder for estimated delay update
nest_count
=
rdata
->
nest_count
;
// Placeholder for nested count update
ul_ls_est
=
rdata
->
ul_ls_est
;
// ul_ls_est = rdata->ul_ls_est; // Is this needed?
}
// Free the allocated memory
...
...
This diff is collapsed.
Click to expand it.
openair1/PHY/defs_gNB.h
View file @
a3d868e2
...
...
@@ -767,7 +767,7 @@ typedef struct {
int
symbolSize
;
nfapi_nr_pusch_pdu_t
*
pusch_pdu
;
int
chest_freq
;
c16_t
pilot
[
3280
]
__attribute__
((
aligned
(
32
)))
;
c16_t
*
pilot
;
int
k0
;
int
nb_rb_pusch
;
unsigned
short
p
;
...
...
This diff is collapsed.
Click to expand it.
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