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
OpenXG
OpenXG UE
Commits
d0f15684
Commit
d0f15684
authored
Jun 04, 2021
by
Raymond Knopp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed warnings in oaiori.c
parent
21c89a6c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
targets/ARCH/AW2SORI/oaiori.c
targets/ARCH/AW2SORI/oaiori.c
+6
-4
No files found.
targets/ARCH/AW2SORI/oaiori.c
View file @
d0f15684
...
...
@@ -28,6 +28,7 @@
#include "ori.h"
#include "targets/ARCH/COMMON/common_lib.h"
typedef
struct
eutra_bandentry_s
{
int16_t
band
;
...
...
@@ -210,6 +211,7 @@ int aw2s_oricleanup(openair0_device *device) {
ORI_Disconnect
(
ori
);
ORI_Free
(
ori
);
return
(
0
);
}
int
aw2s_startstreaming
(
openair0_device
*
device
)
{
...
...
@@ -217,7 +219,6 @@ int aw2s_startstreaming(openair0_device *device) {
ORI_s
*
ori
=
(
ORI_s
*
)
device
->
thirdparty_priv
;
ORI_Result_e
result
;
ORI_Result_e
RE_result
;
char
c
;
openair0_config_t
*
openair0_cfg
=
device
->
openair0_cfg
;
...
...
@@ -326,7 +327,7 @@ int aw2s_startstreaming(openair0_device *device) {
int
Npackets
=
1024000
;
for
(
i
=
0
;
i
<
Npackets
;
i
++
)
{
device
->
trx_read_func2
(
device
,
&
TS
,
(
openair0_timestamp
*
)
&
TS
,
(
void
*
)
temp_rx
,
256
,
&
aid
);
...
...
@@ -347,13 +348,12 @@ int aw2s_oriinit(openair0_device *device) {
ORI_s
*
ori
;
ORI_Result_e
result
;
ORI_Result_e
RE_result
;
char
c
;
ORI_Object_s
*
objects
[
100
];
uint32_t
numObjects
;
uint32_t
i
;
eth_state_t
*
eth
=
(
eth_state_t
*
)
device
->
priv
;
eth_params_t
*
eth_params
=
device
->
eth_params
;
openair0_config_t
*
openair0_cfg
=
device
->
openair0_cfg
;
...
...
@@ -707,4 +707,6 @@ int transport_init(openair0_device *device, openair0_config_t *openair0_cfg, eth
device
->
thirdparty_init
=
aw2s_oriinit
;
device
->
thirdparty_cleanup
=
aw2s_oricleanup
;
device
->
thirdparty_startstreaming
=
aw2s_startstreaming
;
return
(
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