12 lines
213 B
Bash
12 lines
213 B
Bash
|
|
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
export IDF_TOOLS_PATH=${PWD}/lib/idf-tools
|
|
export IDF_PATH=${PWD}/lib/esp-idf
|
|
|
|
. ${IDF_PATH}/export.sh
|
|
|
|
idf.py -b 115200 monitor
|
|
|
|
# idf.py autodetects port but use -p <port> to specify |