Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openairinterface5G
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Balaji Kolla
openairinterface5G
Commits
ca5ff31f
Commit
ca5ff31f
authored
8 years ago
by
Rohit Gupta
Browse files
Options
Downloads
Patches
Plain Diff
updates to eMBMS. mbmssim and UE channel estimation. will not affect current gitlab CI tests.
parent
4ff17e2b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
openair1/PHY/LTE_ESTIMATION/lte_dl_mbsfn_channel_estimation.c
+5
-5
5 additions, 5 deletions
...air1/PHY/LTE_ESTIMATION/lte_dl_mbsfn_channel_estimation.c
openair1/SIMULATION/LTE_PHY/mbmssim.c
+20
-6
20 additions, 6 deletions
openair1/SIMULATION/LTE_PHY/mbmssim.c
with
25 additions
and
11 deletions
openair1/PHY/LTE_ESTIMATION/lte_dl_mbsfn_channel_estimation.c
+
5
−
5
View file @
ca5ff31f
...
...
@@ -755,26 +755,26 @@ int lte_dl_mbsfn_channel_estimation(PHY_VARS_UE *phy_vars_ue,
if
(
phy_vars_ue
->
lte_ue_common_vars
.
dl_ch_estimates
[
eNB_offset
][
aa
])
{
switch
(
phy_vars_ue
->
lte_frame_parms
.
N_RB_DL
)
{
case
6
:
idft128
((
int16_t
*
)
&
phy_vars_ue
->
lte_ue_common_vars
.
dl_ch_estimates
[
eNB_offset
][
aa
][
LTE_CE_OFFSET
],
idft128
((
int16_t
*
)
&
phy_vars_ue
->
lte_ue_common_vars
.
dl_ch_estimates
[
eNB_offset
][
aa
][
8
],
(
int16_t
*
)
phy_vars_ue
->
lte_ue_common_vars
.
dl_ch_estimates_time
[
eNB_offset
][
aa
],
1
);
break
;
case
25
:
idft512
((
int16_t
*
)
&
phy_vars_ue
->
lte_ue_common_vars
.
dl_ch_estimates
[
eNB_offset
][
aa
][
LTE_CE_OFFSET
],
idft512
((
int16_t
*
)
&
phy_vars_ue
->
lte_ue_common_vars
.
dl_ch_estimates
[
eNB_offset
][
aa
][
8
],
(
int16_t
*
)
phy_vars_ue
->
lte_ue_common_vars
.
dl_ch_estimates_time
[
eNB_offset
][
aa
],
1
);
break
;
case
50
:
idft1024
((
int16_t
*
)
&
phy_vars_ue
->
lte_ue_common_vars
.
dl_ch_estimates
[
eNB_offset
][
aa
][
LTE_CE_OFFSET
],
idft1024
((
int16_t
*
)
&
phy_vars_ue
->
lte_ue_common_vars
.
dl_ch_estimates
[
eNB_offset
][
aa
][
8
],
(
int16_t
*
)
phy_vars_ue
->
lte_ue_common_vars
.
dl_ch_estimates_time
[
eNB_offset
][
aa
],
1
);
break
;
case
75
:
idft1536
((
int16_t
*
)
&
phy_vars_ue
->
lte_ue_common_vars
.
dl_ch_estimates
[
eNB_offset
][
aa
][
LTE_CE_OFFSET
],
idft1536
((
int16_t
*
)
&
phy_vars_ue
->
lte_ue_common_vars
.
dl_ch_estimates
[
eNB_offset
][
aa
][
8
],
(
int16_t
*
)
phy_vars_ue
->
lte_ue_common_vars
.
dl_ch_estimates_time
[
eNB_offset
][
aa
]);
break
;
case
100
:
idft2048
((
int16_t
*
)
&
phy_vars_ue
->
lte_ue_common_vars
.
dl_ch_estimates
[
eNB_offset
][
aa
][
LTE_CE_OFFSET
],
idft2048
((
int16_t
*
)
&
phy_vars_ue
->
lte_ue_common_vars
.
dl_ch_estimates
[
eNB_offset
][
aa
][
8
],
(
int16_t
*
)
phy_vars_ue
->
lte_ue_common_vars
.
dl_ch_estimates_time
[
eNB_offset
][
aa
],
1
);
break
;
...
...
This diff is collapsed.
Click to expand it.
openair1/SIMULATION/LTE_PHY/mbmssim.c
+
20
−
6
View file @
ca5ff31f
...
...
@@ -128,7 +128,7 @@ int main(int argc, char **argv)
char
c
;
int
i
,
l
,
aa
,
aarx
,
k
;
int
i
,
l
,
l2
,
aa
,
aarx
,
k
;
double
sigma2
,
sigma2_dB
=
0
,
SNR
,
snr0
=-
2
.
0
,
snr1
=
0
.
0
;
uint8_t
snr1set
=
0
;
double
snr_step
=
1
,
input_snr_step
=
1
;
...
...
@@ -538,11 +538,25 @@ int main(int argc, char **argv)
}
}
}
rx_pmch
(
PHY_vars_UE
,
0
,
subframe
%
10
,
l
);
if
(
l
==
6
)
for
(
l2
=
2
;
l2
<
7
;
l2
++
)
rx_pmch
(
PHY_vars_UE
,
0
,
subframe
%
10
,
l2
);
if
(
l
==
6
)
for
(
l2
=
2
;
l2
<
7
;
l2
++
)
rx_pmch
(
PHY_vars_UE
,
0
,
subframe
%
10
,
l2
);
if
(
l
==
11
)
for
(
l2
=
7
;
l2
<
12
;
l2
++
)
rx_pmch
(
PHY_vars_UE
,
0
,
subframe
%
10
,
l2
);
}
PHY_vars_UE
->
dlsch_ue_MCH
[
0
]
->
harq_processes
[
0
]
->
G
=
get_G
(
&
PHY_vars_UE
->
lte_frame_parms
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment