ESP32S3 ADF开发环境安装

参照一下连接基本ok,但是要有网络与python3 PIP3,最新的ubuntut20.04系统安装OK,ubuntu18的系统有python2.7,卸载也很麻烦。链接如下https://docs.espressif.com/projects/esp-adf/zh_CN/latest/get-started/index.html#update-esp-adf
Step 1. Set up ESP-IDF,安装IDF这里描述过于简单,要到下载过来的IDF的路径 ./install.sh,这时候会提示安装python3与pip3,用ubuntu20.04
Step 2. Get ESP-ADF
cd ~/esp
git clone --recursive https://github.com/espressif/esp-adf.git
Step 3. Set up Path to ESP-ADF
export ADF_PATH=~/esp/esp-adf
Step 4. Set up the environment variables
. H O M E / e s p / e s p − i d f / e x p o r t . s h 注 意 . 与 HOME/esp/esp-idf/export.sh 注意.与 HOME/esp/espidf/export.sh.之间有个空格
Step 5. Start a Project
cd ~/esp
cp -r $ADF_PATH/examples/get-started/play_mp3_control .
Step 6. Connect Your Device
Step 7. Configure
cd ~/esp/play_mp3_control
idf.py menuconfig
Step 8. Build the Project
idf.py build
Step 9. Flash onto the Device
idf.py -p PORT [-b BAUD] flash monitor
Step 10. Monitor
script test.log ubuntu进入log保存模式,在路径下有一个test.log生成
然后idf.py flash monitor,按下复位键

你可能感兴趣的:(音视频)