diff options
author | Mingguang Xu <mingguangxu@google.com> | 2019-09-19 14:51:08 -0700 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2019-09-19 14:51:08 -0700 |
commit | 01a8c8db9c5ffdc04de51866feb4602bccac74ed (patch) | |
tree | 3a550b96e02d1a879b51c2a8673b190ff328b8df /proto | |
parent | 9bb86ea9f4f1cd45887c021b1ba7ad028cc2ee4a (diff) | |
parent | db114da8a54a2b41425072f64c015eda027bf06b (diff) |
Merge "Wifi usability: Change the unit of the threshold for tx/rx throughput from Mbps to Kbps" into qt-qpr1-dev am: a295feab37
am: db114da8a5
Change-Id: I4693287fb44a9fa22b2b786b96a2d8be414e7376
Diffstat (limited to 'proto')
-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 |