micropython/drivers/esp-hosted
iabdalkader 193460d18f drivers/esp-hosted: Rename Bluetooth HCI backend driver.
Rename `bthci` to `bthci_uart` for consistency with the CYW43 driver and to
distinguish it from HCI backends that use a different transport.

Signed-off-by: iabdalkader <i.abdalkader@gmail.com>
2025-04-22 12:30:18 +10:00
..
esp_hosted_bthci_uart.c drivers/esp-hosted: Rename Bluetooth HCI backend driver. 2025-04-22 12:30:18 +10:00
esp_hosted_hal.c all: Remove the "STATIC" macro and just use "static" instead. 2024-03-07 14:20:42 +11:00
esp_hosted_hal.h drivers/esp_hosted: Fix pin IRQ. 2023-10-02 14:47:31 +02:00
esp_hosted_internal.h drivers/esp_hosted: Fix pin IRQ. 2023-10-02 14:47:31 +02:00
esp_hosted_netif.c drivers/esp-hosted: Fix MTU size. 2023-10-02 14:47:31 +02:00
esp_hosted_netif.h drivers/esp-hosted: Add host driver for ESP-Hosted firmware. 2023-09-14 23:51:30 +10:00
esp_hosted_stack.h drivers/esp-hosted: Add host driver for ESP-Hosted firmware. 2023-09-14 23:51:30 +10:00
esp_hosted_wifi.c drivers/esp_hosted: Fix pin IRQ. 2023-10-02 14:47:31 +02:00
esp_hosted_wifi.h drivers/esp-hosted: Add host driver for ESP-Hosted firmware. 2023-09-14 23:51:30 +10:00
esp_hosted.proto drivers/esp-hosted: Add host driver for ESP-Hosted firmware. 2023-09-14 23:51:30 +10:00
README.md drivers/esp-hosted: Add host driver for ESP-Hosted firmware. 2023-09-14 23:51:30 +10:00

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