Commit 5111eafd authored by Nick Ho's avatar Nick Ho

confirm RAR PDU content

parent 75f0c3a8
......@@ -317,7 +317,7 @@ int generate_eNB_dlsch_params_from_dci_NB_IoT(PHY_VARS_eNB *eNB,
DCI_tmp = (uint8_t*)DLSCH_DCI_NB_IoT;
int tmp = 0;
printf("DCI PDU content\n");
printf("DCI PDU content:");
for (tmp =0;tmp<3;tmp++)
printf("%02x ",DCI_tmp[tmp]);
printf("\n");
......
......@@ -207,6 +207,15 @@ void handle_nfapi_dlsch_pdu_NB_IoT(PHY_VARS_eNB *eNB,
eNB->ndlsch_RAR->harq_process->TBS = rel13->length;
eNB->ndlsch_RAR->harq_process->pdu = sdu;
printf("RAR PDU content:");
int fori = 0;
for(fori=0;fori<7;fori++)
{
printf("%02x ",eNB->ndlsch_RAR->harq_process->pdu[fori]);
}
printf("\n");
eNB->ndlsch_RAR->npdsch_start_symbol = rel13->start_symbol;
eNB->ndlsch_RAR->active = 1;
......
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