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
3cc18378
Commit
3cc18378
authored
Mar 24, 2017
by
Cedric Roux
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bugfix/compilation warning removal in ulsim
parent
9ebd48f1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
4 deletions
+7
-4
openair1/SIMULATION/LTE_PHY/ulsim.c
openair1/SIMULATION/LTE_PHY/ulsim.c
+7
-4
No files found.
openair1/SIMULATION/LTE_PHY/ulsim.c
View file @
3cc18378
...
...
@@ -163,8 +163,8 @@ void fill_ulsch_dci(PHY_VARS_eNB *eNB,void *UL_dci,int first_rb,int nb_rb,int mc
}
extern
void
eNB_fep_full
(
PHY_VARS_eNB
*
eNB
);
extern
void
eNB_fep_full_2thread
(
PHY_VARS_eNB
*
eNB
);
extern
void
eNB_fep_full
(
PHY_VARS_eNB
*
eNB
,
eNB_rxtx_proc_t
*
proc
);
extern
void
eNB_fep_full_2thread
(
PHY_VARS_eNB
*
eNB
,
eNB_rxtx_proc_t
*
proc
);
int
main
(
int
argc
,
char
**
argv
)
{
...
...
@@ -196,7 +196,7 @@ int main(int argc, char **argv)
int
chMod
=
0
;
int
UE_id
=
0
;
unsigned
char
nb_rb
=
25
,
first_rb
=
0
,
mcs
=
0
,
round
=
0
,
bundling_flag
=
1
;
unsigned
char
l
;
//
unsigned char l;
unsigned
char
awgn_flag
=
0
;
SCM_t
channel_model
=
Rice1
;
...
...
@@ -245,7 +245,7 @@ int main(int argc, char **argv)
int
hold_channel
=
0
;
channel_desc_t
*
UE2eNB
;
uint8_t
control_only_flag
=
0
;
//
uint8_t control_only_flag = 0;
int
delay
=
0
;
double
maxDoppler
=
0
.
0
;
uint8_t
srs_flag
=
0
;
...
...
@@ -677,6 +677,8 @@ int main(int argc, char **argv)
UE
->
ulsch
[
0
]
=
new_ue_ulsch
(
N_RB_DL
,
0
);
if
(
parallel_flag
==
1
)
{
extern
void
init_fep_thread
(
PHY_VARS_eNB
*
,
pthread_attr_t
*
);
extern
void
init_td_thread
(
PHY_VARS_eNB
*
,
pthread_attr_t
*
);
init_fep_thread
(
eNB
,
NULL
);
init_td_thread
(
eNB
,
NULL
);
}
...
...
@@ -843,6 +845,7 @@ int main(int argc, char **argv)
while
(
!
feof
(
input_fdUL
))
{
ret
=
fscanf
(
input_fdUL
,
"%s %s"
,
input_val_str
,
input_val_str2
);
//&input_val1,&input_val2);
if
(
ret
!=
2
)
printf
(
"ERROR: error reading file
\n
"
);
if
((
i
%
4
)
==
0
)
{
((
short
*
)
txdata
[
0
])[
i
/
2
]
=
(
short
)((
1
<<
15
)
*
strtod
(
input_val_str
,
NULL
));
...
...
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