forked from zephyrproject-rtos/zephyr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKconfig.mspm33
More file actions
37 lines (33 loc) · 1.02 KB
/
Kconfig.mspm33
File metadata and controls
37 lines (33 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# SPDX-License-Identifier: Apache-2.0
# Copyright (c) 2025 Texas Instruments
config ADC_MSP_HSADC
bool "TI ADC MSPM33 driver"
default y
depends on DT_HAS_TI_MSP_HSADC_ENABLED
select USE_MSP_DL_HSADC
select USE_MSP_DL_VREF
help
Enable support for HSADC on the TI MSPM33 series.
config ADC_MSP_HSADC_SOC_MAX
int "Maximum number of Start of Conversion (SOC) entries"
depends on ADC_MSP_HSADC
default 16
range 1 16
help
Maximum number of SOCs supported by the HSADC hardware.
The MSPM33 HSADC supports up to 16 SOCs for sequence conversion.
config ADC_MSP_HSADC_CHANNEL_MAX
int "Maximum number of ADC input channels"
depends on ADC_MSP_HSADC
default 32
range 1 32
help
Maximum number of ADC input channels supported by the HSADC hardware.
The MSPM33 HSADC supports up to 32 input channels.
config ADC_MSP_HSADC_DMA
bool "DMA support for TI MSPM33 HSADC"
depends on ADC_MSP_HSADC
select DMA
help
DMA driven mode offloads ADC result transfer from the CPU.
Requires dmas property in the ADC device tree node.