Skip to content

Commit a25f247

Browse files
authored
Merge pull request #670 from sean10776/fix-SBF-decode
Fix convbin only outputting the last SBF observation
2 parents f2d2f32 + 79991f2 commit a25f247

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/rcv/septentrio.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -703,7 +703,7 @@ static int decode_measepoch(raw_t *raw)
703703
int i, j, idx, n, n1, n2, len1, len2, sig, ant, svid, info, sat, sys, lock, fcn, LLI, chn, ret=0;
704704
int ant_sel = 0; /* antenna selection (0:main) */
705705

706-
if (timediff(raw->time, sbf->current_time) != 0) {
706+
if (timediff(raw->time, sbf->current_time) > 0) {
707707
sbf->current_time = raw->time;
708708
ret = flushobuf(raw);
709709
}

0 commit comments

Comments
 (0)