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
canghaiwuhen
OpenXG-RAN
Commits
2aaca349
Commit
2aaca349
authored
Aug 04, 2017
by
Theoni Magounaki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
init ue spec pilots
parent
4f535eec
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
6 deletions
+10
-6
openair1/PHY/INIT/lte_init.c
openair1/PHY/INIT/lte_init.c
+3
-0
openair1/PHY/LTE_TRANSPORT/dlsch_demodulation.c
openair1/PHY/LTE_TRANSPORT/dlsch_demodulation.c
+1
-1
openair1/SIMULATION/LTE_PHY/dlsim.c
openair1/SIMULATION/LTE_PHY/dlsim.c
+6
-5
No files found.
openair1/PHY/INIT/lte_init.c
View file @
2aaca349
...
...
@@ -1638,6 +1638,9 @@ int phy_init_lte_eNB(PHY_VARS_eNB *eNB,
init_prach_tables
(
839
);
}
// node_function != NGFI_RRU_IF4p5
/*init the ue spec reference sequence for TM8/9*/
lte_gold_ue_spec
(
fp
,
eNB
->
lte_gold_uespec_table
,
eNB
->
frame_parms
.
Nid_cell
,
NULL
);
return
(
0
);
}
openair1/PHY/LTE_TRANSPORT/dlsch_demodulation.c
View file @
2aaca349
...
...
@@ -29,7 +29,7 @@
* \note
* \warning
*/
//
#include "PHY/defs.h"
#include "PHY/defs.h"
#include "PHY/extern.h"
#include "SCHED/defs.h"
#include "defs.h"
...
...
openair1/SIMULATION/LTE_PHY/dlsim.c
View file @
2aaca349
...
...
@@ -539,7 +539,7 @@ void fill_DCI(PHY_VARS_eNB *eNB,
printf
(
"Generating dlsch params for user %d
\n
"
,
k
);
generate_eNB_dlsch_params_from_dci
(
0
,
subframe
,
subframe
,
&
DLSCH_alloc_pdu_1
[
0
],
SI_RNTI
,
format1A
,
...
...
@@ -550,7 +550,7 @@ void fill_DCI(PHY_VARS_eNB *eNB,
0
,
P_RNTI
,
eNB
->
UE_stats
[
0
].
DL_pmi_single
,
transmission_mode
>=
7
?
transmission_mode
:
0
);
transmission_mode
>=
7
?
transmission_mode
:
0
);
*
num_common_dci
=*
num_common_dci
+
1
;
*
num_dci
=
*
num_dci
+
1
;
...
...
@@ -1669,12 +1669,13 @@ int main(int argc, char **argv)
(
transmission_mode
!=
4
)
&&
(
transmission_mode
!=
5
)
&&
(
transmission_mode
!=
6
)
&&
(
transmission_mode
!=
7
))
{
(
transmission_mode
!=
7
)
&&
(
transmission_mode
!=
8
))
{
msg
(
"Unsupported transmission mode %d
\n
"
,
transmission_mode
);
exit
(
-
1
);
}
if
(
transmission_mode
>
1
&&
transmission_mode
<
7
)
{
if
(
transmission_mode
>
1
&&
transmission_mode
<
8
)
{
n_tx_port
=
2
;
}
...
...
@@ -1684,7 +1685,7 @@ int main(int argc, char **argv)
n_tx_phy
=
atoi
(
optarg
);
if
(
n_tx_phy
<
n_tx_port
)
{
msg
(
"n_tx_phy mus
h
not be smaller than n_tx_port"
);
msg
(
"n_tx_phy mus
t
not be smaller than n_tx_port"
);
exit
(
-
1
);
}
...
...
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