We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c27570f commit 455d0d8Copy full SHA for 455d0d8
tests/drivers/adc/adc_api/boards/stm32f4_disco.overlay
@@ -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
28
29
30
31
32
0 commit comments