zephyr/samples/drivers/charger/Kconfig
Ricardo Rivera-Matos 5868c701ef samples: charger: Demos new output limit properties
Adds use of CHARGER_PROP_DISCHARGE_CURRENT_NOTIFICATION and
CHARGER_PROP_SYSTEM_VOLTAGE_NOTIFICATION_UV to the charger
sample application.

Signed-off-by: Ricardo Rivera-Matos <rriveram@opensource.cirrus.com>
2024-02-26 11:33:24 +00:00

23 lines
639 B
Plaintext

# Private config options for charger sample app
# Copyright (c) 2024 Cirrus Logic, Inc.
# SPDX-License-Identifier: Apache-2.0
mainmenu "Charger application"
if CHARGER_DISCHAGRE_CURRENT_NOTIFICATIONS
config APP_DISCHARGE_CURRENT_NOTIFICATION_THRESHOLD_UA
int "Discharge notification threshold in µA"
config APP_DISCHARGE_CURRENT_NOTIFICATION_DURATION_US
int "Excess discharge duration in µsec"
endif # CHARGER_DISCHAGRE_CURRENT_NOTIFICATIONS
config APP_SYSTEM_VOLTAGE_NOTIFICATION_THRESHOLD_UV
int "System voltage notification falling threshold in µV"
depends on CHARGER_SYSTEM_VOLTAGE_NOTIFICATIONS
source "Kconfig.zephyr"