zephyr/drivers/fuel_gauge/Kconfig
Jordan Yates 39a582a9ec fuel_gauge: composite analog fuel gauge
Construct a device that implements the fuel-gauge API from a collection
of analog sensing inputs.

Signed-off-by: Jordan Yates <jordan@embeint.com>
2024-08-29 16:12:36 -04:00

27 lines
636 B
Text

# Copyright 2022 Google LLC
#
# SPDX-License-Identifier: Apache-2.0
menuconfig FUEL_GAUGE
bool "Battery fuel gauge drivers"
help
Enable battery fuel gauge driver configuration.
if FUEL_GAUGE
module = FUEL_GAUGE
module-str = fuel_gauge
source "subsys/logging/Kconfig.template.log_config"
config FUEL_GAUGE_INIT_PRIORITY
int "Battery Fuel Gauge init priority"
default 90
help
Battery fuel gauge initialization priority.
source "drivers/fuel_gauge/max17048/Kconfig"
source "drivers/fuel_gauge/sbs_gauge/Kconfig"
source "drivers/fuel_gauge/bq27z746/Kconfig"
source "drivers/fuel_gauge/composite/Kconfig"
endif # FUEL_GAUGE