tests: adc: adc_api: add overlay for Nucleo-WB09KE

Add an overlay to the test so that it can run on STM32WB0 series hardware.

Signed-off-by: Mathieu Choplain <mathieu.choplain@st.com>
This commit is contained in:
Mathieu Choplain 2024-10-21 15:29:58 +02:00 committed by Henrik Brix Andersen
parent 5dd9fda746
commit 59b469725b
1 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,44 @@
/*
* SPDX-License-Identifier: Apache-2.0
*
* Copyright (c) 2024 STMicroelectronics
*/
/ {
zephyr,user {
io-channels = <&adc1 4>, <&adc1 12>, <&adc1 13>;
};
};
&adc1 {
status = "okay";
pinctrl-0 = <&adc1_vinp0_pb3>;
pinctrl-names = "default";
#address-cells = <1>;
#size-cells = <0>;
vinp0: channel@4 {
reg = <4>;
zephyr,gain = "ADC_GAIN_1";
zephyr,reference = "ADC_REF_INTERNAL";
zephyr,acquisition-time = <ADC_ACQ_TIME_DEFAULT>;
zephyr,resolution = <12>;
};
adc_vbat_ch: channel@c {
reg = <12>;
zephyr,gain = "ADC_GAIN_1";
zephyr,reference = "ADC_REF_VDD_1";
zephyr,acquisition-time = <ADC_ACQ_TIME_DEFAULT>;
zephyr,resolution = <12>;
};
adc_tempsensor_ch: channel@d {
reg = <13>;
zephyr,gain = "ADC_GAIN_1";
zephyr,reference = "ADC_REF_VDD_1_3";
zephyr,acquisition-time = <ADC_ACQ_TIME_DEFAULT>;
zephyr,resolution = <12>;
};
};