diff --git a/executables/nr-ue.c b/executables/nr-ue.c index 8b022adc62e16bd5f940cd2f688484007c7323af..c27477388049bf14f9cd0b2caadcc3bae492dd4c 100644 --- a/executables/nr-ue.c +++ b/executables/nr-ue.c @@ -798,10 +798,10 @@ void syncInFrame(PHY_VARS_NR_UE *UE, openair0_timestamp *timestamp) { int computeSamplesShift(PHY_VARS_NR_UE *UE) { int samples_shift = -(UE->rx_offset>>1); - UE->rx_offset = 0; // reset so that it is not applied falsely in case of SSB being only in every second frame - UE->max_pos_fil = 0; // reset IIR filter when sample shift is applied if (samples_shift != 0) { LOG_I(NR_PHY,"Adjusting frame in time by %i samples\n", samples_shift); + UE->rx_offset = 0; // reset so that it is not applied falsely in case of SSB being only in every second frame + UE->max_pos_fil += samples_shift; // reset IIR filter when sample shift is applied } return samples_shift; }