File tree Expand file tree Collapse file tree 1 file changed +43
-0
lines changed
boards/shields/esp_8266/boards Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Original file line number Diff line number Diff line change 1+ /*
2+ * Copyright (c) 2025 Nuvoton Technology Corporation.
3+ *
4+ * SPDX-License-Identifier: Apache-2.0
5+ */
6+
7+ &pinctrl {
8+ uart8_esp8266: uart8_esp8266 {
9+ group0 {
10+ pinmux = <PJ0MFP_UART8_TXD>,
11+ <PJ1MFP_UART8_RXD>,
12+ <PI15MFP_UART8_nRTS>,
13+ <PI14MFP_UART8_nCTS>;
14+ };
15+ };
16+ };
17+
18+ &uart8 {
19+ status = "okay";
20+ current-speed = <115200>;
21+ hw-flow-control;
22+
23+ pinctrl-0 = <&uart8_esp8266>;
24+ pinctrl-names = "default";
25+
26+ esp8266: esp8266 {
27+ compatible = "espressif,esp-at";
28+ reset-gpios = <&gpiod 2 GPIO_ACTIVE_LOW>;
29+ status = "okay";
30+ };
31+ };
32+
33+ &gpiod {
34+ status = "okay";
35+ };
36+
37+ &gpioi {
38+ status = "okay";
39+ };
40+
41+ &gpioj {
42+ status = "okay";
43+ };
You can’t perform that action at this time.
0 commit comments