-
Notifications
You must be signed in to change notification settings - Fork 7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
drivers: sensors: Add LTC4162 step-down battery charger support
Implementation of LTC4162 step-down battery charger support. Signed-off-by: Navin Sankar Velliangiri <navin@linumiz.com>
- Loading branch information
Navin Sankar Velliangiri
committed
Jan 17, 2023
1 parent
d0db2c8
commit 434a9ea
Showing
8 changed files
with
551 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
zephyr_library() | ||
|
||
zephyr_library_sources(ltc4162.c) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# LTC4162 Battery Charger | ||
|
||
# Copyright (c) 2021 Linumiz | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
config LTC4162 | ||
bool "LTC4163 battery charger" | ||
depends on I2C | ||
help | ||
Enable driver for LTC4162 I2C based charger |
Oops, something went wrong.