1/*
2 * SPDX-License-Identifier: Apache-2.0
3 *
4 * Copyright (c) 2024, Vitrolife A/S
5 */
6
7/* spi1 sck conflicts with dac1 channel 3 */
8/delete-node/ &spi1;
9
10/ {
11	test_veaa_x_3: test_veaa_x_3 {
12		status = "okay";
13		compatible = "festo,veaa-x-3";
14		io-channels = <&adc1 3>;
15		dac = <&dac1>;
16		dac-channel-id = <2>;
17		dac-resolution = <12>;
18		pressure-range-type = "D2";
19	};
20
21};
22
23&adc1 {
24	#address-cells = <1>;
25	#size-cells = <0>;
26
27	channel@3 {
28		reg = <3>;
29		zephyr,gain = "ADC_GAIN_1";
30		zephyr,reference = "ADC_REF_INTERNAL";
31		zephyr,acquisition-time = <ADC_ACQ_TIME_DEFAULT>;
32		zephyr,resolution = <12>;
33	};
34
35};
36