Skip to content

Commit 455d0d8

Browse files
AjithAnandhan4kartben
authored andcommitted
tests: adc_api: add dts overlay for STM32F4-DISCO
Add a dts overlay file for the STM32F4-DISCO to enable ADC ch testing with the adc_api test. Signed-off-by: Ajith Anandhan <ajithanandhan0406@gmail.com>
1 parent c27570f commit 455d0d8

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
/*
2+
* Copyright (c) 2025 Ajith Anandhan
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
/{
8+
zephyr,user {
9+
io-channels = <&adc1 1>, <&adc1 6>;
10+
};
11+
};
12+
13+
&adc1 {
14+
#address-cells = <1>;
15+
#size-cells = <0>;
16+
17+
channel@1 {
18+
reg = <1>;
19+
zephyr,gain = "ADC_GAIN_1";
20+
zephyr,reference = "ADC_REF_INTERNAL";
21+
zephyr,acquisition-time = <ADC_ACQ_TIME_DEFAULT>;
22+
zephyr,resolution = <12>;
23+
};
24+
25+
channel@6 {
26+
reg = <6>;
27+
zephyr,gain = "ADC_GAIN_1";
28+
zephyr,reference = "ADC_REF_INTERNAL";
29+
zephyr,acquisition-time = <ADC_ACQ_TIME_DEFAULT>;
30+
zephyr,resolution = <12>;
31+
};
32+
};

0 commit comments

Comments
 (0)