Searched full:max17048 (Results 1 – 17 of 17) sorted by relevance
/Zephyr-latest/drivers/fuel_gauge/max17048/ |
D | Kconfig | 1 # 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
|
D | max17048.c | 1 /* 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()
|
D | CMakeLists.txt | 5 zephyr_library_sources(max17048.c)
|
D | emul_max17048.c | 6 * Emulator for max17048 fuel gauge 22 #include "max17048.h"
|
/Zephyr-latest/samples/fuel_gauge/max17048/ |
D | README.rst | 1 .. 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
|
D | sample.yaml | 2 name: MAX17048 Sensor sample 4 sample.sensor.max17048:
|
D | CMakeLists.txt | 5 project(max17048) project
|
/Zephyr-latest/tests/drivers/fuel_gauge/max17048/boards/ |
D | native_sim.overlay | 6 max17048: max17048@36 { 7 compatible = "maxim,max17048";
|
/Zephyr-latest/dts/bindings/fuel-gauge/ |
D | maxim,max17048.yaml | 5 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/ |
D | nrf52840dk_nrf52840.overlay | 13 max17048:max17048@36 { 14 compatible = "maxim,max17048";
|
/Zephyr-latest/tests/drivers/fuel_gauge/max17048/ |
D | testcase.yaml | 2 drivers.fuel_gauge.max17048: 5 filter: dt_compat_enabled("maxim,max17048")
|
/Zephyr-latest/boards/shields/sparkfun_carrier_asset_tracker/ |
D | sparkfun_carrier_asset_tracker.overlay | 46 max17048: max17048@36 { 47 compatible = "maxim,max17048";
|
/Zephyr-latest/tests/drivers/fuel_gauge/max17048/src/ |
D | test_max17048.c | 35 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/ |
D | i2c.dtsi | 10 max17048@0 { 11 compatible = "maxim,max17048";
|
/Zephyr-latest/drivers/fuel_gauge/ |
D | CMakeLists.txt | 7 add_subdirectory_ifdef(CONFIG_MAX17048 max17048)
|
D | Kconfig | 22 source "drivers/fuel_gauge/max17048/Kconfig"
|
/Zephyr-latest/doc/releases/ |
D | release-notes-3.7.rst | 858 * max17048: Corrected voltage units from mV to uV.
|