mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-02 18:59:56 +00:00
16 lines
225 B
Bash
Executable File
16 lines
225 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
TARG=tbeam
|
|
|
|
pio run -e $TARG
|
|
|
|
echo uploading to usb1
|
|
pio run --upload-port /dev/ttyUSB1 -t upload -e $TARG &
|
|
|
|
echo uploading to usb0
|
|
pio run --upload-port /dev/ttyUSB0 -t upload -e $TARG &
|
|
|
|
wait
|