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
7d2d816f
Commit
7d2d816f
authored
Jun 21, 2018
by
lfarizav
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
solving ziggurat bugs
parent
5461757f
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
338 additions
and
54 deletions
+338
-54
openair1/SIMULATION/LTE_PHY/dlsim.c
openair1/SIMULATION/LTE_PHY/dlsim.c
+10
-0
openair1/SIMULATION/TOOLS/rangen_double.c
openair1/SIMULATION/TOOLS/rangen_double.c
+76
-54
openair3/NAS/TOOLS/ue_eurecom_test_sfr.conf
openair3/NAS/TOOLS/ue_eurecom_test_sfr.conf
+252
-0
No files found.
openair1/SIMULATION/LTE_PHY/dlsim.c
View file @
7d2d816f
...
...
@@ -1278,6 +1278,16 @@ int main(int argc, char **argv)
double
snr_step
=
1
,
input_snr_step
=
1
,
snr_int
=
30
;
LTE_DL_FRAME_PARMS
*
frame_parms
;
//frequency domain
double
s_re0_f
[
2048
*
14
],
s_im0_f
[
2048
*
14
],
r_re0_f
[
2048
*
14
],
r_im0_f
[
2048
*
14
];
double
s_re1_f
[
2048
*
14
],
s_im1_f
[
2048
*
14
],
r_re1_f
[
2048
*
14
],
r_im1_f
[
2048
*
14
];
double
*
s_re_f
[
2
]
=
{
s_re0_f
,
s_re1_f
};
double
*
s_im_f
[
2
]
=
{
s_im0_f
,
s_im1_f
};
double
*
r_re_f
[
2
]
=
{
r_re0_f
,
r_re1_f
};
double
*
r_im_f
[
2
]
=
{
r_im0_f
,
r_im1_f
};
//time domain
double
s_re0
[
30720
*
2
],
s_im0
[
30720
*
2
],
r_re0
[
30720
*
2
],
r_im0
[
30720
*
2
];
double
s_re1
[
30720
*
2
],
s_im1
[
30720
*
2
],
r_re1
[
30720
*
2
],
r_im1
[
30720
*
2
];
double
*
s_re
[
2
]
=
{
s_re0
,
s_re1
};
...
...
openair1/SIMULATION/TOOLS/rangen_double.c
View file @
7d2d816f
This diff is collapsed.
Click to expand it.
openair3/NAS/TOOLS/ue_eurecom_test_sfr.conf
View file @
7d2d816f
...
...
@@ -184,3 +184,255 @@ UE2:
# EHPLMN_LIST= ("20811", "20813");
EHPLMN_LIST
= ();
};
UE3
:
{
USER
: {
IMEI
=
"356113022094149"
;
MANUFACTURER
=
"EURECOM"
;
MODEL
=
"LTE Android PC"
;
PIN
=
"0000"
;
};
SIM
: {
MSIN
=
"0100001113"
;
USIM_API_K
=
"8baf473f2f8fd09487cccbd7097c6862"
;
OPC
=
"e734f8734007d6c5ce7a0508809e7e9c"
;
MSISDN
=
"33611123459"
;
};
# Home PLMN Selector with Access Technology
HPLMN
=
"20893"
;
# User controlled PLMN Selector with Access Technology
UCPLMN_LIST
= ();
# Operator PLMN List
OPLMN_LIST
= (
"00101"
,
"20810"
,
"20811"
,
"20813"
,
"20893"
,
"310280"
,
"310028"
);
# Operator controlled PLMN Selector with Access Technology
OCPLMN_LIST
= (
"22210"
,
"21401"
,
"21406"
,
"26202"
,
"26204"
);
# Forbidden plmns
FPLMN_LIST
= ();
# List of Equivalent HPLMNs
#TODO: UE does not connect if set, to be fixed in the UE
# EHPLMN_LIST= ("20811", "20813");
EHPLMN_LIST
= ();
};
UE4
:
{
USER
: {
IMEI
=
"356113022094149"
;
MANUFACTURER
=
"EURECOM"
;
MODEL
=
"LTE Android PC"
;
PIN
=
"0000"
;
};
SIM
: {
MSIN
=
"0100001113"
;
USIM_API_K
=
"8baf473f2f8fd09487cccbd7097c6862"
;
OPC
=
"e734f8734007d6c5ce7a0508809e7e9c"
;
MSISDN
=
"33611123460"
;
};
# Home PLMN Selector with Access Technology
HPLMN
=
"20893"
;
# User controlled PLMN Selector with Access Technology
UCPLMN_LIST
= ();
# Operator PLMN List
OPLMN_LIST
= (
"00101"
,
"20810"
,
"20811"
,
"20813"
,
"20893"
,
"310280"
,
"310028"
);
# Operator controlled PLMN Selector with Access Technology
OCPLMN_LIST
= (
"22210"
,
"21401"
,
"21406"
,
"26202"
,
"26204"
);
# Forbidden plmns
FPLMN_LIST
= ();
# List of Equivalent HPLMNs
#TODO: UE does not connect if set, to be fixed in the UE
# EHPLMN_LIST= ("20811", "20813");
EHPLMN_LIST
= ();
};
UE5
:
{
USER
: {
IMEI
=
"356113022094149"
;
MANUFACTURER
=
"EURECOM"
;
MODEL
=
"LTE Android PC"
;
PIN
=
"0000"
;
};
SIM
: {
MSIN
=
"0100001113"
;
USIM_API_K
=
"8baf473f2f8fd09487cccbd7097c6862"
;
OPC
=
"e734f8734007d6c5ce7a0508809e7e9c"
;
MSISDN
=
"33611123461"
;
};
# Home PLMN Selector with Access Technology
HPLMN
=
"20893"
;
# User controlled PLMN Selector with Access Technology
UCPLMN_LIST
= ();
# Operator PLMN List
OPLMN_LIST
= (
"00101"
,
"20810"
,
"20811"
,
"20813"
,
"20893"
,
"310280"
,
"310028"
);
# Operator controlled PLMN Selector with Access Technology
OCPLMN_LIST
= (
"22210"
,
"21401"
,
"21406"
,
"26202"
,
"26204"
);
# Forbidden plmns
FPLMN_LIST
= ();
# List of Equivalent HPLMNs
#TODO: UE does not connect if set, to be fixed in the UE
# EHPLMN_LIST= ("20811", "20813");
EHPLMN_LIST
= ();
};
UE6
:
{
USER
: {
IMEI
=
"356113022094149"
;
MANUFACTURER
=
"EURECOM"
;
MODEL
=
"LTE Android PC"
;
PIN
=
"0000"
;
};
SIM
: {
MSIN
=
"0100001113"
;
USIM_API_K
=
"8baf473f2f8fd09487cccbd7097c6862"
;
OPC
=
"e734f8734007d6c5ce7a0508809e7e9c"
;
MSISDN
=
"33611123462"
;
};
# Home PLMN Selector with Access Technology
HPLMN
=
"20893"
;
# User controlled PLMN Selector with Access Technology
UCPLMN_LIST
= ();
# Operator PLMN List
OPLMN_LIST
= (
"00101"
,
"20810"
,
"20811"
,
"20813"
,
"20893"
,
"310280"
,
"310028"
);
# Operator controlled PLMN Selector with Access Technology
OCPLMN_LIST
= (
"22210"
,
"21401"
,
"21406"
,
"26202"
,
"26204"
);
# Forbidden plmns
FPLMN_LIST
= ();
# List of Equivalent HPLMNs
#TODO: UE does not connect if set, to be fixed in the UE
# EHPLMN_LIST= ("20811", "20813");
EHPLMN_LIST
= ();
};
UE7
:
{
USER
: {
IMEI
=
"356113022094149"
;
MANUFACTURER
=
"EURECOM"
;
MODEL
=
"LTE Android PC"
;
PIN
=
"0000"
;
};
SIM
: {
MSIN
=
"0100001113"
;
USIM_API_K
=
"8baf473f2f8fd09487cccbd7097c6862"
;
OPC
=
"e734f8734007d6c5ce7a0508809e7e9c"
;
MSISDN
=
"33611123463"
;
};
# Home PLMN Selector with Access Technology
HPLMN
=
"20893"
;
# User controlled PLMN Selector with Access Technology
UCPLMN_LIST
= ();
# Operator PLMN List
OPLMN_LIST
= (
"00101"
,
"20810"
,
"20811"
,
"20813"
,
"20893"
,
"310280"
,
"310028"
);
# Operator controlled PLMN Selector with Access Technology
OCPLMN_LIST
= (
"22210"
,
"21401"
,
"21406"
,
"26202"
,
"26204"
);
# Forbidden plmns
FPLMN_LIST
= ();
# List of Equivalent HPLMNs
#TODO: UE does not connect if set, to be fixed in the UE
# EHPLMN_LIST= ("20811", "20813");
EHPLMN_LIST
= ();
};
UE8
:
{
USER
: {
IMEI
=
"356113022094149"
;
MANUFACTURER
=
"EURECOM"
;
MODEL
=
"LTE Android PC"
;
PIN
=
"0000"
;
};
SIM
: {
MSIN
=
"0100001113"
;
USIM_API_K
=
"8baf473f2f8fd09487cccbd7097c6862"
;
OPC
=
"e734f8734007d6c5ce7a0508809e7e9c"
;
MSISDN
=
"33611123464"
;
};
# Home PLMN Selector with Access Technology
HPLMN
=
"20893"
;
# User controlled PLMN Selector with Access Technology
UCPLMN_LIST
= ();
# Operator PLMN List
OPLMN_LIST
= (
"00101"
,
"20810"
,
"20811"
,
"20813"
,
"20893"
,
"310280"
,
"310028"
);
# Operator controlled PLMN Selector with Access Technology
OCPLMN_LIST
= (
"22210"
,
"21401"
,
"21406"
,
"26202"
,
"26204"
);
# Forbidden plmns
FPLMN_LIST
= ();
# List of Equivalent HPLMNs
#TODO: UE does not connect if set, to be fixed in the UE
# EHPLMN_LIST= ("20811", "20813");
EHPLMN_LIST
= ();
};
UE9
:
{
USER
: {
IMEI
=
"356113022094149"
;
MANUFACTURER
=
"EURECOM"
;
MODEL
=
"LTE Android PC"
;
PIN
=
"0000"
;
};
SIM
: {
MSIN
=
"0100001113"
;
USIM_API_K
=
"8baf473f2f8fd09487cccbd7097c6862"
;
OPC
=
"e734f8734007d6c5ce7a0508809e7e9c"
;
MSISDN
=
"33611123465"
;
};
# Home PLMN Selector with Access Technology
HPLMN
=
"20893"
;
# User controlled PLMN Selector with Access Technology
UCPLMN_LIST
= ();
# Operator PLMN List
OPLMN_LIST
= (
"00101"
,
"20810"
,
"20811"
,
"20813"
,
"20893"
,
"310280"
,
"310028"
);
# Operator controlled PLMN Selector with Access Technology
OCPLMN_LIST
= (
"22210"
,
"21401"
,
"21406"
,
"26202"
,
"26204"
);
# Forbidden plmns
FPLMN_LIST
= ();
# List of Equivalent HPLMNs
#TODO: UE does not connect if set, to be fixed in the UE
# EHPLMN_LIST= ("20811", "20813");
EHPLMN_LIST
= ();
};
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