deepin下安装ESP32的开发环境

deepin下安装ESP32的开发环境

本文章用于记录在deepin下安装ESP32的开发环境,前几日在CentOS7之下实现过,但CentOS7对于我这个Linux新手太不友好,于是重装deepin,体验非常好,故尝试在deepin 下安装ESP32开发环境。

步骤依据是乐鑫提供的官方文档:https://docs.espressif.com/projects/esp-idf/zh_CN/latest/get-started/linux-setup-scratch.html

1.编译 ESP-IDF 需要以下软件包

 
sudo apt-get install git wget flex bison gperf python python-pip python-setuptools python-serial python-click python-cryptography python-future python-pyparsing python-pyelftools cmake ninja-build ccache libffi-dev libssl-dev

 

2.从源代码编译工具链

sudo apt-get install gawk gperf grep gettext libncurses-dev python python-dev automake bison flex texinfo help2man libtool make

创建工作目录,并进入该目录:

mkdir -p ~/esp
cd ~/esp

下载并编译 crosstool-NG :

git clone https://github.com/espressif/crosstool-NG.git
cd crosstool-NG
git checkout esp-2019r2
git submodule update --init
./bootstrap && ./configure --enable-local && make

最后一步,编译时,可能会报错:configure: error: Required tool not found: GNU libtool >= 2.4

安装libtool 后解决

sudo apt-get install libtool

如果安装了还出现这种问题接着安装

sudo apt-get install libtool-bin 

编译工具链:

./ct-ng xtensa-esp32-elf
./ct-ng build
chmod -R u+w builds/xtensa-esp32-elf

 build时间很长,会下载文件,若下载文件失败,可取消并重新build,也可查看系统状态,确定正在下载

下载到一半,报错,如下:

[ERROR] error: RPC failed; curl 56 GnuTLS recv error (-9): A TLS packet with unexpected length was received.

百度得:

这是由于git默认缓存大小不足导致的,使用下面的命令增加缓存大小

$ git config --global http.postBuffer 2000000000

在deepin中,build花了很长时间,大概1个多小时,而在Centos7中,大概只花了半小时搞定,不知道是因为网速原因还是其他,git下载时有时候龟速,可尝试取消后重新下载,速度有时可变快

 

编译得到的工具链会被保存到 ~/esp/crosstool-NG/builds/xtensa-esp32-elf

将工具链添加到 PATH:

export PATH="$HOME/esp/crosstool-NG/builds/xtensa-esp32-elf/bin:$PATH"

改命令行其实只是暂时将工具链添加到了PATH,退出终端后,将失效,永久方法:

通过修改.bashrc文件:

vim ~/.bashrc 

最后一行添加:

export PATH="$HOME/esp/crosstool-NG/builds/xtensa-esp32-elf/bin:$PATH"

ESC,输入“:wq”保存退出,关闭终端,再次打来生效,可通过 echo $PATH验证:

blue@blue-PC:~$ echo $PATH
/home/blue/esp
/crosstool-NG/builds/xtensa-esp32-elf/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games:/sbin:/usr/sbin

3.获取ESP-IDF

可通过git获取:

cd ~/esp
git clone --recursive https://github.com/espressif/esp-idf.git

也可通过复制现有的ESP-IDF文件夹到~/esp下,为节约时间,我选择复制现有的esp-idf-v3.3

4.设置工具

cd ~/esp/esp-idf
./install.sh

本步骤中介绍的脚本将 ESP-IDF 所需的编译工具默认安装在用户根文件夹中,即 Linux 系统中的 $HOME/.espressif

5.设置环境变量

此时,您刚刚安装的工具尚未添加至 PATH 环境变量,无法通过“命令窗口”使用这些工具。因此,必须设置一些环境变量,这可以通过 ESP-IDF 提供的另一个脚本完成。

. $HOME/esp/esp-idf/export.sh

6.开始创建工程

cd ~/esp
cp -r $IDF_PATH/examples/get-started/hello_world .

编译后报错:

esptool.py v2.8

The following Python requirements are not satisfied:
cryptography>=2.1.4
Please refer to the Get Started section of the ESP-IDF Programming Guide for setting up the required packages.
Alternatively, you can run "/usr/bin/python -m pip install --user -r /home/blue/esp/esp-idf/requirements.txt" for resolving the issue.
/home/blue/esp/esp-idf/make/project.mk:501: recipe for target 'check_python_dependencies' failed
make: *** [check_python_dependencies] Error 1

根据提示,为python环境错误,运行推荐修复方法:

/usr/bin/python -m pip install --user -r /home/blue/esp/esp-idf/requirements.txt

再次make

LD build/hello-world.elf
esptool.py v2.8
To flash all build output, run 'make flash' or:
python /home/blue/esp/esp-idf/components/esptool_py/esptool/esptool.py --chip esp32 --port /dev/ttyUSB1 --baud 115200 --before default_reset --after hard_reset write_flash -z --flash_mode dio --flash_freq 40m --flash_size detect 0x1000 /home/blue/esp/hello_world/build/bootloader/bootloader.bin 0x10000 /home/blue/esp/hello_world/build/hello-world.bin 0x8000 /home/blue/esp/hello_world/build/partitions_singleapp.bin

简直不要太快,全部编译的情况下,只要了大概57s(ps使用的电脑比较老旧的情况下),比在windows下要好太多!!!

7.感受

  • 第一次使用deepin,对于Linux小白来说,这个界面非常友好,跟Windows差不多,关键是已经自带了wps、网易云音乐、微信、TIM等必要的软件,界面也非常好看。但也许就是界面的原因,有时会出现卡顿的情况,个人感觉CentOS7运行比deepin要稳定、流畅,不知道后面使用运行会如何。
  • 对比了一下同一台笔记本在windows下和linux下全部编译hello_world所花的时间 :

    t        make  make -j8

    windows      /    8''7'

    linux        57'      37' 

   之前就听说在mac和linux下编译esp32会快很多,没想到真的快这么多,不要太夸张!

posted on 2020-03-07 14:30  会吐泡泡的蓝苹果  阅读(745)  评论(0编辑  收藏  举报