-
Notifications
You must be signed in to change notification settings - Fork 7.4k
drivers: fuel_guage: Add support for Analog Devices LTC2959 #90356
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
drivers: fuel_guage: Add support for Analog Devices LTC2959 #90356
Conversation
Signed-off-by: Nathan <[email protected]>
Hello @LostinTimeandspaceYT, and thank you very much for your first pull request to the Zephyr project! |
Signed-off-by: Nathan <[email protected]>
Signed-off-by: Nathan <[email protected]>
@@ -0,0 +1,3 @@ | |||
zephyr_library() | |||
zephyr_include_directories(${CMAKE_CURRENT_SOURCE_DIR}) | |||
zephyr_library_sources(ltc2959.c) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like the driver itself is missing.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My apologies. I was pushing the driver itself in a separate commit.
Signed-off-by: Nathan <[email protected]>
Signed-off-by: Nathan <[email protected]>
|
This driver integrates with Zephyr’s fuel gauge subsystem to provide access to telemetry data such as voltage, current, temperature, and accumulated charge.
Tested on custom hardware with known RSENSE configuration and verified against datasheet behavior.
Signed-off-by: Nathan Winslow [email protected]