76215339c2
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>
12 lines
371 B
Plaintext
12 lines
371 B
Plaintext
# Copyright (c) 2020 ATL Electronics
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config SHIELD_INVENTEK_ESWIFI
|
|
def_bool $(shields_list_contains,inventek_eswifi)
|
|
|
|
config SHIELD_INVENTEK_ESWIFI_ARDUINO_SPI
|
|
def_bool $(shields_list_contains,inventek_eswifi_arduino_spi)
|
|
|
|
config SHIELD_INVENTEK_ESWIFI_ARDUINO_UART
|
|
def_bool $(shields_list_contains,inventek_eswifi_arduino_uart)
|