mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-03 15:16:51 +00:00
Create a driver implementation for the battery charge controller TI BQ25713. It includes the ability to enable / disable the controller and also to setup max current and voltage charge parameters at initialization time but also at run time. On the other hand, it is possible to assign / obtain input voltage and current regulation. Signed-off-by: Kiara Navarro <knavarro@paltatech.com>
12 lines
238 B
Plaintext
12 lines
238 B
Plaintext
# Copyright 2025 Palta Tech, S.A
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config CHARGER_BQ25713
|
|
bool "BQ25713 Battery Charger"
|
|
default y
|
|
depends on DT_HAS_TI_BQ25713_ENABLED
|
|
select I2C
|
|
help
|
|
Enable BQ25713 battery charger driver.
|