1/*
2 * SPDX-License-Identifier: Apache-2.0
3 *
4 * Copyright (c) 2022 TOKITA Hiroshi <tokita.hiroshi@fujitsu.com>
5 */
6
7/ {
8	zephyr,user {
9		io-channels = <&adc 0>;
10	};
11};
12
13&adc {
14	#address-cells = <1>;
15	#size-cells = <0>;
16
17	channel@0 {
18		reg = <0>;
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