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