2022-11-14 14:26:03 -07:00
|
|
|
# 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"
|
|
|
|
|
2023-03-16 10:31:27 -06:00
|
|
|
config FUEL_GAUGE_INIT_PRIORITY
|
|
|
|
int "Battery Fuel Gauge init priority"
|
|
|
|
default 90
|
|
|
|
help
|
|
|
|
Battery fuel gauge initialization priority.
|
|
|
|
|
2022-11-17 21:42:58 +01:00
|
|
|
source "drivers/fuel_gauge/max17048/Kconfig"
|
2022-11-14 14:26:03 -07:00
|
|
|
source "drivers/fuel_gauge/sbs_gauge/Kconfig"
|
2023-06-19 16:33:13 +02:00
|
|
|
source "drivers/fuel_gauge/bq27z746/Kconfig"
|
2024-08-25 11:26:51 +10:00
|
|
|
source "drivers/fuel_gauge/composite/Kconfig"
|
2025-04-27 18:52:22 +02:00
|
|
|
source "drivers/fuel_gauge/axp2101/Kconfig"
|
2022-11-14 14:26:03 -07:00
|
|
|
|
|
|
|
endif # FUEL_GAUGE
|