summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorasanoaozora <fifitaneki@hotmail.com>2018-02-01 18:30:00 +0100
committerasanoaozora <fifitaneki@hotmail.com>2018-02-01 18:30:00 +0100
commit13fd32bb4998384914bd829e180120b66a2a4c24 (patch)
treebbe22a7221e7f4835f3e8eddad5fab6354ed9dbc
parent576d409eeef48ed823ec53dbd62baadf4926ca8f (diff)
downloadpositioning-13fd32bb4998384914bd829e180120b66a2a4c24.tar.gz
[GNSSService] Move configuration validity bits to the right fidl file
-rw-r--r--gnss-service/api/franca/GnssServiceConfiguration.fidl9
-rw-r--r--gnss-service/api/franca/GnssServiceTypes.fidl9
2 files changed, 9 insertions, 9 deletions
diff --git a/gnss-service/api/franca/GnssServiceConfiguration.fidl b/gnss-service/api/franca/GnssServiceConfiguration.fidl
index ecd1b49..ab2b50c 100644
--- a/gnss-service/api/franca/GnssServiceConfiguration.fidl
+++ b/gnss-service/api/franca/GnssServiceConfiguration.fidl
@@ -36,6 +36,15 @@ interface Configuration {
}
<** @description:
+ TGNSSConfiguration::validityBits provides information about the currently valid signals of the GNSS configuration data.
+ It is a or'ed bitmask of the EGNSSConfigValidityBits values.
+ **>
+ enumeration EGNSSConfigValidityBits {
+ GNSS_CONFIG_ANTPOS_VALID = 0x00000001 // Validity bit for field TGNSSConfiguration::antennaPosition.
+ GNSS_CONFIG_SATSYS_VALID = 0x00000002 // Validity bit for field TGNSSConfiguration::supportedSystems.
+ }
+
+ <** @description:
Static configuration data related to the GNSS service.
**>
struct TGNSSConfiguration {
diff --git a/gnss-service/api/franca/GnssServiceTypes.fidl b/gnss-service/api/franca/GnssServiceTypes.fidl
index 751863b..11d2202 100644
--- a/gnss-service/api/franca/GnssServiceTypes.fidl
+++ b/gnss-service/api/franca/GnssServiceTypes.fidl
@@ -29,15 +29,6 @@ typeCollection GnssServiceTypes {
}
<** @description:
- TGNSSConfiguration::validityBits provides information about the currently valid signals of the GNSS configuration data.
- It is a or'ed bitmask of the EGNSSConfigValidityBits values.
- **>
- enumeration EGNSSConfigValidityBits {
- GNSS_CONFIG_ANTPOS_VALID = 0x00000001 // Validity bit for field TGNSSConfiguration::antennaPosition.
- GNSS_CONFIG_SATSYS_VALID = 0x00000002 // Validity bit for field TGNSSConfiguration::supportedSystems.
- }
-
- <** @description:
TGNSSPosition::fixTypeBits provides GNSS Fix Type indication.
I.e. it identifies the sources actually used for the GNSS calculation
It is a or'ed bitmask of the EGNSSFixType values.