mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-30 03:35:21 +00:00
Add Inventek es-WIFI modules shield. This shield exposes es-WIFI driver using Arduino Uno R3 header by UART or SPI interfaces. It shows how user can create their own overlay and expose es-WIFI driver. The current Inventek's EVB doesn't have all pins necessary to control the module by Arduino hearder. This shows how to wire to get ISM43xx EVB working. Signed-off-by: Gerson Fernando Budke <gerson.budke@atl-electronics.com>
22 lines
362 B
Plaintext
22 lines
362 B
Plaintext
/*
|
|
* Copyright (c) 2020 ATL Electronics
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
&arduino_serial {
|
|
status = "okay";
|
|
|
|
wifi0: iwin {
|
|
status = "okay";
|
|
compatible = "inventek,eswifi-uart";
|
|
|
|
/* D7 */
|
|
wakeup-gpios = <&arduino_header 13 GPIO_ACTIVE_HIGH>;
|
|
/* D6 */
|
|
resetn-gpios = <&arduino_header 12 GPIO_ACTIVE_HIGH>;
|
|
|
|
label = "ESWIFI0";
|
|
};
|
|
};
|