File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed
samples/drivers/adc/adc_dt/boards Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ CONFIG_LPADC_DO_OFFSET_CALIBRATION=y
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright 2024 NXP
3
+ *
4
+ * SPDX-License-Identifier: Apache-2.0
5
+ */
6
+
7
+ #include <zephyr/dt-bindings/adc/adc.h>
8
+ #include <zephyr/dt-bindings/adc/mcux-lpadc.h>
9
+
10
+ / {
11
+ zephyr,user {
12
+ /* adjust channel number according to pinmux in board.dts */
13
+ io-channels = <&lpadc0 0>;
14
+ };
15
+ };
16
+
17
+ &lpadc0 {
18
+ #address-cells = <1>;
19
+ #size-cells = <0>;
20
+
21
+ channel@0 {
22
+ reg = <0>;
23
+ zephyr,gain = "ADC_GAIN_1";
24
+ zephyr,reference = "ADC_REF_EXTERNAL0";
25
+ zephyr,vref-mv = <3300>;
26
+ zephyr,acquisition-time = <ADC_ACQ_TIME_DEFAULT>;
27
+ zephyr,resolution = <16>;
28
+ zephyr,input-positive = <MCUX_LPADC_CH0A>;
29
+ };
30
+ };
You can’t perform that action at this time.
0 commit comments