This commit is contained in:
2024-11-13 07:17:48 -07:00
parent 5eb732b7be
commit 97edc33332
2 changed files with 5 additions and 4 deletions
+4 -3
View File
@@ -4,15 +4,16 @@ set -e # die on error in theory
echo -e "Clean, build, flash, monitor in steps, dying on error"
echo -e "\ncleaning up first\n"
idf.py clean
# idf.py clean
bash fullclean
echo -e "\nBuilding\n"
idf.py build
echo -e "\nFlashing to ${ESPPORT}\n"
echo -e "\nFlashing to $ESPPORT\n"
idf.py flash
echo -e "\nMonitor time on ${ESPPORT} for target ${ESPTARGET} at ${ESPBAUD}\n"
echo -e "\nMonitor time on $ESPPORT for target $ESPTARGET at $ESPBAUD\n"
idf.py monitor
echo -e "\nAll done :3\n"