micropython/drivers/esp-hosted
iabdalkader ecedd78302 drivers/esp-hosted: Add host driver for ESP-Hosted firmware.
This is a host driver for ESP32 chips running the esp-hosted firmware,
which turns ESP32s into a WLAN/BT co-processor.

Signed-off-by: iabdalkader <i.abdalkader@gmail.com>
2023-09-14 23:51:30 +10:00
..
README.md
esp_hosted.proto
esp_hosted_bthci.c drivers/esp-hosted: Add host driver for ESP-Hosted firmware. 2023-09-14 23:51:30 +10:00
esp_hosted_hal.c
esp_hosted_hal.h
esp_hosted_internal.h
esp_hosted_netif.c
esp_hosted_netif.h
esp_hosted_stack.h
esp_hosted_wifi.c
esp_hosted_wifi.h

README.md

esp-hosted driver

This is a MicroPython driver for the Espressif esp_hosted communications coprocessor, which allows creating a Wi-Fi and/or Bluetooth interface from MicroPython to a separate connected ESP32 compatible device running the esp_hosted firmware.

Building

Enable this driver by setting MICROPY_PY_NETWORK_ESP_HOSTED to 1 in your Makefile. If MICROPY_PY_BLUETOOTH is set then the Bluetooth host driver will also be built.

In addition to normal MicroPython build requirements, building this driver requires the protocol buffer compiler (protoc) to be installed.

On Debian/Ubuntu, it can be installed by running:

sudo apt-get install protobuf-compiler