Revert "health: batteryStateOfHealth should be a property"
This reverts commit a60e7a43a9
.
Reason for revert: merge to aosp first
Bug: 251427118
Test: m android.hardware.health-update-api
Change-Id: If56fe4b141b3ad31b7f859118e432f08915c98f3
Signed-off-by: Jack Wu <wjack@google.com>
This commit is contained in:
parent
dd9febd153
commit
f5a0732d83
6 changed files with 16 additions and 20 deletions
|
@ -34,11 +34,11 @@
|
|||
package android.hardware.health;
|
||||
@Backing(type="int") @VintfStability
|
||||
enum BatteryCapacityLevel {
|
||||
UNSUPPORTED = (-1) /* -1 */,
|
||||
UNKNOWN,
|
||||
CRITICAL,
|
||||
LOW,
|
||||
NORMAL,
|
||||
HIGH,
|
||||
FULL,
|
||||
UNSUPPORTED = -1,
|
||||
UNKNOWN = 0,
|
||||
CRITICAL = 1,
|
||||
LOW = 2,
|
||||
NORMAL = 3,
|
||||
HIGH = 4,
|
||||
FULL = 5,
|
||||
}
|
||||
|
|
|
@ -36,5 +36,4 @@ package android.hardware.health;
|
|||
parcelable BatteryHealthData {
|
||||
long batteryManufacturingDateSeconds;
|
||||
long batteryFirstUsageSeconds;
|
||||
long batteryStateOfHealth;
|
||||
}
|
||||
|
|
|
@ -57,8 +57,9 @@ parcelable HealthInfo {
|
|||
android.hardware.health.BatteryCapacityLevel batteryCapacityLevel;
|
||||
long batteryChargeTimeToFullNowSeconds;
|
||||
int batteryFullChargeDesignCapacityUah;
|
||||
int batteryStateOfHealth;
|
||||
android.hardware.health.BatteryChargingState chargingState;
|
||||
android.hardware.health.BatteryChargingPolicy chargingPolicy;
|
||||
@nullable android.hardware.health.BatteryHealthData batteryHealthData;
|
||||
const int BATTERY_CHARGE_TIME_TO_FULL_NOW_SECONDS_UNSUPPORTED = (-1) /* -1 */;
|
||||
const int BATTERY_CHARGE_TIME_TO_FULL_NOW_SECONDS_UNSUPPORTED = -1;
|
||||
}
|
||||
|
|
|
@ -29,11 +29,4 @@ parcelable BatteryHealthData {
|
|||
* The date of first usage is reported in epoch.
|
||||
*/
|
||||
long batteryFirstUsageSeconds;
|
||||
/**
|
||||
* Measured battery state of health (remaining estimate full charge capacity
|
||||
* relative to the rated capacity in %).
|
||||
* Value must be 0 if batteryStatus is UNKNOWN.
|
||||
* Otherwise, value must be in the range 0 to 100.
|
||||
*/
|
||||
long batteryStateOfHealth;
|
||||
}
|
||||
|
|
|
@ -136,6 +136,13 @@ parcelable HealthInfo {
|
|||
* Value must be less than 100 000 000 µAh if known.
|
||||
*/
|
||||
int batteryFullChargeDesignCapacityUah;
|
||||
/**
|
||||
* Measured battery state of health (remaining estimate full charge capacity
|
||||
* relative to the rated capacity in %).
|
||||
* Value must be 0 if batteryStatus is UNKNOWN.
|
||||
* Otherwise, value must be in the range 0 to 100.
|
||||
*/
|
||||
int batteryStateOfHealth;
|
||||
/**
|
||||
* Battery charging state
|
||||
*/
|
||||
|
|
|
@ -278,10 +278,6 @@ MATCHER(IsValidHealthData, "") {
|
|||
*result_listener << " for batteryFirstUsageSeconds.";
|
||||
return false;
|
||||
}
|
||||
if (!ExplainMatchResult(Ge(-1), arg.batteryStateOfHealth, result_listener)) {
|
||||
*result_listener << " for batteryStateOfHealth.";
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue