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
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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-RAN
Commits
4c65aca9
Commit
4c65aca9
authored
Apr 15, 2024
by
hsum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove print log
parent
433cf2ef
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
9 deletions
+0
-9
nfapi/oai_integration/nfapi_vnf.c
nfapi/oai_integration/nfapi_vnf.c
+0
-2
openair1/SCHED_NR/fapi_nr_l1.c
openair1/SCHED_NR/fapi_nr_l1.c
+0
-7
No files found.
nfapi/oai_integration/nfapi_vnf.c
View file @
4c65aca9
...
@@ -1241,8 +1241,6 @@ int trigger_scheduler(nfapi_nr_slot_indication_scf_t *slot_ind)
...
@@ -1241,8 +1241,6 @@ int trigger_scheduler(nfapi_nr_slot_indication_scf_t *slot_ind)
if
(
g_sched_resp
.
DL_req
.
dl_tti_request_body
.
nPDUs
>
0
)
if
(
g_sched_resp
.
DL_req
.
dl_tti_request_body
.
nPDUs
>
0
)
oai_nfapi_dl_tti_req
(
&
g_sched_resp
.
DL_req
);
oai_nfapi_dl_tti_req
(
&
g_sched_resp
.
DL_req
);
if
(
g_sched_resp
.
UL_tti_req
.
n_pdus
>
0
)
LOG_I
(
MAC
,
"(%d/%d) Triggering UL TTI request
\n
"
,
slot_ind
->
sfn
,
slot_ind
->
slot
);
if
(
g_sched_resp
.
UL_tti_req
.
n_pdus
>
0
)
if
(
g_sched_resp
.
UL_tti_req
.
n_pdus
>
0
)
oai_nfapi_ul_tti_req
(
&
g_sched_resp
.
UL_tti_req
);
oai_nfapi_ul_tti_req
(
&
g_sched_resp
.
UL_tti_req
);
...
...
openair1/SCHED_NR/fapi_nr_l1.c
View file @
4c65aca9
...
@@ -137,7 +137,6 @@ void nr_schedule_ul_tti_req(PHY_VARS_gNB *gNB, nfapi_nr_ul_tti_request_t *UL_tti
...
@@ -137,7 +137,6 @@ void nr_schedule_ul_tti_req(PHY_VARS_gNB *gNB, nfapi_nr_ul_tti_request_t *UL_tti
int
slot_type
=
nr_slot_select
(
cfg
,
frame
,
slot
);
int
slot_type
=
nr_slot_select
(
cfg
,
frame
,
slot
);
DevAssert
(
slot_type
==
NR_UPLINK_SLOT
||
slot_type
==
NR_MIXED_SLOT
);
DevAssert
(
slot_type
==
NR_UPLINK_SLOT
||
slot_type
==
NR_MIXED_SLOT
);
LOG_I
(
NR_PHY
,
"UL_tti_req->n_pdus:%d
\n
"
,
UL_tti_req
->
n_pdus
);
for
(
int
i
=
0
;
i
<
UL_tti_req
->
n_pdus
;
i
++
)
{
for
(
int
i
=
0
;
i
<
UL_tti_req
->
n_pdus
;
i
++
)
{
switch
(
UL_tti_req
->
pdus_list
[
i
].
pdu_type
)
{
switch
(
UL_tti_req
->
pdus_list
[
i
].
pdu_type
)
{
case
NFAPI_NR_UL_CONFIG_PUSCH_PDU_TYPE
:
case
NFAPI_NR_UL_CONFIG_PUSCH_PDU_TYPE
:
...
@@ -148,7 +147,6 @@ void nr_schedule_ul_tti_req(PHY_VARS_gNB *gNB, nfapi_nr_ul_tti_request_t *UL_tti
...
@@ -148,7 +147,6 @@ void nr_schedule_ul_tti_req(PHY_VARS_gNB *gNB, nfapi_nr_ul_tti_request_t *UL_tti
UL_tti_req
->
SFN
,
UL_tti_req
->
SFN
,
UL_tti_req
->
Slot
);
UL_tti_req
->
Slot
);
nr_fill_ulsch
(
gNB
,
UL_tti_req
->
SFN
,
UL_tti_req
->
Slot
,
&
UL_tti_req
->
pdus_list
[
i
].
pusch_pdu
);
nr_fill_ulsch
(
gNB
,
UL_tti_req
->
SFN
,
UL_tti_req
->
Slot
,
&
UL_tti_req
->
pdus_list
[
i
].
pusch_pdu
);
LOG_I
(
NR_PHY
,
"(%d/%d)Finish nr_fill_ulsch
\n
"
,
UL_tti_req
->
SFN
,
UL_tti_req
->
Slot
);
break
;
break
;
case
NFAPI_NR_UL_CONFIG_PUCCH_PDU_TYPE
:
case
NFAPI_NR_UL_CONFIG_PUCCH_PDU_TYPE
:
LOG_D
(
NR_PHY
,
LOG_D
(
NR_PHY
,
...
@@ -158,7 +156,6 @@ void nr_schedule_ul_tti_req(PHY_VARS_gNB *gNB, nfapi_nr_ul_tti_request_t *UL_tti
...
@@ -158,7 +156,6 @@ void nr_schedule_ul_tti_req(PHY_VARS_gNB *gNB, nfapi_nr_ul_tti_request_t *UL_tti
UL_tti_req
->
SFN
,
UL_tti_req
->
SFN
,
UL_tti_req
->
Slot
);
UL_tti_req
->
Slot
);
nr_fill_pucch
(
gNB
,
UL_tti_req
->
SFN
,
UL_tti_req
->
Slot
,
&
UL_tti_req
->
pdus_list
[
i
].
pucch_pdu
);
nr_fill_pucch
(
gNB
,
UL_tti_req
->
SFN
,
UL_tti_req
->
Slot
,
&
UL_tti_req
->
pdus_list
[
i
].
pucch_pdu
);
LOG_I
(
NR_PHY
,
"(%d/%d)Finish nr_fill_pucch
\n
"
,
UL_tti_req
->
SFN
,
UL_tti_req
->
Slot
);
break
;
break
;
case
NFAPI_NR_UL_CONFIG_PRACH_PDU_TYPE
:
case
NFAPI_NR_UL_CONFIG_PRACH_PDU_TYPE
:
LOG_D
(
NR_PHY
,
LOG_D
(
NR_PHY
,
...
@@ -169,11 +166,8 @@ void nr_schedule_ul_tti_req(PHY_VARS_gNB *gNB, nfapi_nr_ul_tti_request_t *UL_tti
...
@@ -169,11 +166,8 @@ void nr_schedule_ul_tti_req(PHY_VARS_gNB *gNB, nfapi_nr_ul_tti_request_t *UL_tti
UL_tti_req
->
Slot
);
UL_tti_req
->
Slot
);
nfapi_nr_prach_pdu_t
*
prach_pdu
=
&
UL_tti_req
->
pdus_list
[
i
].
prach_pdu
;
nfapi_nr_prach_pdu_t
*
prach_pdu
=
&
UL_tti_req
->
pdus_list
[
i
].
prach_pdu
;
nr_fill_prach
(
gNB
,
UL_tti_req
->
SFN
,
UL_tti_req
->
Slot
,
prach_pdu
);
nr_fill_prach
(
gNB
,
UL_tti_req
->
SFN
,
UL_tti_req
->
Slot
,
prach_pdu
);
LOG_I
(
NR_PHY
,
"(%d/%d)Finish nr_fill_prach
\n
"
,
UL_tti_req
->
SFN
,
UL_tti_req
->
Slot
);
if
(
gNB
->
RU_list
[
0
]
->
if_south
==
LOCAL_RF
||
gNB
->
RU_list
[
0
]
->
if_south
==
REMOTE_IF5
)
if
(
gNB
->
RU_list
[
0
]
->
if_south
==
LOCAL_RF
||
gNB
->
RU_list
[
0
]
->
if_south
==
REMOTE_IF5
)
nr_fill_prach_ru
(
gNB
->
RU_list
[
0
],
UL_tti_req
->
SFN
,
UL_tti_req
->
Slot
,
prach_pdu
);
nr_fill_prach_ru
(
gNB
->
RU_list
[
0
],
UL_tti_req
->
SFN
,
UL_tti_req
->
Slot
,
prach_pdu
);
if
(
gNB
->
RU_list
[
0
]
->
if_south
==
LOCAL_RF
||
gNB
->
RU_list
[
0
]
->
if_south
==
REMOTE_IF5
)
LOG_I
(
NR_PHY
,
"(%d/%d)Finish nr_fill_prach_ru
\n
"
,
UL_tti_req
->
SFN
,
UL_tti_req
->
Slot
);
break
;
break
;
case
NFAPI_NR_UL_CONFIG_SRS_PDU_TYPE
:
case
NFAPI_NR_UL_CONFIG_SRS_PDU_TYPE
:
LOG_D
(
NR_PHY
,
LOG_D
(
NR_PHY
,
...
@@ -183,7 +177,6 @@ void nr_schedule_ul_tti_req(PHY_VARS_gNB *gNB, nfapi_nr_ul_tti_request_t *UL_tti
...
@@ -183,7 +177,6 @@ void nr_schedule_ul_tti_req(PHY_VARS_gNB *gNB, nfapi_nr_ul_tti_request_t *UL_tti
UL_tti_req
->
SFN
,
UL_tti_req
->
SFN
,
UL_tti_req
->
Slot
);
UL_tti_req
->
Slot
);
nr_fill_srs
(
gNB
,
UL_tti_req
->
SFN
,
UL_tti_req
->
Slot
,
&
UL_tti_req
->
pdus_list
[
i
].
srs_pdu
);
nr_fill_srs
(
gNB
,
UL_tti_req
->
SFN
,
UL_tti_req
->
Slot
,
&
UL_tti_req
->
pdus_list
[
i
].
srs_pdu
);
LOG_I
(
NR_PHY
,
"(%d/%d)Finish nr_fill_srs
\n
"
,
UL_tti_req
->
SFN
,
UL_tti_req
->
Slot
);
break
;
break
;
}
}
}
}
...
...
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