15 lines
170 B
Makefile
15 lines
170 B
Makefile
all:
|
|
echo "no default rule"
|
|
|
|
export:
|
|
source ~/esp/esp-idf/export.fish && fish
|
|
|
|
buildIdf:
|
|
idf.py build
|
|
|
|
flash:
|
|
idf.py flash -p /dev/ttyUSB0
|
|
|
|
monitor:
|
|
idf.py monitor
|