mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-01 18:29:56 +00:00
9 lines
122 B
Bash
9 lines
122 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
FILENAME=$1
|
||
|
|
||
|
echo "Trying to update $FILENAME"
|
||
|
esptool.py --baud 921600 writeflash 0x10000 $FILENAME
|