1 Star 1 Fork 0

混子杨/Grbl_Esp32

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
command.sh 296 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/bash
function build_sketch()
{
local sketch=$1
# buld sketch with arudino ide
echo -e "\n Build $sketch \n"
arduino --verbose --verify $sketch
# get build result from arduino
local re=$?
# check result
if [ $re -ne 0 ]; then
echo "Failed to build $sketch"
return $re
fi
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hzstudio/Grbl_Esp32.git
git@gitee.com:hzstudio/Grbl_Esp32.git
hzstudio
Grbl_Esp32
Grbl_Esp32
master

搜索帮助