Update SV ID field as 16 bits in GnssSvPolynomial
Change SV ID field in GnssSvPolynomial structure to support new constellations Change-Id: Ieb2c765a9f1999e9fbc9f69c3b59cef3c03913a8 CRs-Fixed: 1055694
This commit is contained in:
parent
ee55d0b1ef
commit
43bb1d24be
1 changed files with 3 additions and 2 deletions
|
@ -1016,8 +1016,9 @@ typedef enum
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
size_t size;
|
size_t size;
|
||||||
uint8_t gnssSvId;
|
uint16_t gnssSvId;
|
||||||
/* GPS: 1-32, GLO: 65-96, 0: Invalid
|
/* GPS: 1-32, GLO: 65-96, 0: Invalid,
|
||||||
|
SBAS: 120-151, BDS:201-237,GAL:301 to 336
|
||||||
All others are reserved
|
All others are reserved
|
||||||
*/
|
*/
|
||||||
int8_t freqNum;
|
int8_t freqNum;
|
||||||
|
|
Loading…
Reference in a new issue