- Timestamp:
- Feb 16, 2012, 5:22:29 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/rtcm3torinex/lib/rtcm3torinex.c
r3654 r3712 1074 1074 int rrint[RTCM3_MSM_NUMSAT], rdop[RTCM3_MSM_NUMSAT], 1075 1075 extsat[RTCM3_MSM_NUMSAT]; 1076 int ll[RTCM3_MSM_NUMCELLS] ;1076 int ll[RTCM3_MSM_NUMCELLS], hc[RTCM3_MSM_NUMCELLS]; 1077 1077 double cnr[RTCM3_MSM_NUMCELLS]; 1078 1078 double cp[RTCM3_MSM_NUMCELLS], psr[RTCM3_MSM_NUMCELLS], … … 1169 1169 if(cellmask & (UINT64(1)<<count)) 1170 1170 GETBITS(ll[count], 4) 1171 for(count = numcells; count--;) 1172 if(cellmask & (UINT64(1)<<count)) 1173 GETBITS(hc[count], 1) 1171 1174 break; 1172 1175 case 3: … … 1180 1183 if(cellmask & (UINT64(1)<<count)) 1181 1184 GETBITS(ll[count], 4) 1185 for(count = numcells; count--;) 1186 if(cellmask & (UINT64(1)<<count)) 1187 GETBITS(hc[count], 1) 1182 1188 break; 1183 1189 case 4: … … 1191 1197 if(cellmask & (UINT64(1)<<count)) 1192 1198 GETBITS(ll[count], 4) 1199 for(count = numcells; count--;) 1200 if(cellmask & (UINT64(1)<<count)) 1201 GETBITS(hc[count], 1) 1193 1202 for(count = numcells; count--;) 1194 1203 if(cellmask & (UINT64(1)<<count)) … … 1205 1214 if(cellmask & (UINT64(1)<<count)) 1206 1215 GETBITS(ll[count], 4) 1216 for(count = numcells; count--;) 1217 if(cellmask & (UINT64(1)<<count)) 1218 GETBITS(hc[count], 1) 1207 1219 for(count = numcells; count--;) 1208 1220 if(cellmask & (UINT64(1)<<count)) … … 1224 1236 for(count = numcells; count--;) 1225 1237 if(cellmask & (UINT64(1)<<count)) 1238 GETBITS(hc[count], 1) 1239 for(count = numcells; count--;) 1240 if(cellmask & (UINT64(1)<<count)) 1226 1241 GETFLOAT(cnr[count], 10, 0.1) 1227 1242 break; … … 1236 1251 if(cellmask & (UINT64(1)<<count)) 1237 1252 GETBITS(ll[count], 10) 1253 for(count = numcells; count--;) 1254 if(cellmask & (UINT64(1)<<count)) 1255 GETBITS(hc[count], 1) 1238 1256 for(count = numcells; count--;) 1239 1257 if(cellmask & (UINT64(1)<<count))
Note:
See TracChangeset
for help on using the changeset viewer.