mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-01 18:29:56 +00:00
d7d13d637c
@mc-hamster seems to work pretty good for me, so I'll send a PR to you for the dev-http branch. I'll push out an android alpha build later today (once the build is complete). Once this new device load is out in the field _future_ device builds will support updating spiffs from android. (i.e. device loads older than 1.1.9 must be updated to 1.1.9 or later before spiffs support is implemented on the device side - so some users might need to update twice before the new spiffs contents will appear on their device)
49 lines
1.2 KiB
Bash
Executable File
49 lines
1.2 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
# Usage info
|
|
show_help() {
|
|
cat << EOF
|
|
Usage: ${0##*/} [-h] [-p ESPTOOL_PORT] [-f FILENAME]
|
|
Flash image file to device, but first erasing and writing system information"
|
|
|
|
-h Display this help and exit
|
|
-p ESPTOOL_PORT Set the environment variable for ESPTOOL_PORT. If not set, ESPTOOL iterates all ports (Dangerrous).
|
|
-f FILENAME The .bin file to flash. Custom to your device type and region.
|
|
EOF
|
|
}
|
|
|
|
|
|
while getopts ":h:p:f:" opt; do
|
|
case "${opt}" in
|
|
h)
|
|
show_help
|
|
exit 0
|
|
;;
|
|
p) export ESPTOOL_PORT=${OPTARG}
|
|
;;
|
|
f) FILENAME=${OPTARG}
|
|
;;
|
|
*)
|
|
echo "Invalid flag."
|
|
show_help >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
done
|
|
shift "$((OPTIND-1))"
|
|
|
|
if [ -f "${FILENAME}" ]; then
|
|
echo "Trying to flash ${FILENAME}, but first erasing and writing system information"
|
|
esptool.py --baud 921600 erase_flash
|
|
esptool.py --baud 921600 write_flash 0x1000 system-info.bin
|
|
esptool.py --baud 921600 write_flash 0x00390000 spiffs-*.bin
|
|
esptool.py --baud 921600 write_flash 0x10000 ${FILENAME}
|
|
else
|
|
echo "Invalid file: ${FILENAME}"
|
|
show_help
|
|
fi
|
|
|
|
exit 0
|