16 lines
197 B
Makefile
16 lines
197 B
Makefile
all:
|
|
echo "no default rule"
|
|
|
|
export:
|
|
source ~/esp/esp-idf/export.fish && fish
|
|
|
|
buildIdf:
|
|
idf.py build
|
|
|
|
flashMini:
|
|
idf.py flash -p /dev/ttyACM0
|
|
|
|
monitorMini:
|
|
idf.py monitor -p /dev/ttyACM0
|
|
|