1 Star 0 Fork 0

kevin_fxf/MySmartHome

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
flash-esp8266.sh 475 Bytes
一键复制 编辑 原始数据 按行查看 历史
kevin_fxf 提交于 2022-02-27 10:40 . no commit message
#!/bin/sh
# 参数1:要烧录的文件
file_in_host=$1
# 参数2:烧录到开发板上的文件名
file_in_board=$2
# 判断参数是否正确
if [ -z "$file_in_host" ] || [ -z "$file_in_board" ]; then
echo "Usage: $0 <file_in_host> <file_in_board>"
exit 1
fi
echo "烧录文件:"$file_in_host "到" $file_in_board
ampy -p /dev/ttyUSB0 -b 115200 put $file_in_host $file_in_board
if [ $? -eq 0 ]; then
echo "烧录成功"
else
echo "烧录失败"
fi
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/null_500_7265/my-smart-home.git
git@gitee.com:null_500_7265/my-smart-home.git
null_500_7265
my-smart-home
MySmartHome
master

搜索帮助