2012-04-06 17:49:35 +02:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 16:08:57 +02:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2012-04-06 17:49:35 +02:00
|
|
|
#
|
2015-09-19 21:06:43 +02:00
|
|
|
|
|
|
|
config BATTERY_CHARGER
|
|
|
|
bool "Battery Charger support"
|
|
|
|
default n
|
|
|
|
|
2015-09-20 17:47:00 +02:00
|
|
|
config BQ2425X
|
|
|
|
bool "BQ2425X Battery charger support"
|
|
|
|
default n
|
|
|
|
select I2C
|
|
|
|
select I2C_BQ2425X
|
|
|
|
depends on BATTERY_CHARGER
|
|
|
|
---help---
|
|
|
|
The BQ24250/BQ24251 are battery charger for lithium-ion batteries.
|
|
|
|
|
2015-09-19 19:00:14 +02:00
|
|
|
config BATTERY_GAUGE
|
|
|
|
bool "Battery Fuel Gauge support"
|
2012-04-13 16:27:44 +02:00
|
|
|
default n
|
|
|
|
|
|
|
|
config MAX1704X
|
2015-09-20 17:47:00 +02:00
|
|
|
bool "MAX1704X Battery fuel gauge support"
|
2012-04-13 16:27:44 +02:00
|
|
|
default n
|
|
|
|
select I2C
|
|
|
|
select I2C_MAX1704X
|
2015-09-19 19:00:14 +02:00
|
|
|
depends on BATTERY_GAUGE
|
2012-04-13 16:27:44 +02:00
|
|
|
---help---
|
|
|
|
The MAX17040/MAX17041 are ultra-compact, low-cost, host-side fuel-gauge
|
|
|
|
systems for lithium-ion (Li+) batteries in handheld and portable equipment.
|
|
|
|
The MAX17040 is configured to operate with a single lithium cell and the
|
|
|
|
MAX17041 is configured for a dual-cell 2S pack.
|
|
|
|
|
2015-09-20 17:47:00 +02:00
|
|
|
config I2C_BQ2425X
|
|
|
|
bool
|
|
|
|
default y if BQ2425X
|
|
|
|
|
2012-04-13 16:27:44 +02:00
|
|
|
config I2C_MAX1704X
|
|
|
|
bool
|
|
|
|
default y if MAX1704X
|