Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Shweta Shrivastava
openairinterface5G
Commits
ce923e59
Commit
ce923e59
authored
Mar 26, 2020
by
Thomas Schlichter
🇩🇪
Browse files
fix critical "assignment from incompatible pointer type" warnings
parent
817afd99
Changes
2
Hide whitespace changes
Inline
Side-by-side
openair1/PHY/NR_UE_TRANSPORT/nr_dlsch_demodulation.c
View file @
ce923e59
...
...
@@ -159,14 +159,14 @@ int nr_rx_pdsch(PHY_VARS_NR_UE *ue,
switch
(
type
)
{
case
SI_PDSCH
:
pdsch_vars
=
ue
->
pdsch_vars_SI
[
ue
->
current_thread_id
[
nr_tti_rx
]]
;
pdsch_vars
=
ue
->
pdsch_vars_SI
;
dlsch
=
&
ue
->
dlsch_SI
[
eNB_id
];
dlsch0_harq
=
dlsch
[
0
]
->
harq_processes
[
harq_pid
];
beamforming_mode
=
0
;
break
;
case
RA_PDSCH
:
pdsch_vars
=
ue
->
pdsch_vars_ra
[
ue
->
current_thread_id
[
nr_tti_rx
]]
;
pdsch_vars
=
ue
->
pdsch_vars_ra
;
dlsch
=
&
ue
->
dlsch_ra
[
eNB_id
];
dlsch0_harq
=
dlsch
[
0
]
->
harq_processes
[
harq_pid
];
beamforming_mode
=
0
;
...
...
openair1/SCHED_NR_UE/fapi_nr_ue_l1.c
View file @
ce923e59
...
...
@@ -188,7 +188,7 @@ int8_t nr_ue_scheduled_response(nr_scheduled_response_t *scheduled_response){
case
(
FAPI_NR_UL_CONFIG_TYPE_PRACH
):
// prach config pdu
fp
=
&
PHY_vars_UE_g
[
module_id
][
cc_id
]
->
frame_parms
;
prach_resources
=
&
PHY_vars_UE_g
[
module_id
][
cc_id
]
->
prach_resources
[
gNB_id
];
prach_resources
=
PHY_vars_UE_g
[
module_id
][
cc_id
]
->
prach_resources
[
gNB_id
];
prach_config_common
=
&
fp
->
prach_config_common
;
prach_config_pdu
=
&
ul_config
->
ul_config_list
[
i
].
prach_config_pdu
;
...
...
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