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
8645f677
Commit
8645f677
authored
Feb 08, 2016
by
Florian Kaltenberger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xforms is now a command line option in oaisim and the flag XFORMS can be always enabled
parent
29bef415
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
57 additions
and
38 deletions
+57
-38
targets/SIMU/USER/oaisim.c
targets/SIMU/USER/oaisim.c
+46
-38
targets/SIMU/USER/oaisim_functions.c
targets/SIMU/USER/oaisim_functions.c
+11
-0
No files found.
targets/SIMU/USER/oaisim.c
View file @
8645f677
...
...
@@ -75,9 +75,9 @@
#include "SCHED/defs.h"
#include "SCHED/vars.h"
#ifdef XFORMS
//
#ifdef XFORMS
#include "PHY/TOOLS/lte_phy_scope.h"
#endif
//
#endif
#ifdef SMBV
// Rohde&Schwarz SMBV100A vector signal generator
...
...
@@ -163,9 +163,10 @@ extern uint16_t Nid_cell;
extern
LTE_DL_FRAME_PARMS
*
frame_parms
[
MAX_NUM_CCs
];
#ifdef XFORMS
//
#ifdef XFORMS
int
otg_enabled
;
#endif
int
xforms
=
0
;
//#endif
time_stats_t
oaisim_stats
;
time_stats_t
oaisim_stats_f
;
...
...
@@ -446,17 +447,18 @@ l2l1_task (void *args_p)
char
fname
[
64
],
vname
[
64
];
int
sf
;
protocol_ctxt_t
ctxt
;
#ifdef XFORMS
//
#ifdef XFORMS
// current status is that every UE has a DL scope for a SINGLE eNB (eNB_id=0)
// at eNB 0, an UL scope for every UE
FD_lte_phy_scope_ue
*
form_ue
[
NUMBER_OF_UE_MAX
];
FD_lte_phy_scope_ue
*
form_ue
[
MAX_NUM_CCs
][
NUMBER_OF_UE_MAX
];
FD_lte_phy_scope_enb
*
form_enb
[
NUMBER_OF_UE_MAX
];
char
title
[
255
];
char
xname
[
32
]
=
"oaisim"
;
int
xargc
=
1
;
char
*
xargv
[
1
];
#endif
//
#endif
#define PRINT_STATS
#ifdef PRINT_STATS
int
len
;
FILE
*
UE_stats
[
NUMBER_OF_UE_MAX
];
...
...
@@ -485,31 +487,34 @@ l2l1_task (void *args_p)
PHY_vars_eNB_g
[
eNB_inst
][
CC_id
]
->
proc
[
9
].
frame_tx
=
1
;
}
#ifdef XFORMS
xargv
[
0
]
=
xname
;
fl_initialize
(
&
xargc
,
xargv
,
NULL
,
0
,
0
);
eNB_inst
=
0
;
for
(
UE_inst
=
0
;
UE_inst
<
NB_UE_INST
;
UE_inst
++
)
{
// DL scope at UEs
form_ue
[
UE_inst
]
=
create_lte_phy_scope_ue
();
sprintf
(
title
,
"LTE DL SCOPE eNB %d to UE %d"
,
eNB_inst
,
UE_inst
);
fl_show_form
(
form_ue
[
UE_inst
]
->
lte_phy_scope_ue
,
FL_PLACE_HOTSPOT
,
FL_FULLBORDER
,
title
);
// UL scope at eNB 0
form_enb
[
UE_inst
]
=
create_lte_phy_scope_enb
();
sprintf
(
title
,
"LTE UL SCOPE UE %d to eNB %d"
,
UE_inst
,
eNB_inst
);
fl_show_form
(
form_enb
[
UE_inst
]
->
lte_phy_scope_enb
,
FL_PLACE_HOTSPOT
,
FL_FULLBORDER
,
title
);
if
(
openair_daq_vars
.
use_ia_receiver
==
1
)
{
fl_set_button
(
form_ue
[
UE_inst
]
->
button_0
,
1
);
fl_set_object_label
(
form_ue
[
UE_inst
]
->
button_0
,
"IA Receiver ON"
);
fl_set_object_color
(
form_ue
[
UE_inst
]
->
button_0
,
FL_GREEN
,
FL_GREEN
);
//#ifdef XFORMS
if
(
xforms
==
1
)
{
xargv
[
0
]
=
xname
;
fl_initialize
(
&
xargc
,
xargv
,
NULL
,
0
,
0
);
eNB_inst
=
0
;
for
(
UE_inst
=
0
;
UE_inst
<
NB_UE_INST
;
UE_inst
++
)
{
for
(
CC_id
=
0
;
CC_id
<
MAX_NUM_CCs
;
CC_id
++
)
{
// DL scope at UEs
form_ue
[
CC_id
][
UE_inst
]
=
create_lte_phy_scope_ue
();
sprintf
(
title
,
"LTE DL SCOPE eNB %d to UE %d CC_id %d"
,
eNB_inst
,
UE_inst
,
CC_id
);
fl_show_form
(
form_ue
[
CC_id
][
UE_inst
]
->
lte_phy_scope_ue
,
FL_PLACE_HOTSPOT
,
FL_FULLBORDER
,
title
);
if
(
openair_daq_vars
.
use_ia_receiver
==
1
)
{
fl_set_button
(
form_ue
[
CC_id
][
UE_inst
]
->
button_0
,
1
);
fl_set_object_label
(
form_ue
[
CC_id
][
UE_inst
]
->
button_0
,
"IA Receiver ON"
);
fl_set_object_color
(
form_ue
[
CC_id
][
UE_inst
]
->
button_0
,
FL_GREEN
,
FL_GREEN
);
}
}
// UL scope at eNB 0
form_enb
[
UE_inst
]
=
create_lte_phy_scope_enb
();
sprintf
(
title
,
"LTE UL SCOPE UE %d to eNB %d"
,
UE_inst
,
eNB_inst
);
fl_show_form
(
form_enb
[
UE_inst
]
->
lte_phy_scope_enb
,
FL_PLACE_HOTSPOT
,
FL_FULLBORDER
,
title
);
}
}
#endif
//#endif
#ifdef PRINT_STATS
...
...
@@ -1176,23 +1181,26 @@ l2l1_task (void *args_p)
1
,
1
);
}
#ifdef XFORMS
//#ifdef XFORMS
if
(
xforms
==
1
)
{
eNB_inst
=
0
;
for
(
UE_inst
=
0
;
UE_inst
<
NB_UE_INST
;
UE_inst
++
)
{
phy_scope_UE
(
form_ue
[
UE_inst
],
PHY_vars_UE_g
[
UE_inst
][
0
],
eNB_inst
,
UE_inst
,
7
);
for
(
CC_id
=
0
;
CC_id
<
MAX_NUM_CCs
;
CC_id
++
)
{
phy_scope_UE
(
form_ue
[
CC_id
][
UE_inst
],
PHY_vars_UE_g
[
UE_inst
][
CC_id
],
eNB_inst
,
UE_inst
,
7
);
}
phy_scope_eNB
(
form_enb
[
UE_inst
],
PHY_vars_eNB_g
[
eNB_inst
][
0
],
UE_inst
);
}
#endif
}
//
#endif
#ifdef SMBV
...
...
targets/SIMU/USER/oaisim_functions.c
View file @
8645f677
...
...
@@ -170,6 +170,8 @@ extern pdcp_mbms_t pdcp_mbms_array_eNB[NUMBER_OF_eNB_MAX][maxServiceCount][maxSe
extern
time_stats_t
dl_chan_stats
;
extern
time_stats_t
ul_chan_stats
;
extern
int
xforms
;
void
get_simulation_options
(
int
argc
,
char
*
argv
[])
{
int
option
;
...
...
@@ -206,6 +208,8 @@ void get_simulation_options(int argc, char *argv[])
LONG_OPTION_MALLOC_TRACE_ENABLED
,
LONG_OPTION_CBA_BACKOFF_TIMER
,
LONG_OPTION_XFORMS
,
};
static
struct
option
long_options
[]
=
{
...
...
@@ -237,6 +241,8 @@ void get_simulation_options(int argc, char *argv[])
{
"cba-backoff"
,
required_argument
,
0
,
LONG_OPTION_CBA_BACKOFF_TIMER
},
{
"xforms"
,
no_argument
,
0
,
LONG_OPTION_XFORMS
},
{
NULL
,
0
,
NULL
,
0
}
};
...
...
@@ -396,6 +402,10 @@ void get_simulation_options(int argc, char *argv[])
break
;
#endif
case
LONG_OPTION_XFORMS
:
xforms
=
1
;
break
;
case
'a'
:
abstraction_flag
=
1
;
break
;
...
...
@@ -1280,6 +1290,7 @@ void update_ocm()
#ifdef OPENAIR2
void
update_otg_eNB
(
module_id_t
enb_module_idP
,
unsigned
int
ctime
)
{
#if defined(USER_MODE) && defined(OAI_EMU)
int
rrc_state
=
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