STM32N6 needs to have a buffer of 32-bit data instead of 16-bit. Adds a Kconfig to select whether the test shall use a 32-bit buffer. Signed-off-by: Guillaume Gautier <guillaume.gautier-ext@st.com>
16 lines
318 B
Plaintext
16 lines
318 B
Plaintext
# ADC API test configuration options
|
|
|
|
# Copyright (c) 2024 STMicroelectronics
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
mainmenu "ADC API Test"
|
|
|
|
source "Kconfig.zephyr"
|
|
|
|
config ADC_API_SAMPLE_INTERVAL_US
|
|
int "Interval between repeatead samples in us"
|
|
default 0
|
|
|
|
config ADC_32_BITS_DATA
|
|
bool "ADC data is 32-bits long"
|