- Timestamp:
- Jun 1, 2010, 7:45:56 PM (14 years ago)
- Location:
- trunk/rtcm3torinex
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/rtcm3torinex/rtcm3torinex.c
r2487 r2490 528 528 GETBITS(i, 7); 529 529 lastlockl1[sv] = i; 530 if(handle->lastlock l1[sv] > i)530 if(handle->lastlockGPSl1[sv] > i) 531 531 gnss->dataflags[num] |= GNSSDF_LOCKLOSSL1; 532 532 if(type == 1002 || type == 1004) … … 585 585 GETBITS(i,7); 586 586 lastlockl2[sv] = i; 587 if(handle->lastlock l2[sv] > i)587 if(handle->lastlockGPSl2[sv] > i) 588 588 gnss->dataflags[num] |= GNSSDF_LOCKLOSSL2; 589 589 if(type == 1004) … … 605 605 for(i = 0; i < 64; ++i) 606 606 { 607 handle->lastlock l1[i] = lastlockl1[i];608 handle->lastlock l2[i] = lastlockl2[i];607 handle->lastlockGPSl1[i] = lastlockl1[i]; 608 handle->lastlockGPSl2[i] = lastlockl2[i]; 609 609 } 610 610 if(!syncf && !old) … … 706 706 GETBITS(i, 7) 707 707 lastlockl1[sv] = i; 708 if(handle->lastlock l1[sv] > i)708 if(handle->lastlockGLOl1[sv] > i) 709 709 gnss->dataflags[num] |= GNSSDF_LOCKLOSSL1; 710 710 if(type == 1010 || type == 1012) … … 761 761 GETBITS(i,7) 762 762 lastlockl2[sv] = i; 763 if(handle->lastlock l2[sv] > i)763 if(handle->lastlockGLOl2[sv] > i) 764 764 gnss->dataflags[num] |= GNSSDF_LOCKLOSSL2; 765 765 if(type == 1012) … … 783 783 for(i = 0; i < 64; ++i) 784 784 { 785 handle->lastlock l1[i] = lastlockl1[i];786 handle->lastlock l2[i] = lastlockl2[i];785 handle->lastlockGLOl1[i] = lastlockl1[i]; 786 handle->lastlockGLOl2[i] = lastlockl2[i]; 787 787 } 788 788 if(!syncf && !old) -
trunk/rtcm3torinex/rtcm3torinex.h
r2487 r2490 209 209 struct gnssdata DataNew; 210 210 int size; 211 int lastlockl1[64]; 212 int lastlockl2[64]; 211 int lastlockGPSl1[64]; 212 int lastlockGPSl2[64]; 213 int lastlockGLOl1[64]; 214 int lastlockGLOl2[64]; 213 215 #ifdef NO_RTCM3_MAIN 214 216 double antX;
Note:
See TracChangeset
for help on using the changeset viewer.