当前位置:   article > 正文

【Ubuntu 20.04/22.04 LTS】最新 esp-matter SDK 软件编译环境搭建步骤

【Ubuntu 20.04/22.04 LTS】最新 esp-matter SDK 软件编译环境搭建步骤

环境要求

  • Ubuntu 20.04 或 Ubuntu22.04
  • 网络环境支持访问 Gihub

在安装 esp-matter SDK 软件编译环境之前,需要先安装相关工具链。

工具链安装准备:

sudo apt-get install git wget flex bison gperf python3 python3-pip python3-venv cmake ninja-build ccache libffi-dev libssl-dev dfu-util libusb-1.0-0
  • 1
sudo apt-get install git gcc g++ pkg-config libssl-dev libdbus-1-dev libglib2.0-dev libavahi-client-dev ninja-build python3-venv python3-dev python3-pip unzip libgirepository1.0-dev libcairo2-dev libreadline-dev	
  • 1

安装 ninja-build

sudo apt-get install ninja-build
  • 1

使用 pip 安装以下 python 软件包

pip install --update pip

python -m pip install pyyaml xlrd

python -m pip --version
  • 1
  • 2
  • 3
  • 4
  • 5

安装 Python3 的环境

sudo apt-get install python3.8-venv python3.8-dev
  • 1

安装 curses

sudo apt-get install libncurses5-dev
  • 1

esp-matter SDK 软件编译环境需要依赖 esp-idf SDK 软件编译环境。推荐基于 esp-idf SDK v5.1.2 版本来搭建 esp-matter SDK Master 版本的软件编译环境。

接下来的步骤同样适用于 macOS 10.15 及以上版本的环境。

首先,安装 esp-idf SDK v5.1.2 版本的软件编译环境:

  • 克隆 esp-idf v5.1.2 版本的 SDK
cd ~

mkdir esp

cd esp

git clone -b v5.1.2 https://github.com/espressif/esp-idf.git
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
cd esp-idf

git submodule update --init --recursive
  • 1
  • 2
  • 3
  • 设置 esp-idf SDK 环境变量并安装编译工具依赖
export IDF_PATH=$(pwd)

./install.sh 

. ./export.sh
  • 1
  • 2
  • 3
  • 4
  • 5

然后安装 esp-matter SDK Master 版本的软件编译环境:

cd ~/esp

git clone https://github.com/espressif/esp-matter.git
  • 1
  • 2
  • 3
cd esp-matter

git submodule update --init --recursive

git submodule update --init --recursive -f

git pull
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 设置 esp-matter SDK 环境变量并安装编译工具依赖
export ESP_MATTER_PATH=$(pwd)

./install.sh

cd ./connectedhomeip/connectedhomeip/scripts

source ./activate.sh

cd ../../..

. ./export.sh
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 对例程进行编译测试
cd examples/light

rm -rf build

idf.py fullclean

idf.py set-target esp32

idf.py build
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 例程编译测试结果

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/66563
推荐阅读
相关标签
  

闽ICP备14008679号