The MAX17262 is an ultra-low power fuel-gauge IC which implements the Maxim ModelGauge m5 algorithm. The IC monitors a single-cell battery pack and supports internal current sensing for up to 3.1A pulse current. The IC provides best performance for batteries with 100mAhr to 6Ahr capacity. Signed-off-by: Matija Tudan <mtudan@mobilisis.hr>
24 lines
429 B
Plaintext
24 lines
429 B
Plaintext
/*
|
|
* Copyright (c) 2021 Matija Tudan
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
&arduino_i2c {
|
|
status = "okay";
|
|
|
|
max17262@36 {
|
|
compatible = "maxim,max17262";
|
|
label = "MAX17262";
|
|
reg = <0x36>;
|
|
design-voltage = <3600>;
|
|
desired-voltage = <3600>;
|
|
desired-charging-current = <2000>;
|
|
design-cap = <17000>;
|
|
empty-voltage = <3300>;
|
|
recovery-voltage = <3880>;
|
|
charge-voltage = <3600>;
|
|
status = "okay";
|
|
};
|
|
};
|