42915e498e
New ADC driver for the TI CC13xx/CC26xx family. ADC channel configurations are translated from Zephyr constants to simplelink driverlib ones (e.g., sample times use a lookup table). Async mode was also implemented & tested. Signed-off-by: Stancu Florin <niflostancu@gmail.com>
10 lines
264 B
Plaintext
10 lines
264 B
Plaintext
# Copyright (c) 2022 Florin Stancu <niflostancu@gmail.com>
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config ADC_CC13XX_CC26XX
|
|
bool "CC13XX/CC26XX ADC driver"
|
|
default y
|
|
depends on DT_HAS_TI_CC13XX_CC26XX_ADC_ENABLED
|
|
help
|
|
Enable the TI CC13XX/CC26XX ADC driver.
|