diff options
author | Mingguang Xu <mingguangxu@google.com> | 2019-09-19 21:06:44 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2019-09-19 21:06:44 +0000 |
commit | a295feab374692bdaaeef509e28f3e89cfddf1af (patch) | |
tree | ba69963bc76c9e64ed47628e90f3e162fa327d89 | |
parent | e5a3106cc56668a4890ae48a3b2e6fb9bfb68c8b (diff) | |
parent | 078fe45552425c18aa8052da0ae3c9205fa5c309 (diff) |
Merge "Wifi usability: Change the unit of the threshold for tx/rx throughput from Mbps to Kbps" into qt-qpr1-dev
-rw-r--r-- | proto/src/wifi.proto | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/proto/src/wifi.proto b/proto/src/wifi.proto index 353a18756ca2..fbf6ca52f11c 100644 --- a/proto/src/wifi.proto +++ b/proto/src/wifi.proto @@ -1798,12 +1798,12 @@ message ExperimentValues { optional int32 data_stall_duration_ms = 5; // Threshold of Tx throughput below which to trigger a data stall - // measured in Mbps - optional int32 data_stall_tx_tput_thr_mbps = 6; + // measured in Kbps + optional int32 data_stall_tx_tput_thr_kbps = 6; // Threshold of Rx throughput below which to trigger a data stall - // measured in Mbps - optional int32 data_stall_rx_tput_thr_mbps = 7; + // measured in Kbps + optional int32 data_stall_rx_tput_thr_kbps = 7; // Threshold of Tx packet error rate above which to trigger a data stall // in percentage |