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
Michael Black
OpenXG-RAN
Commits
a33a3ead
Commit
a33a3ead
authored
Jan 25, 2017
by
Elena_Lukashova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.Fixing the bug in lte_ue_measuments.c for rank indicator.
2. Fixing the arguments in the dump_dlsch2.
parent
3e81e8c8
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
398 additions
and
398 deletions
+398
-398
openair1/PHY/LTE_ESTIMATION/lte_ue_measurements.c
openair1/PHY/LTE_ESTIMATION/lte_ue_measurements.c
+17
-17
openair1/SCHED/defs.h
openair1/SCHED/defs.h
+2
-2
openair1/SIMULATION/LTE_PHY/dlsim_tm4.c
openair1/SIMULATION/LTE_PHY/dlsim_tm4.c
+379
-379
No files found.
openair1/PHY/LTE_ESTIMATION/lte_ue_measurements.c
View file @
a33a3ead
...
...
@@ -719,7 +719,7 @@ void lte_ue_measurements(PHY_VARS_UE *ue,
}
}
ue
->
measurements
.
rank
[
eNB_id
]
=
0
;
//
ue->measurements.rank[eNB_id] = 0;
for
(
i
=
0
;
i
<
nb_subbands
;
i
++
)
{
ue
->
measurements
.
selected_rx_antennas
[
eNB_id
][
i
]
=
0
;
...
...
openair1/SCHED/defs.h
View file @
a33a3ead
...
...
@@ -477,7 +477,7 @@ int get_ue_active_harq_pid(uint8_t Mod_id,uint8_t CC_id,uint16_t rnti,int frame,
void
dump_dlsch
(
PHY_VARS_UE
*
phy_vars_ue
,
UE_rxtx_proc_t
*
proc
,
uint8_t
eNB_id
,
uint8_t
subframe
,
uint8_t
harq_pid
);
void
dump_dlsch_SI
(
PHY_VARS_UE
*
phy_vars_ue
,
UE_rxtx_proc_t
*
proc
,
uint8_t
eNB_id
,
uint8_t
subframe
);
void
dump_dlsch_ra
(
PHY_VARS_UE
*
phy_vars_ue
,
UE_rxtx_proc_t
*
proc
,
uint8_t
eNB_id
,
uint8_t
subframe
);
void
dump_dlsch2
(
PHY_VARS_UE
*
phy_vars_ue
,
uint8_t
eNB_id
,
uint16_t
coded_bits_per_codeword
,
int
round
);
void
dump_dlsch2
(
PHY_VARS_UE
*
phy_vars_ue
,
uint8_t
eNB_id
,
uint16_t
coded_bits_per_codeword
,
int
round
,
unsigned
char
harq_pid
);
/*@}*/
...
...
openair1/SIMULATION/LTE_PHY/dlsim_tm4.c
View file @
a33a3ead
...
...
@@ -3914,7 +3914,7 @@ n(tikz_fname,"w");
}
if
(
n_frames
==
2
)
{
if
(
n_frames
==
1
)
{
//if ((n_frames==1) || (SNR>=30)) {
printf
(
"cw %d, round %d: DLSCH errors found, uncoded ber %f
\n
"
,
cw_non_sic
,
round
,
uncoded_ber
);
#ifdef PRINT_BYTES
...
...
@@ -3938,7 +3938,7 @@ n(tikz_fname,"w");
stop_meas
(
&
UE
->
phy_proc_rx
);
if
(
n_frames
==
2
)
{
if
(
n_frames
==
1
)
{
//rxsig
sprintf
(
fname
,
"rxsig0_r%d.m"
,
round
);
...
...
@@ -3998,7 +3998,7 @@ n(tikz_fname,"w");
UE
->
frame_parms
.
ofdm_symbol_size
*
nsymb
,
1
,
1
);
}
//pdsch_vars
//
dump_dlsch2(UE,eNB_id,coded_bits_per_codeword[0],round,UE->dlsch[0][0]->current_harq_pid);
dump_dlsch2
(
UE
,
eNB_id
,
coded_bits_per_codeword
[
0
],
round
,
UE
->
dlsch
[
0
][
0
]
->
current_harq_pid
);
/*
write_output("dlsch_e.m","e",eNB->dlsch[0][0]->harq_processes[0]->e,coded_bits_per_codeword,1,4);
write_output("dlsch_ber_bit.m","ber_bit",uncoded_ber_bit,coded_bits_per_codeword,1,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