correct the conversion of ConstellationType
map GNSS_SV_TYPE_GPS to GnssConstellationType::GPS Bug: 36644020 CRs-fixed: 2025520 Change-Id: I28fe4b5aff17495f50b0ae7fb0465bbd82a66627
This commit is contained in:
parent
e72716080e
commit
4fc5a782cf
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ void convertGnssConstellationType(GnssSvType& in, GnssConstellationType& out)
|
|||
{
|
||||
switch(in) {
|
||||
case GNSS_SV_TYPE_GPS:
|
||||
out = GnssConstellationType::UNKNOWN;
|
||||
out = GnssConstellationType::GPS;
|
||||
break;
|
||||
case GNSS_SV_TYPE_SBAS:
|
||||
out = GnssConstellationType::SBAS;
|
||||
|
|
Loading…
Reference in a new issue