esp8266linux开发环境配置
时间: 2023-10-06 16:06:10 浏览: 114
好的,下面是配置 esp8266linux 开发环境的步骤:
1. 安装必要的软件包:
```
sudo apt-get update
sudo apt-get install git wget make libncurses-dev flex bison gperf python python-serial
```
2. 下载 esp8266 toolchain:
```
mkdir ~/esp
cd ~/esp
wget https://dl.espressif.com/dl/xtensa-lx106-elf-gcc8_4_0-esp-2020r3-linux-amd64.tar.gz
tar -xzf xtensa-lx106-elf-gcc8_4_0-esp-2020r3-linux-amd64.tar.gz
```
3. 将 esp8266 toolchain 添加到 PATH 环境变量中:
```
echo 'export PATH="$PATH:$HOME/esp/xtensa-lx106-elf/bin"' >> ~/.bashrc
source ~/.bashrc
```
4. 下载 ESP8266_RTOS_SDK:
```
cd ~/esp
git clone --recursive https://github.com/espressif/ESP8266_RTOS_SDK.git
```
5. 安装 ESP-IDF 工具:
```
cd ~/esp/ESP8266_RTOS_SDK
git clone --recursive https://github.com/espressif/esp-idf.git
cd esp-idf
git checkout release/v4.2
./install.sh
```
6. 设置 ESP8266_RTOS_SDK 的环境变量:
```
echo 'export IDF_PATH=~/esp/ESP8266_RTOS_SDK/esp-idf' >> ~/.bashrc
source ~/.bashrc
```
到这里,你已经成功配置了 esp8266linux 开发环境。
阅读全文