1.3-dev-0

This commit is contained in:
2025-05-27 04:04:15 -06:00
parent 4bd8194592
commit de251e3b3b
7 changed files with 43 additions and 14 deletions
+53
View File
@@ -0,0 +1,53 @@
#!/bin/bash
set -e # fail on any error
echo -e "\nFully Rebuildan~\n"
bash fullclean
echo -e "\nSetting up project for $ESPTARGET\n"
idf.py --preview set-target $ESPTARGET
echo -e "\nErase flash? y/n"
read wipe
if [ "$wipe" == "y" ]; then
echo -e "\nExecuting erase-flash\n"
idf.py --preview erase-flash
echo -e "\nFlash wiped\n"
fi
echo -e "\nRun menuconfig y/n?\n"
read menuconfig
if [ "$menuconfig" == "y" ]; then
echo -e "\nExecuting menuconfig\n"
idf.py --preview menuconfig
echo -e "\nConfig Complete\n"
fi
echo -e "\nSave as Default Config? y/n?\n"
read defconfig
if [ "$defconfig" == "y" ]; then
echo -e "\nExecuting save-defconfig\n"
idf.py --preview save-defconfig
echo -e "\nDefault Config Saved\n"
fi
echo -e "\nBuild, Flash, and Monitor Now? y/n"
read flashmon
if [ "$flashmon" == "y" ]; then
echo -e "\nBuild, Flashing, and Monitoran~\n"
idf.py --preview flash
echo -e "\nFlashed... Short Delay Before Monitor\n"
sleep 1
idf.py --preview monitor
else
echo -e "\nBuild Now? y/n"
read build
if [ "$build" == "y" ]; then
echo -e "\nBuildan~\n"
idf.py --preview build
echo -e "\nBuild complete\n"
fi
fi
echo -e "\nAll done :3\n"