mirror of
https://github.com/badgeteam/mch2022-template-app.git
synced 2024-11-14 12:41:11 +00:00
19 lines
237 B
Bash
Executable file
19 lines
237 B
Bash
Executable file
#!/usr/bin/bash
|
|
|
|
set -e
|
|
|
|
cd esp-idf
|
|
source ./export.sh
|
|
cd ../
|
|
|
|
cd efuse
|
|
|
|
if [ "$#" -eq 1 ]; then
|
|
idf.py flash -p $1
|
|
else
|
|
if [ "$#" -ne 0 ]; then
|
|
echo "Illegal number of parameters"
|
|
else
|
|
idf.py flash
|
|
fi
|
|
fi
|