zephyr/samples/drivers/charger/Kconfig
Matthias Alleman c891ace488 samples: drivers: charger: fix typo in sample Kconfig
The sample was not able to build because of a typo in
Kconfig when enabling CONFIG_CHARGER_DISCHARGE_CURRENT_NOTIFICATIONS

Signed-off-by: Matthias Alleman <matthias.alleman@basalte.be>
2025-06-13 10:42:40 -04: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_DISCHARGE_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_DISCHARGE_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"