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
spbro
OpenXG-RAN
Commits
24c8e6c5
Commit
24c8e6c5
authored
Sep 27, 2024
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove aerial_phy_sync_indication(): this is a 4G callback
parent
3b4df110
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
17 deletions
+1
-17
nfapi/oai_integration/aerial/fapi_vnf_p5.c
nfapi/oai_integration/aerial/fapi_vnf_p5.c
+1
-1
nfapi/oai_integration/aerial/fapi_vnf_p7.c
nfapi/oai_integration/aerial/fapi_vnf_p7.c
+0
-15
nfapi/oai_integration/aerial/fapi_vnf_p7.h
nfapi/oai_integration/aerial/fapi_vnf_p7.h
+0
-1
No files found.
nfapi/oai_integration/aerial/fapi_vnf_p5.c
View file @
24c8e6c5
...
...
@@ -53,7 +53,7 @@ void *aerial_vnf_nr_p7_config_init(void *ptr)
init_queue
(
&
gnb_slot_ind_queue
);
p7_vnf
->
config
->
port
=
p7_vnf
->
local_port
;
p7_vnf
->
config
->
sync_indication
=
&
aerial_phy_sync_indication
;
p7_vnf
->
config
->
sync_indication
=
NULL
;
p7_vnf
->
config
->
slot_indication
=
NULL
;
p7_vnf
->
config
->
harq_indication
=
&
aerial_phy_harq_indication
;
p7_vnf
->
config
->
nr_crc_indication
=
&
aerial_phy_nr_crc_indication
;
...
...
nfapi/oai_integration/aerial/fapi_vnf_p7.c
View file @
24c8e6c5
...
...
@@ -136,21 +136,6 @@ extern pthread_cond_t nfapi_sync_cond;
extern
pthread_mutex_t
nfapi_sync_mutex
;
extern
int
nfapi_sync_var
;
int
aerial_phy_sync_indication
(
struct
nfapi_vnf_p7_config
*
config
,
uint8_t
sync
)
{
// NFAPI_TRACE(NFAPI_TRACE_INFO, "[VNF] SYNC %s\n", sync==1 ? "ACHIEVED" : "LOST");
if
(
sync
==
1
&&
nfapi_sync_var
!=
0
)
{
NFAPI_TRACE
(
NFAPI_TRACE_INFO
,
"[VNF] Signal to OAI main code that it can go
\n
"
);
pthread_mutex_lock
(
&
nfapi_sync_mutex
);
nfapi_sync_var
=
0
;
pthread_cond_broadcast
(
&
nfapi_sync_cond
);
pthread_mutex_unlock
(
&
nfapi_sync_mutex
);
}
return
(
0
);
}
int
aerial_phy_harq_indication
(
struct
nfapi_vnf_p7_config
*
config
,
nfapi_harq_indication_t
*
ind
)
{
struct
PHY_VARS_eNB_s
*
eNB
=
RC
.
eNB
[
0
][
0
];
...
...
nfapi/oai_integration/aerial/fapi_vnf_p7.h
View file @
24c8e6c5
...
...
@@ -180,7 +180,6 @@ typedef struct {
}
vnf_info
;
int
aerial_phy_sync_indication
(
struct
nfapi_vnf_p7_config
*
config
,
uint8_t
sync
);
int
aerial_phy_harq_indication
(
struct
nfapi_vnf_p7_config
*
config
,
nfapi_harq_indication_t
*
ind
);
int
aerial_phy_nr_crc_indication
(
nfapi_nr_crc_indication_t
*
ind
);
int
aerial_phy_nr_rx_data_indication
(
nfapi_nr_rx_data_indication_t
*
ind
);
...
...
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