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
4976708f
Commit
4976708f
authored
Apr 16, 2024
by
hsum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "print log for measure UL_DCI time"
This reverts commit
251ebcf6
.
parent
251ebcf6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
9 deletions
+2
-9
nfapi/oai_integration/nfapi_vnf.c
nfapi/oai_integration/nfapi_vnf.c
+0
-2
openair1/PHY/NR_TRANSPORT/nr_dci.c
openair1/PHY/NR_TRANSPORT/nr_dci.c
+1
-6
openair1/SCHED_NR/phy_procedures_nr_gNB.c
openair1/SCHED_NR/phy_procedures_nr_gNB.c
+1
-1
No files found.
nfapi/oai_integration/nfapi_vnf.c
View file @
4976708f
...
...
@@ -1247,8 +1247,6 @@ int trigger_scheduler(nfapi_nr_slot_indication_scf_t *slot_ind)
if
(
g_sched_resp
.
TX_req
.
Number_of_PDUs
>
0
)
oai_nfapi_tx_data_req
(
&
g_sched_resp
.
TX_req
);
if
(
g_sched_resp
.
UL_dci_req
.
numPdus
>
0
)
LOG_I
(
MAC
,
"(%d/%d)oai_nfapi_ul_dci_req
\n
"
,
slot_ind
->
sfn
,
slot_ind
->
slot
);
if
(
g_sched_resp
.
UL_dci_req
.
numPdus
>
0
)
oai_nfapi_ul_dci_req
(
&
g_sched_resp
.
UL_dci_req
);
return
1
;
...
...
openair1/PHY/NR_TRANSPORT/nr_dci.c
View file @
4976708f
...
...
@@ -250,17 +250,12 @@ void nr_generate_dci_top(processingData_L1tx_t *msgTx,
int16_t
amp
,
NR_DL_FRAME_PARMS
*
frame_parms
)
{
LOG_I
(
PHY
,
"num_ul_pdcch: %d
\n
"
,
msgTx
->
num_ul_pdcch
);
LOG_I
(
PHY
,
"num_dl_pdcch: %d
\n
"
,
msgTx
->
num_dl_pdcch
);
for
(
int
i
=
0
;
i
<
msgTx
->
num_ul_pdcch
;
i
++
)
{
nr_generate_dci
(
msgTx
->
gNB
,
&
msgTx
->
ul_pdcch_pdu
[
i
].
pdcch_pdu
.
pdcch_pdu_rel15
,
txdataF
,
amp
,
frame_parms
,
slot
);
LOG_I
(
PHY
,
"(--/%d) [ul_pdcch]nr_generate_dci
\n
"
,
slot
);
msgTx
->
num_ul_pdcch
=
0
;
}
for
(
int
i
=
0
;
i
<
msgTx
->
num_dl_pdcch
;
i
++
)
{
for
(
int
i
=
0
;
i
<
msgTx
->
num_dl_pdcch
;
i
++
)
nr_generate_dci
(
msgTx
->
gNB
,
&
msgTx
->
pdcch_pdu
[
i
].
pdcch_pdu_rel15
,
txdataF
,
amp
,
frame_parms
,
slot
);
LOG_I
(
PHY
,
"(--/%d) [dl_pdcch]nr_generate_dci
\n
"
,
slot
);
}
}
openair1/SCHED_NR/phy_procedures_nr_gNB.c
View file @
4976708f
...
...
@@ -182,7 +182,7 @@ void phy_procedures_gNB_TX(processingData_L1tx_t *msgTx,
gNB
->
Mod_id
,
frame
,
slot
,
msgTx
->
num_ul_pdcch
,
msgTx
->
num_dl_pdcch
);
VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME
(
VCD_SIGNAL_DUMPER_FUNCTIONS_PHY_gNB_PDCCH_TX
,
1
);
LOG_I
(
PHY
,
"(%d/%d)
\n
"
,
frame
,
slot
);
nr_generate_dci_top
(
msgTx
,
slot
,
(
int32_t
*
)
&
gNB
->
common_vars
.
txdataF
[
0
][
txdataF_offset
],
gNB
->
TX_AMP
,
fp
);
VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME
(
VCD_SIGNAL_DUMPER_FUNCTIONS_PHY_gNB_PDCCH_TX
,
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