Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion MicroPython_BUILD/build_func.sh
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,12 @@ executeCommand() {
echo "Flashing MicroPython firmware to ESP32..."
echo "========================================="
make ${J_OPTION} ${arg}${BUILD_COMPORT}${BUILD_BDRATE} 2>/dev/null

if [ "${MP_SHOW_PROGRESS}" == "yes" ]; then
make ${J_OPTION} ${arg}
else
make ${J_OPTION} ${arg} 2>/dev/null
fi

# ---------------------------------
elif [ "${arg}" == "erase" ]; then
echo "======================"
Expand Down