1# MAX17048 Li-Ion battery fuel gauge
2
3# Copyright (c) 2023, Alvaro Garcia <maxpowel@gmail.com>
4# SPDX-License-Identifier: Apache-2.0
5
6
7config MAX17048
8	bool "MAX17048 Li-Po fuel gauge"
9	default y
10	depends on DT_HAS_MAXIM_MAX17048_ENABLED
11	select I2C
12	help
13	  Enable driver for the MAX17048 fuel gauge device.
14
15config EMUL_MAX17048
16	bool "Emulate an MAX17048 fuel gague"
17	default y
18	depends on EMUL
19	depends on MAX17048
20	help
21	  It provides readings which follow a simple sequence, thus allowing
22	  test code to check that things are working as expected.
23