This commit is contained in:
Marius Tillner
2026-03-12 00:41:38 +01:00
committed by Marius Tillner
parent e6e867f3be
commit 0ff9984cc7
4 changed files with 4 additions and 4 deletions

View File

@@ -470,7 +470,7 @@ static void rx_rf(RU_t *ru, int *frame, int *slot)
}
stop_meas(&ru->rx_fhaul);
LATSEQ_P("U phy.SOUTHend--phy.fft","::fm%u.sl%u.IQsize%u", *frame, *slot, (samples_per_slot + sf_extension)*sizeof(c16_t));
LATSEQ_P("U phy.SOUTHend--phy.fft","::fm%u.sl%u.IQsize%u", *frame, *slot, samples_per_slot*sizeof(c16_t));
}
static radio_tx_gpio_flag_t get_gpio_flags(RU_t *ru, int slot)

View File

@@ -628,7 +628,7 @@ static int do_one_dlsch(unsigned char *input_ptr, PHY_VARS_gNB *gNB, NR_gNB_DLSC
/// Modulation
start_meas(dlsch_modulation_stats);
nr_modulation(scrambled_output, encoded_length, Qm, (int16_t *)mod_symbs[codeWord]);
LATSEQ_P("D phy.modulated--phy.re_mapped.modulatedsize%u", "::sl%u.qm%u.rnti%u.modulatedsize%u", slot, Qm, rel15->rnti, encoded_length);
LATSEQ_P("D phy.modulated--phy.re_mapped", "::sl%u.qm%u.rnti%u.modulatedsize%u", slot, Qm, rel15->rnti, encoded_length);
stop_meas(dlsch_modulation_stats);
#ifdef DEBUG_DLSCH
printf("PDSCH Modulation: Qm %d(%d)\n", Qm, nb_re);

View File

@@ -1319,7 +1319,7 @@ void post_process_dlsch(gNB_MAC_INST *nr_mac, post_process_pdsch_t *pdsch, NR_UE
lcid,
ndata,
bufEnd-buf-sizeof(NR_MAC_SUBHEADER_LONG));
LATSEQ_P("D mac.handover--mac.subhdr", "::RMbuf%u.fm%u.sl%u.fmretx%u.slretx%u.hqpid%u.rnti%u.DL_BLER%f.10xSNR%u", (char *)buf+sizeof(NR_MAC_SUBHEADER_LONG), frame, slot, frame, slot, current_harq_pid, rnti, sched_ctrl->dl_bler_stats.bler, sched_ctrl->pusch_snrx10);
LATSEQ_P("D mac.handover--mac.subhdr", "::RMbuf%u.fm%u.sl%u.fmretx%u.slretx%u.hqpid%u.rnti%u.1000xDL_BLER%d", (char *)buf+sizeof(NR_MAC_SUBHEADER_LONG), frame, slot, frame, slot, current_harq_pid, rnti, (int32_t)(sched_ctrl->dl_bler_stats.bler * 1000));
if (len == 0)
break;

View File

@@ -499,7 +499,7 @@ static int nr_process_mac_pdu(instance_t module_idP,
LOG_I(NR_MAC, "RNTI %04x LCID %d: ignoring %d bytes\n", UE->rnti, lcid, mac_len);
} else {
UE->mac_stats.ul.lc_bytes[lcid] += mac_len;
LATSEQ_P("U mac.demuxed--rlc.dec", "::fm%u.sl%u.hqpid%u.MRbuf%u.rnti%u.macsdusize%u.UEbuffer%u.10xSNR%u.UL_BLER%f.UE_CSI_RSRP%d", frameP, slot, harq_pid, pduP+mac_subheader_len, UE->rnti, mac_len, sched_ctrl->estimated_ul_buffer - mac_len, sched_ctrl->pusch_snrx10, sched_ctrl->ul_bler_stats.bler, sched_ctrl->CSI_report.ssb_rsrp_report.RSRP);
LATSEQ_P("U mac.demuxed--rlc.dec", "::fm%u.sl%u.hqpid%u.MRbuf%u.rnti%u.macsdusize%u.UEbuffer%u.10xSNR%u.1000xUL_BLER%d.UE_CSI_RSRP%d", frameP, slot, harq_pid, pduP+mac_subheader_len, UE->rnti, mac_len, sched_ctrl->estimated_ul_buffer - mac_len, sched_ctrl->pusch_snrx10, (int32_t)(sched_ctrl->ul_bler_stats.bler * 1000), sched_ctrl->CSI_report.ssb_rsrp_report[0].RSRP);
nr_mac_rlc_data_ind(module_idP, UE->rnti, true, lcid, (char *)(pduP + mac_subheader_len), mac_len);
sdus += 1;