Currently we support ESP32 WROVER-Kit with Raspberry-Pi (3 Model B+, 4 Model B) for evaluation with Raspbian operating system.
We recommend full version Raspbian install on Raspberry-Pi to ensure easy driver compilation. Please make sure to use kernel version v4.19
and above. Prior kernel versions may work, but are not tested. Kernel headers are required for driver compilation. Please install them as:
$ sudo apt update
$ sudo apt-get install raspberrypi-kernel-headers
Verify that kernel headers are installed properly by running following command. Failure of this command indicates that kernel headers are not installed correctly. In such case, follow https://github.com/notro/rpi-source/wiki and run rpi-source to get current kernel headers. Alternatively upgrade/downgrade kernel and reinstall kernel headers.
$ ls /lib/modules/$(uname -r)/build
Python is required to run utility scripts. Please install it as:
$ sudo apt-get install python
To start with control path on Raspberry-Pi, protobuf
and utils
python modules are needed. User can install these modules by running following commands.
$ pip install utils
$ pip install protobuf
We have tested esp-hosted solution with python 2.7.
- Clone esp-hosted repository on Raspberry Pi.
$ git clone --recurse-submodules <url_of_esp_hosted_repository>
$ cd esp-hosted
$ git submodule update --init --recursive
- To test BT/BLE functionality on Raspberry-Pi
bluez
(official Linux Bluetooth protocol stack) is needed. check if Raspberry-Pi has installedbluez
or not. link that can help to install bluez. We have tested BT/BLE solution at bluez 5.43 and 5.45.
- Raspi-gpio utility is required to configure GPIO pins. Please install it as:
$ sudo apt-get install raspi-gpio
- make sure Raspberry-Pi should have
bluetoothctl
,bluetoothd
,hcitool
,hciconfig
utilities.
The control path between Raspberry-Pi and ESP32 is based on protobuf
. For that protocomm
layer from ESP-IDF is used. Make sure ESP-IDF on branch release/v4.0
. Run following command on ESP32 to make protocomm_priv.h
available for control path.
git mv components/protocomm/src/common/protocomm_priv.h components/protocomm/include/common/
ESP-Hosted solutions supports SDIO and SPI as transport for Wi-Fi and Bluetooth/BLE. Bluetooth/BLE connectivity over UART. Follow below setup guides according to transport.