Matter实战系列-----2.Ubuntu Matter开发环境搭建

1. 首先需要安装git

apt-get update -y
apt-get upgrade -y
apt install git
git --version
git config --global user.name "linuxidc"
git config --global user.email "[email protected]"
git config --list

2.安装依赖环境

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

3.安装工具

sudo apt-get install net-tools openssh-server openssh-client

4.搞定网络环境下拉GitHub的代码,推荐用Clash for windows,需要修改Ubuntu里面的代理方式为手动如下:

Matter实战系列-----2.Ubuntu Matter开发环境搭建_第1张图片

 5.下拉matter的GitHub的代码

Matter实战系列-----2.Ubuntu Matter开发环境搭建_第2张图片

拉取matter的代码

git clone https://github.com/SiliconLabs/matter.git
cd matter

 切换分支,拉取子仓库代码

./scripts/checkout_submodules.py --shallow --recursive --platform efr32

git submodule update --init

 检测并完善编译环境

source scripts/activate.sh

Matter实战系列-----2.Ubuntu Matter开发环境搭建_第3张图片

 Matter实战系列-----2.Ubuntu Matter开发环境搭建_第4张图片

 编译chip-tool工具

scripts/examples/gn_build_example.sh examples/chip-tool out/debug/standalone

Matter实战系列-----2.Ubuntu Matter开发环境搭建_第5张图片

Matter实战系列-----2.Ubuntu Matter开发环境搭建_第6张图片

 拉取代码,编译OTBR程序

git clone https://github.com/SiliconLabs/gecko_sdk.git

Matter实战系列-----2.Ubuntu Matter开发环境搭建_第7张图片

cd gecko_sdk/util/third_party/ot-br-posix/third_party/openthread
ln -s ../../../openthread repo
cd repo
chmod +x script/*
sudo ./script/bootstrap

Matter实战系列-----2.Ubuntu Matter开发环境搭建_第8张图片

 修改网络端口名称和波特率

Matter实战系列-----2.Ubuntu Matter开发环境搭建_第9张图片

sudo vi /etc/default/otbr-agent

Matter实战系列-----2.Ubuntu Matter开发环境搭建_第10张图片

 到此为止,所有软件运行的环境已经搭建ok了

你可能感兴趣的:(Matter,Matter协议,EFR32,Ubuntu,22.04)