编译(需要进入当前目录)
idf.py build
创建工程
idf.py create-project --path C:\Users\ATK\Desktop\test_1 led
设置目标芯片(esp32s3)
idf.py set-target esp32s3
查看支持的芯片类型
idf.py --list-targets
监控项目(注意:请按“Ctrl + ]”快捷键退出监控器)
idf.py monitor
配置项目
idf.py menuconfig
下载代码(下载前必须先编译成功)
idf.py -p COM9 flash
清除编译文件
idf.py clean
idf.py fullclean