aboutsummaryrefslogtreecommitdiff
path: root/apps/power_test/common/idl/chre_power_test.fbs
diff options
context:
space:
mode:
Diffstat (limited to 'apps/power_test/common/idl/chre_power_test.fbs')
-rw-r--r--apps/power_test/common/idl/chre_power_test.fbs39
1 files changed, 0 insertions, 39 deletions
diff --git a/apps/power_test/common/idl/chre_power_test.fbs b/apps/power_test/common/idl/chre_power_test.fbs
index 5d0a324e..9276a74c 100644
--- a/apps/power_test/common/idl/chre_power_test.fbs
+++ b/apps/power_test/common/idl/chre_power_test.fbs
@@ -35,8 +35,6 @@ enum MessageType : uint {
BREAK_IT_TEST,
/// Should be used with NanoappResponseMessage
NANOAPP_RESPONSE,
- /// Should be used with GnssMeasurementMessage
- GNSS_MEASUREMENT_TEST,
}
/// Represents a message to ask the nanoapp to create a timer that wakes up at
@@ -46,40 +44,11 @@ table TimerMessage {
wakeup_interval_ns:ulong;
}
-/// All the various WiFi scan types that can be interacted with inside the
-/// nanoapp. The values used here map directly to values from the CHRE API.
-enum WifiScanType : ubyte {
- ACTIVE = 0,
- ACTIVE_PLUS_PASSIVE_DFS = 1,
- PASSIVE = 2,
- NO_PREFERENCE = 3,
-}
-
-/// All the various WiFi radio chain preferences that can be interacted with
-/// inside the nanoapp. The values used here map directly to values from the
-/// CHRE API.
-enum WifiRadioChain : ubyte {
- DEFAULT = 0,
- LOW_LATENCY = 1,
- LOW_POWER = 2,
- HIGH_ACCURACY = 3,
-}
-
-/// All the various WiFi channel sets that can be interacted with inside the
-/// nanoapp. The values used here map directly to values from the CHRE API.
-enum WifiChannelSet : ubyte {
- NON_DFS = 0,
- ALL = 1,
-}
-
/// Represents a message to ask the nanoapp to start or stop WiFi scanning and
/// the scan interval to use if scanning is being started
table WifiScanMessage {
enable:bool;
scan_interval_ns:ulong;
- scan_type:WifiScanType;
- radio_chain:WifiRadioChain;
- channel_set:WifiChannelSet;
}
/// Represents a message to ask the nanoapp to start or stop Gnss location
@@ -122,7 +91,6 @@ enum SensorType : ubyte {
LIGHT = 12,
PROXIMITY = 13,
STEP_DETECT = 23,
- STEP_COUNTER = 24,
UNCALIBRATED_ACCELEROMETER = 55,
ACCELEROMETER_TEMPERATURE = 56,
GYROSCOPE_TEMPERATURE = 57,
@@ -150,10 +118,3 @@ table BreakItMessage {
table NanoappResponseMessage {
success:bool;
}
-
-/// Represents a message to ask the nanoapp to start or stop Gnss measurement
-/// sampling at the requested interval
-table GnssMeasurementMessage {
- enable:bool;
- min_interval_millis:uint;
-} \ No newline at end of file