Commit 616481b1 authored by francescomani's avatar francescomani

fix for ulsch missed detection using ndi

parent cd57c618
...@@ -368,7 +368,7 @@ void nr_processULSegment(void* arg) { ...@@ -368,7 +368,7 @@ void nr_processULSegment(void* arg) {
ulsch_harq->e[r], ulsch_harq->e[r],
ulsch_harq->C, ulsch_harq->C,
rv_index, rv_index,
(ulsch_harq->round==0)?1:0, ulsch_harq->new_rx,
E, E,
ulsch_harq->F, ulsch_harq->F,
Kr-ulsch_harq->F-2*(p_decoderParms->Z))==-1) { Kr-ulsch_harq->F-2*(p_decoderParms->Z))==-1) {
...@@ -507,12 +507,19 @@ uint32_t nr_ulsch_decoding(PHY_VARS_gNB *phy_vars_gNB, ...@@ -507,12 +507,19 @@ uint32_t nr_ulsch_decoding(PHY_VARS_gNB *phy_vars_gNB,
harq_process->TBS = pusch_pdu->pusch_data.tb_size; harq_process->TBS = pusch_pdu->pusch_data.tb_size;
harq_process->round = nr_rv_round_map[pusch_pdu->pusch_data.rv_index]; harq_process->round = nr_rv_round_map[pusch_pdu->pusch_data.rv_index];
// If the first detected transmission starts with RV 2 it would never decode. So we needed a way to set the round to 0 harq_process->new_rx = false; // flag to indicate if this is a new reception for this harq (initialized to false)
if( (pusch_pdu->pusch_data.rv_index==0) && (harq_process->round!=0) ) { if (harq_process->round == 0) {
LOG_E(NR_PHY, "Mismatch between harq round %i and rv_index %i\n", harq_process->round, pusch_pdu->pusch_data.rv_index); harq_process->new_rx = true;
harq_process->round = 0; harq_process->ndi = pusch_pdu->pusch_data.new_data_indicator;
} }
// this happens if there was a DTX in round 0
if (harq_process->ndi != pusch_pdu->pusch_data.new_data_indicator) {
harq_process->new_rx = true;
harq_process->ndi = pusch_pdu->pusch_data.new_data_indicator;
LOG_E(PHY,"Missed ULSCH detection. NDI toggled but rv %d does not correspond to first reception\n",pusch_pdu->pusch_data.rv_index);
}
A = (harq_process->TBS)<<3; A = (harq_process->TBS)<<3;
LOG_D(PHY,"ULSCH Decoding, harq_pid %d TBS %d G %d mcs %d Nl %d nb_rb %d, Qm %d, n_layers %d, Coderate %d\n",harq_pid,A,G, mcs, n_layers, nb_rb, Qm, n_layers, R); LOG_D(PHY,"ULSCH Decoding, harq_pid %d TBS %d G %d mcs %d Nl %d nb_rb %d, Qm %d, n_layers %d, Coderate %d\n",harq_pid,A,G, mcs, n_layers, nb_rb, Qm, n_layers, R);
...@@ -568,7 +575,7 @@ uint32_t nr_ulsch_decoding(PHY_VARS_gNB *phy_vars_gNB, ...@@ -568,7 +575,7 @@ uint32_t nr_ulsch_decoding(PHY_VARS_gNB *phy_vars_gNB,
stats->power[aarx]=dB_fixed_x10(pusch->ulsch_power[aarx]); stats->power[aarx]=dB_fixed_x10(pusch->ulsch_power[aarx]);
stats->noise_power[aarx]=dB_fixed_x10(pusch->ulsch_noise_power[aarx]); stats->noise_power[aarx]=dB_fixed_x10(pusch->ulsch_noise_power[aarx]);
} }
if (harq_process->round == 0) { if (harq_process->new_rx == 0) {
stats->current_Qm = Qm; stats->current_Qm = Qm;
stats->current_RI = n_layers; stats->current_RI = n_layers;
stats->total_bytes_tx += harq_process->TBS; stats->total_bytes_tx += harq_process->TBS;
......
...@@ -251,6 +251,8 @@ typedef struct { ...@@ -251,6 +251,8 @@ typedef struct {
uint32_t slot; uint32_t slot;
/// Index of current HARQ round for this DLSCH /// Index of current HARQ round for this DLSCH
uint8_t round; uint8_t round;
uint8_t ndi;
bool new_rx;
/// Last TPC command /// Last TPC command
uint8_t TPC; uint8_t TPC;
/// MIMO mode for this DLSCH /// MIMO mode for this DLSCH
......
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