When the pss block enters tracking state, I currently have it rescan the entire half-frame every n half-frames that pass through the block, where n is set by the track_every parameter. I should:
call srslte_pss_synch_find_pss with a smaller (1 subframe?) input buffer centered on the location of the expected peak
only have it re-search entire half-frame if I can't find the peak in that window (if tracking drops)
When the pss block enters tracking state, I currently have it rescan the entire half-frame every
n
half-frames that pass through the block, wheren
is set by thetrack_every
parameter. I should: