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 f5baaab commit ea8fc27Copy full SHA for ea8fc27
samples/net/wifi/boards/reel_board.conf
@@ -0,0 +1,7 @@
1
+CONFIG_GPIO=y
2
+CONFIG_SPI=y
3
+CONFIG_SPI_3=y
4
+
5
+CONFIG_WIFI_WINC1500=y
6
+CONFIG_WIFI_WINC1500_REGION_EUROPE=y
7
+CONFIG_WIFI_WINC1500_GPIO_SPI_CS=y
samples/net/wifi/reel_board.overlay
@@ -0,0 +1,25 @@
+/*
+ * Copyright (c) 2020 Phytec Messtechnik GmbH
+ *
+ * SPDX-License-Identifier: Apache-2.0
+ */
+&spi3 {
8
+ status = "ok";
9
+ cs-gpios = <&gpio1 3 0>;
10
+ sck-pin = <36>;
11
+ mosi-pin = <37>;
12
+ miso-pin = <38>;
13
14
+ winc1500@0 {
15
16
+ compatible = "atmel,winc1500";
17
+ reg = <0x0>;
18
+ label = "winc1500";
19
+ spi-max-frequency = <4000000>;
20
+ irq-gpios = <&gpio1 7 1>;
21
+ reset-gpios = <&gpio1 8 1>;
22
+ enable-gpios = <&gpio1 12 0>;
23
24
+ };
25
+};
0 commit comments