Home
last modified time | relevance | path

Searched full:max17048 (Results 1 – 17 of 17) sorted by relevance

/Zephyr-latest/drivers/fuel_gauge/max17048/
DKconfig1 # MAX17048 Li-Ion battery fuel gauge
7 config MAX17048 config
8 bool "MAX17048 Li-Po fuel gauge"
13 Enable driver for the MAX17048 fuel gauge device.
16 bool "Emulate an MAX17048 fuel gague"
19 depends on MAX17048
Dmax17048.c1 /* max17048.c - Driver for max17048 battery fuel gauge */
11 #include "max17048.h"
22 LOG_MODULE_REGISTER(MAX17048);
25 #warning "MAX17048 driver enabled without any devices"
86 * MAX17048-MAX17049.pdf in max17048_voltage()
88 * Max17048 only supports one cell so we just have to multiply the value by 78.125 to in max17048_voltage()
110 * MAX17048-MAX17049.pdf in max17048_percent()
133 * MAX17048-MAX17049.pdf in max17048_crate()
144 * should be 0x10. If not, or the chip is malfunctioning or it is not a MAX17048 at all
164 LOG_ERR("Something found at the provided I2C address, but it is not a MAX17048"); in max17048_init()
DCMakeLists.txt5 zephyr_library_sources(max17048.c)
Demul_max17048.c6 * Emulator for max17048 fuel gauge
22 #include "max17048.h"
/Zephyr-latest/samples/fuel_gauge/max17048/
DREADME.rst1 .. zephyr:code-sample:: max17048
2 :name: MAX17048 Li-Ion battery fuel gauge
4 Read battery percentage and power status using MAX17048 fuel gauge.
9 This sample shows how to use the Zephyr :ref:`fuel_gauge_api` API driver for the MAX17048 fuel gaug…
11 .. _MAX17048: https://www.maximintegrated.com/en/products/power/battery-management/MAX17048.html target in Overview
18 The sample can be configured to support MAX17048 fuel gauge connected via either I2C. It only needs
42 Found device "max17048@36", getting fuel gauge data
Dsample.yaml2 name: MAX17048 Sensor sample
4 sample.sensor.max17048:
DCMakeLists.txt5 project(max17048) project
/Zephyr-latest/tests/drivers/fuel_gauge/max17048/boards/
Dnative_sim.overlay6 max17048: max17048@36 {
7 compatible = "maxim,max17048";
/Zephyr-latest/dts/bindings/fuel-gauge/
Dmaxim,max17048.yaml5 Maxim MAX17048 Fuel Gauge with ModelGauge. See more info at:
6 https://www.maximintegrated.com/en/products/power/battery-management/MAX17048.html
8 compatible: "maxim,max17048"
/Zephyr-latest/samples/fuel_gauge/max17048/boards/
Dnrf52840dk_nrf52840.overlay13 max17048:max17048@36 {
14 compatible = "maxim,max17048";
/Zephyr-latest/tests/drivers/fuel_gauge/max17048/
Dtestcase.yaml2 drivers.fuel_gauge.max17048:
5 filter: dt_compat_enabled("maxim,max17048")
/Zephyr-latest/boards/shields/sparkfun_carrier_asset_tracker/
Dsparkfun_carrier_asset_tracker.overlay46 max17048: max17048@36 {
47 compatible = "maxim,max17048";
/Zephyr-latest/tests/drivers/fuel_gauge/max17048/src/
Dtest_max17048.c35 ZTEST_USER_F(max17048, test_get_some_props_failed_returns_bad_status) in ZTEST_USER_F() argument
52 ZTEST_USER_F(max17048, test_get_props__returns_ok) in ZTEST_USER_F() argument
68 ZTEST_USER_F(max17048, test_current_rate_zero) in ZTEST_USER_F() argument
94 ZTEST_SUITE(max17048, NULL, max17048_setup, NULL, NULL, NULL);
/Zephyr-latest/tests/drivers/build_all/fuel_gauge/
Di2c.dtsi10 max17048@0 {
11 compatible = "maxim,max17048";
/Zephyr-latest/drivers/fuel_gauge/
DCMakeLists.txt7 add_subdirectory_ifdef(CONFIG_MAX17048 max17048)
DKconfig22 source "drivers/fuel_gauge/max17048/Kconfig"
/Zephyr-latest/doc/releases/
Drelease-notes-3.7.rst858 * max17048: Corrected voltage units from mV to uV.