-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
drivers: adc: add ads131m02 adc driver
ADS131M02 is Texas Instruments 2-channel, 24-Bit differential input ADC which support wide range datarate. Driver add support for adc read, channel configure, adc sampling mode configuration and power management. [1]. https://www.ti.com/lit/ds/symlink/ads131m02.pdf Signed-off-by: Karthikeyan Krishnasamy <[email protected]>
- Loading branch information
Showing
6 changed files
with
806 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,13 @@ | ||
# Copyright (c) 2024 Linumiz | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
config ADC_ADS131M02 | ||
bool "Texas instruments ADS131M02" | ||
default y | ||
depends on DT_HAS_TI_ADS131M02_ENABLED | ||
select ADC_CONFIGURABLE_INPUTS | ||
select SPI | ||
select GPIO | ||
help | ||
Enable the driver for ADS131M02 ADC. |
Oops, something went wrong.