Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG UE
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
Michael Black
OpenXG UE
Commits
3c9cff61
Commit
3c9cff61
authored
Mar 26, 2017
by
Elena_Lukashova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing previous commit
parent
35cc4a46
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
0 deletions
+18
-0
openair1/PHY/LTE_TRANSPORT/dlsch_llr_computation.c
openair1/PHY/LTE_TRANSPORT/dlsch_llr_computation.c
+12
-0
openair1/PHY/LTE_TRANSPORT/proto.h
openair1/PHY/LTE_TRANSPORT/proto.h
+3
-0
openair1/SIMULATION/LTE_PHY/dlsim_tm4.c
openair1/SIMULATION/LTE_PHY/dlsim_tm4.c
+3
-0
No files found.
openair1/PHY/LTE_TRANSPORT/dlsch_llr_computation.c
View file @
3c9cff61
...
@@ -693,6 +693,7 @@ int32_t dlsch_qpsk_llr_SIC(LTE_DL_FRAME_PARMS *frame_parms,
...
@@ -693,6 +693,7 @@ int32_t dlsch_qpsk_llr_SIC(LTE_DL_FRAME_PARMS *frame_parms,
uint8_t num_pdcch_symbols,
uint8_t num_pdcch_symbols,
uint16_t nb_rb,
uint16_t nb_rb,
uint8_t subframe,
uint8_t subframe,
uint16_t mod_order_0,
uint32_t rb_alloc)
uint32_t rb_alloc)
{
{
...
@@ -723,6 +724,9 @@ int32_t dlsch_qpsk_llr_SIC(LTE_DL_FRAME_PARMS *frame_parms,
...
@@ -723,6 +724,9 @@ int32_t dlsch_qpsk_llr_SIC(LTE_DL_FRAME_PARMS *frame_parms,
else //pilots=0
else //pilots=0
amp_tmp=0x1fff;//1.5*dlsch0->sqrt_rho_a; already taken into account
amp_tmp=0x1fff;//1.5*dlsch0->sqrt_rho_a; already taken into account
if (mod_order_0==6)
amp_tmp=amp_tmp<<1; // to compensate for >> 1 shift in modulation
pbch_pss_sss_adjust=adjust_G2(frame_parms,&rb_alloc,2,subframe,symbol);
pbch_pss_sss_adjust=adjust_G2(frame_parms,&rb_alloc,2,subframe,symbol);
...
@@ -928,6 +932,7 @@ void dlsch_16qam_llr_SIC (LTE_DL_FRAME_PARMS *frame_parms,
...
@@ -928,6 +932,7 @@ void dlsch_16qam_llr_SIC (LTE_DL_FRAME_PARMS *frame_parms,
int32_t **dl_ch_mag,
int32_t **dl_ch_mag,
uint16_t nb_rb,
uint16_t nb_rb,
uint8_t subframe,
uint8_t subframe,
uint16_t mod_order_0,
uint32_t rb_alloc)
uint32_t rb_alloc)
{
{
int16_t rho_amp_x0[2*frame_parms->N_RB_DL*12];
int16_t rho_amp_x0[2*frame_parms->N_RB_DL*12];
...
@@ -965,6 +970,9 @@ void dlsch_16qam_llr_SIC (LTE_DL_FRAME_PARMS *frame_parms,
...
@@ -965,6 +970,9 @@ void dlsch_16qam_llr_SIC (LTE_DL_FRAME_PARMS *frame_parms,
len = nb_rb*12 - pbch_pss_sss_adjust;
len = nb_rb*12 - pbch_pss_sss_adjust;
}
}
if (mod_order_0==6)
amp_tmp=amp_tmp<<1; // to compensate for >> 1 shift in modulation
len_acc+=len;
len_acc+=len;
multadd_complex_vector_real_scalar((int16_t *)sic_data,
multadd_complex_vector_real_scalar((int16_t *)sic_data,
...
@@ -1186,6 +1194,7 @@ void dlsch_64qam_llr_SIC(LTE_DL_FRAME_PARMS *frame_parms,
...
@@ -1186,6 +1194,7 @@ void dlsch_64qam_llr_SIC(LTE_DL_FRAME_PARMS *frame_parms,
int32_t **dl_ch_magb,
int32_t **dl_ch_magb,
uint16_t nb_rb,
uint16_t nb_rb,
uint8_t subframe,
uint8_t subframe,
uint16_t mod_order_0,
uint32_t rb_alloc)
uint32_t rb_alloc)
{
{
int16_t rho_amp_x0[2*frame_parms->N_RB_DL*12];
int16_t rho_amp_x0[2*frame_parms->N_RB_DL*12];
...
@@ -1225,6 +1234,9 @@ void dlsch_64qam_llr_SIC(LTE_DL_FRAME_PARMS *frame_parms,
...
@@ -1225,6 +1234,9 @@ void dlsch_64qam_llr_SIC(LTE_DL_FRAME_PARMS *frame_parms,
len = nb_rb*12 - pbch_pss_sss_adjust;
len = nb_rb*12 - pbch_pss_sss_adjust;
}
}
if (mod_order_0==6)
amp_tmp=amp_tmp<<1; // to compensate for >> 1 shift in modulation
len_acc+=len;
len_acc+=len;
multadd_complex_vector_real_scalar((int16_t *)sic_data,
multadd_complex_vector_real_scalar((int16_t *)sic_data,
...
...
openair1/PHY/LTE_TRANSPORT/proto.h
View file @
3c9cff61
...
@@ -848,6 +848,7 @@ int32_t dlsch_qpsk_llr_SIC(LTE_DL_FRAME_PARMS *frame_parms,
...
@@ -848,6 +848,7 @@ int32_t dlsch_qpsk_llr_SIC(LTE_DL_FRAME_PARMS *frame_parms,
uint8_t
num_pdcch_symbols
,
uint8_t
num_pdcch_symbols
,
uint16_t
nb_rb
,
uint16_t
nb_rb
,
uint8_t
subframe
,
uint8_t
subframe
,
uint16_t
mod_order_0
,
uint32_t
rb_alloc
);
uint32_t
rb_alloc
);
void
dlsch_16qam_llr
(
LTE_DL_FRAME_PARMS
*
frame_parms
,
void
dlsch_16qam_llr
(
LTE_DL_FRAME_PARMS
*
frame_parms
,
...
@@ -882,6 +883,7 @@ void dlsch_16qam_llr_SIC (LTE_DL_FRAME_PARMS *frame_parms,
...
@@ -882,6 +883,7 @@ void dlsch_16qam_llr_SIC (LTE_DL_FRAME_PARMS *frame_parms,
int32_t
**
dl_ch_mag
,
int32_t
**
dl_ch_mag
,
uint16_t
nb_rb
,
uint16_t
nb_rb
,
uint8_t
subframe
,
uint8_t
subframe
,
uint16_t
mod_order_0
,
uint32_t
rb_alloc
);
uint32_t
rb_alloc
);
void
dlsch_64qam_llr_SIC
(
LTE_DL_FRAME_PARMS
*
frame_parms
,
void
dlsch_64qam_llr_SIC
(
LTE_DL_FRAME_PARMS
*
frame_parms
,
...
@@ -894,6 +896,7 @@ void dlsch_64qam_llr_SIC(LTE_DL_FRAME_PARMS *frame_parms,
...
@@ -894,6 +896,7 @@ void dlsch_64qam_llr_SIC(LTE_DL_FRAME_PARMS *frame_parms,
int32_t
**
dl_ch_magb
,
int32_t
**
dl_ch_magb
,
uint16_t
nb_rb
,
uint16_t
nb_rb
,
uint8_t
subframe
,
uint8_t
subframe
,
uint16_t
mod_order_0
,
uint32_t
rb_alloc
);
uint32_t
rb_alloc
);
...
...
openair1/SIMULATION/LTE_PHY/dlsim_tm4.c
View file @
3c9cff61
...
@@ -4385,6 +4385,7 @@ int main(int argc, char **argv)
...
@@ -4385,6 +4385,7 @@ int main(int argc, char **argv)
num_pdcch_symbols
,
num_pdcch_symbols
,
dlsch0_eNB_harq
->
nb_rb
,
dlsch0_eNB_harq
->
nb_rb
,
subframe
,
subframe
,
get_Qm
(
eNB
->
dlsch
[
0
][
0
]
->
harq_processes
[
0
]
->
mcs
),
dlsch0_eNB_harq
->
rb_alloc
[
0
]);
dlsch0_eNB_harq
->
rb_alloc
[
0
]);
break
;
break
;
...
@@ -4399,6 +4400,7 @@ int main(int argc, char **argv)
...
@@ -4399,6 +4400,7 @@ int main(int argc, char **argv)
UE
->
pdsch_vars
[
subframe
&
0x1
][
eNB_id
]
->
dl_ch_mag1
[
UE
->
dlsch
[
subframe
&
0x1
][
0
][
1
]
->
current_harq_pid
][
round_sic
],
UE
->
pdsch_vars
[
subframe
&
0x1
][
eNB_id
]
->
dl_ch_mag1
[
UE
->
dlsch
[
subframe
&
0x1
][
0
][
1
]
->
current_harq_pid
][
round_sic
],
dlsch0_eNB_harq
->
nb_rb
,
dlsch0_eNB_harq
->
nb_rb
,
subframe
,
subframe
,
get_Qm
(
eNB
->
dlsch
[
0
][
0
]
->
harq_processes
[
0
]
->
mcs
),
dlsch0_eNB_harq
->
rb_alloc
[
0
]);
dlsch0_eNB_harq
->
rb_alloc
[
0
]);
break
;
break
;
case
6
:
case
6
:
...
@@ -4412,6 +4414,7 @@ int main(int argc, char **argv)
...
@@ -4412,6 +4414,7 @@ int main(int argc, char **argv)
UE
->
pdsch_vars
[
subframe
&
0x1
][
eNB_id
]
->
dl_ch_magb1
[
UE
->
dlsch
[
subframe
&
0x1
][
0
][
1
]
->
current_harq_pid
][
round_sic
],
UE
->
pdsch_vars
[
subframe
&
0x1
][
eNB_id
]
->
dl_ch_magb1
[
UE
->
dlsch
[
subframe
&
0x1
][
0
][
1
]
->
current_harq_pid
][
round_sic
],
dlsch0_eNB_harq
->
nb_rb
,
dlsch0_eNB_harq
->
nb_rb
,
subframe
,
subframe
,
get_Qm
(
eNB
->
dlsch
[
0
][
0
]
->
harq_processes
[
0
]
->
mcs
),
dlsch0_eNB_harq
->
rb_alloc
[
0
]);
dlsch0_eNB_harq
->
rb_alloc
[
0
]);
break
;
break
;
}
}
...
...
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