14 lines
200 B
Bash
14 lines
200 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
#source .venv/bin/activate
|
||
|
|
||
|
# TODO init shell
|
||
|
#guix shell
|
||
|
|
||
|
env=${1:-main}
|
||
|
port=${2:-/dev/ttyUSB0}
|
||
|
|
||
|
#pio run --target=upload -e "$env" --upload-port "$port"
|
||
|
|
||
|
avrdude -p esp32s3 -c arduino
|