Commit 4976708f authored by hsum's avatar hsum

Revert "print log for measure UL_DCI time"

This reverts commit 251ebcf6.
parent 251ebcf6
......@@ -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;
......
......@@ -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);
}
}
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment