Skip to content

Commit

Permalink
Merge pull request #37 from drowe67/dr-timing-bug
Browse files Browse the repository at this point in the history
attempt at fixing timing est corner case
  • Loading branch information
drowe67 authored Dec 4, 2024
2 parents d05ed99 + 8f79bd9 commit aaeea81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion radae_rxe.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ def do_radae_rx(self, buffer_complex, floats_out):
self.uw_errors = 0
self.valid_count = self.Nmf_unsync
ffine_range = np.arange(self.fmax-10,self.fmax+10,0.25)
tfine_range = np.arange(self.tmax-1,self.tmax+2)
tfine_range = np.arange(max(0,self.tmax-1),self.tmax+2)
self.tmax,self.fmax = acq.refine(rx_buf, self.tmax, self.fmax, tfine_range, ffine_range)
# testing: only insert freq offset error on first sync
self.fmax += self.foff_err
Expand Down

0 comments on commit aaeea81

Please sign in to comment.