diff --git a/targets/RT/USER/lte-enb.c b/targets/RT/USER/lte-enb.c index 74e75bdc4d113f2cba8b9efe5b805b561650a98c..58494caed4d845a3eb759c648e20d0eef85c0583 100644 --- a/targets/RT/USER/lte-enb.c +++ b/targets/RT/USER/lte-enb.c @@ -895,8 +895,8 @@ void rx_rf(PHY_VARS_eNB *eNB,int *frame,int *subframe) { eNB->ts_offset = proc->timestamp_rx; else { if (proc->timestamp_rx - old_ts != fp->samples_per_tti) { - LOG_I(PHY,"rx_rf: rfdevice timing drift of %d samples\n",proc->timestamp_rx - old_ts); - eNB->ts_offset += (proc->timestamp_rx - old_ts); + LOG_I(PHY,"rx_rf: rfdevice timing drift of %d samples\n",proc->timestamp_rx - old_ts - fp->samples_per_tti); + eNB->ts_offset += (proc->timestamp_rx - old_ts - fp->samples_per_tti); } } proc->frame_rx = ((proc->timestamp_rx-eNB->ts_offset) / (fp->samples_per_tti*10))&1023;