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
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
Qingqing Huang
openairinterface5G
Commits
1de3183d
Commit
1de3183d
authored
9 years ago
by
Aikaterini Trilyraki
Browse files
Options
Downloads
Patches
Plain Diff
fix for RRH compilation
parent
f3c7d753
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
targets/RT/USER/eNB_transport_IQ.c
+7
-3
7 additions, 3 deletions
targets/RT/USER/eNB_transport_IQ.c
targets/RT/USER/rrh_gw.c
+11
-4
11 additions, 4 deletions
targets/RT/USER/rrh_gw.c
targets/RT/USER/rrh_gw_externs.h
+1
-0
1 addition, 0 deletions
targets/RT/USER/rrh_gw_externs.h
with
19 additions
and
7 deletions
targets/RT/USER/eNB_transport_IQ.c
+
7
−
3
View file @
1de3183d
...
...
@@ -147,18 +147,22 @@ void config_BBU_mod( rrh_module_t *mod_enb, uint8_t RT_flag, uint8_t NRT_flag) {
mod_enb
->
devs
->
openair0_cfg
=
mod_enb
->
eth_dev
.
openair0_cfg
;
/* check sanity of configuration parameters and print */
check_dev_config
(
mod_enb
);
check_dev_config
(
mod_enb
);
if
(
rf_config_file
[
0
]
==
'\0'
)
mod_enb
->
devs
->
openair0_cfg
->
configFilename
=
NULL
;
else
mod_enb
->
devs
->
openair0_cfg
->
configFilename
=
rf_config_file
;
/* initialize and configure the RF device */
if
(
openair0_device_load
(
mod_enb
->
devs
,
mod_enb
->
devs
->
openair0_cfg
)
<
0
)
{
LOG_E
(
RRH
,
"Exiting, cannot initialize RF device.
\n
"
);
exit
(
-
1
);
}
else
{
}
else
{
if
(
mod_enb
->
devs
->
type
!=
NONE_DEV
)
{
/* start RF device */
if
(
mod_enb
->
devs
->
type
==
EXMIMO_DEV
)
{
//call start function for exmino
}
else
{
if
(
mod_enb
->
devs
->
trx_start_func
(
mod_enb
->
devs
)
!=
0
)
LOG_E
(
RRH
,
"Unable to initiate RF device.
\n
"
);
else
...
...
This diff is collapsed.
Click to expand it.
targets/RT/USER/rrh_gw.c
+
11
−
4
View file @
1de3183d
...
...
@@ -111,8 +111,7 @@ rrh_module_t *ue_array;
openair0_vtimestamp
hw_counter
=
0
;
char
rf_config_file
[
1024
];
static
void
debug_init
(
void
);
static
void
get_options
(
int
argc
,
char
*
argv
[]);
...
...
@@ -143,7 +142,7 @@ static int get_address(char* if_name, uint8_t flag);
int
main
(
int
argc
,
char
**
argv
)
{
unsigned
int
i
;
rf_config_file
[
0
]
=
'\0'
;
/* parse input arguments */
get_options
(
argc
,
argv
);
/* initialize logger and signal analyzer */
...
...
@@ -257,7 +256,7 @@ static void get_options(int argc, char *argv[]) {
int
opt
;
while
((
opt
=
getopt
(
argc
,
argv
,
"xvhlte:n:u:g:r:m:i:"
))
!=
-
1
)
{
while
((
opt
=
getopt
(
argc
,
argv
,
"xvhlte:n:u:g:r:m:i:
f:
"
))
!=
-
1
)
{
switch
(
opt
)
{
case
'n'
:
...
...
@@ -299,6 +298,14 @@ static void get_options(int argc, char *argv[]) {
/*In loopback mode rrh sends back to bbu what it receives*/
loopback_flag
=
1
;
break
;
case
'f'
:
if
(
strlen
(
optarg
)
<=
1024
)
strcpy
(
rf_config_file
,
optarg
);
else
{
printf
(
"Configuration filename is too long
\n
"
);
exit
(
-
1
);
}
break
;
case
't'
:
/* When measurements are enabled statistics related to TX/RX time are printed */
measurements_flag
=
1
;
...
...
This diff is collapsed.
Click to expand it.
targets/RT/USER/rrh_gw_externs.h
+
1
−
0
View file @
1de3183d
...
...
@@ -39,6 +39,7 @@
#ifndef RRH_GW_EXTERNS_H_
#define RRH_GW_EXTERNS_H_
extern
char
rf_config_file
[
1024
];
extern
openair0_timestamp
timestamp_UE_tx
[
4
]
,
timestamp_UE_rx
[
4
]
,
timestamp_eNB_rx
[
4
],
timestamp_eNB_tx
[
4
];
extern
openair0_vtimestamp
hw_counter
;
...
...
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