mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-02 10:50:40 +00:00
10 lines
205 B
Bash
Executable File
10 lines
205 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
VERSION=`bin/buildinfo.py`
|
|
FILENAME=release/latest/bins/universal/firmware-tbeam-$VERSION.bin
|
|
|
|
echo Installing $FILENAME
|
|
esptool.py --baud 921600 write_flash 0x10000 $FILENAME
|