meshtastic/docs/software/other/esp32-arduino-build.md
2021-12-21 22:44:01 +11:00

2.4 KiB

id title sidebar_label
esp32-arduino-build esp32-arduino Build Instructions Building esp32-arduino

For ESP32 boards, we use our own custom version of arduino-esp32 core. You can find the version used in the platform_packages argument in platformio.ini in the Meshtastic-device repo. It is built using a modified esp32-arduino-lib-builder which pulls the correct repos for some modified libraries. This allows for some fixes we've made that haven't yet been merged in master.

Most developers should not care about this, because you'll automatically get our fixed libraries. However, if you would like to tweak the core options this documentation describes how to do it in Linux:

Install ESP32 Arduino Lib Builder:

sudo apt-get install git wget curl libssl-dev libncurses-dev flex bison gperf python python-pip python-setuptools python-serial python-click python-cryptography python-future python-pyparsing python-pyelftools cmake ninja-build ccache
sudo pip install --upgrade pip
git clone https://github.com/meshtastic/esp32-arduino-lib-builder
cd esp32-arduino-lib-builder

Install esp-idf (needed if you want to make menuconfig, build.sh will install it automatically if needed):

./tools/install-esp-idf.sh

Run menuconfig and change options as needed:

make IDF_PATH=$(pwd)/esp-idf menuconfig

Patch the Azure_IoT library:

cd components/arduino/libraries/AzureIoT
wget https://patch-diff.githubusercontent.com/raw/VSChina/ESP32_AzureIoT_Arduino/pull/15.patch 
patch -p1 < 15.patch
cd ../../../../

Build esp32-arduino:

./build.sh

Copy sdk files into the platformio framework:

  cp -ar out/tools/sdk/* ~/.platformio/packages/framework-arduinoespressif32/tools/sdk

Flash the new bootloader if needed:

esp-idf/components/esptool_py/esptool/esptool.py --chip esp32 --port your_port --baud 921600 --before default_reset --after hard_reset write_flash -z --flash_mode dout --flash_freq 40m --flash_size detect 0x1000 build/bootloader/bootloader.bin