1/*
2 * Copyright (c) 2020 Kim Bøndergaard, <kim.bondergaard@prevas.dk>, Prevas A/S
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7&arduino_spi {
8	status = "okay";
9	cs-gpios = <&arduino_header 16 0>;			/* D10 */
10
11	winc1500_adafruit_winc1500: winc1500@0 {
12		status = "ok";
13		compatible = "atmel,winc1500";
14		reg = <0x0>;
15		spi-max-frequency = <4000000>;
16		irq-gpios = <&arduino_header 13 GPIO_ACTIVE_LOW>;	/* D7 */
17		reset-gpios = <&arduino_header 11 GPIO_ACTIVE_LOW>;	/* D5 */
18		enable-gpios = <&arduino_header 12 0>;			/* D6 */
19	};
20};
21