From 63851e3ab32963422c835f7ef9facd079db07d61 Mon Sep 17 00:00:00 2001 From: yanghang Date: Tue, 10 Jun 2025 11:01:24 +0800 Subject: [PATCH] fix: Clear the alarm Signed-off-by: yanghang --- BasicServicesKit/ohbattery_info.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/BasicServicesKit/ohbattery_info.h b/BasicServicesKit/ohbattery_info.h index 38f289a38..a8f8af9e8 100644 --- a/BasicServicesKit/ohbattery_info.h +++ b/BasicServicesKit/ohbattery_info.h @@ -19,7 +19,6 @@ * * @brief Provides the definition of the C interface for the BatteryInfo module. * - * @syscap SystemCapability.PowerManager.BatteryManager.Core * @since 13 * @version 1.0 */ @@ -100,7 +99,6 @@ typedef enum { * @brief This API returns the current battery capacity. * * @return Returns number between 0 and 100. - * @syscap SystemCapability.PowerManager.BatteryManager.Core * @since 13 */ int32_t OH_BatteryInfo_GetCapacity(); @@ -113,7 +111,6 @@ int32_t OH_BatteryInfo_GetCapacity(); * {@link PLUGGED_TYPE_USB} if the power source is an USB DC charger. * {@link PLUGGED_TYPE_WIRELESS} if the power source is wireless charger. * {@link PLUGGED_TYPE_BUTT} if the type is unknown. - * @syscap SystemCapability.PowerManager.BatteryManager.Core * @since 13 */ BatteryInfo_BatteryPluggedType OH_BatteryInfo_GetPluggedType(); -- Gitee